{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/tcJeSC7D19Zt5mZV5tNW/Wglu4TWjTKnePjpRGrZR/Jr8mxitIc.js", "ssg:https://framerusercontent.com/modules/vOroFK6S7xwumcB7vmFo/95xnOixyPQsHdd1TE7DH/JRsmtx5JF.js", "ssg:https://framerusercontent.com/modules/3I0NXxEv2soS8dn9bYIJ/SBoDTkAMJNUld0hi6UGQ/KLZ7B8iO5-0.js", "ssg:https://framerusercontent.com/modules/3I0NXxEv2soS8dn9bYIJ/SBoDTkAMJNUld0hi6UGQ/KLZ7B8iO5.js", "ssg:https://framerusercontent.com/modules/nMNAChobaKOQhDrJ5AIL/c2xO1eoikcKePDOfB8e2/VpapRgHsG.js", "ssg:https://framerusercontent.com/modules/4pQa3dLsFZynZS8rCpVv/lTALKBl5AGgvomGjWHyU/KLZ7B8iO5.js", "ssg:https://framerusercontent.com/modules/o5D5tYg0iKbdJ4zNlzq4/Y7MpdMf5abX8k6oBlkNB/qap46GLHU.js", "ssg:https://framerusercontent.com/modules/hcaHXoG4JkP1IfTOFHnG/VqW8wwS0cX9FYtdeBwXU/dyPL4LF8O.js", "ssg:https://framerusercontent.com/modules/kjEGUGi6cgvD3CmK0MYh/XXGNvmhn4Zy0hNsLemND/HhElyiX6_.js", "ssg:https://framerusercontent.com/modules/ljXC8Dk03hLVyxFe7xyK/JY27uSPEWIpyWHpBIhg0/xaeyqApXS.js", "ssg:https://framerusercontent.com/modules/yZkONKDxUJWWaZA8o6i9/8o5UXEPERIroq2auEV5R/WC3X1vL1O.js", "ssg:https://framerusercontent.com/modules/xuBeH0pvMvQuNqKSeLYu/m63vaRDZLA6iUqjkfm2I/AydBGsyGI.js", "ssg:https://framerusercontent.com/modules/sIiMiWk7VwZIEpNaZfy2/8ZnY845MOVNqaWv6mEKM/dN7QltAHw.js", "ssg:https://framerusercontent.com/modules/H3VHSdSmJSxrJ4OKEzch/HpG3oQO8hO8Nj6SKOJm8/augiA20Il.js", "ssg:https://framerusercontent.com/modules/uKkuvTPdRpyk3GsDokNe/UBPbVjcUGcNWrxGUs3fl/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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.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)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(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%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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||supportsWaapi){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,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./Jr8mxitIc-0.js\";const cycleOrder=[\"mPwRY2Y2M\",\"oti0Kr1WL\",\"cJwKjMQ26\",\"TT598KRVW\"];const serializationHash=\"framer-pkq3X\";const variantClassNames={cJwKjMQ26:\"framer-v-dszv18\",mPwRY2Y2M:\"framer-v-z8b1bv\",oti0Kr1WL:\"framer-v-1dw1g9m\",TT598KRVW:\"framer-v-8ki2mh\"};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 valuesByLocaleId={Ica5hUjRt:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={delay:.1,duration:.6,ease:[.94,.01,.56,1],type:\"tween\"};const transition2={delay:.1,duration:.6,ease:[.85,-.02,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"mPwRY2Y2M\",\"Variant 2\":\"oti0Kr1WL\",\"Variant 3\":\"cJwKjMQ26\",\"Variant 4\":\"TT598KRVW\"};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:\"mPwRY2Y2M\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mPwRY2Y2M\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"cJwKjMQ26\",\"TT598KRVW\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"oti0Kr1WL\",\"cJwKjMQ26\",\"TT598KRVW\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"TT598KRVW\")return false;return true;};const isDisplayed3=()=>{if([\"cJwKjMQ26\",\"TT598KRVW\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-z8b1bv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mPwRY2Y2M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cJwKjMQ26:{\"data-framer-name\":\"Variant 3\"},oti0Kr1WL:{\"data-framer-name\":\"Variant 2\"},TT598KRVW:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,pixelHeight:960,pixelWidth:1120,src:\"https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp 1120w\"},className:\"framer-7g9367\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"HaTiX6QyP\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},variants:{cJwKjMQ26:{opacity:0}},...addPropertyOverrides({cJwKjMQ26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*.4989604989604992-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*1/2)),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp 1120w\"}},TT598KRVW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*.4989604989604992-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*1/2)),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PvR9GUM4BxB2I8vv70BtclyUbM.webp 1120w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,pixelHeight:960,pixelWidth:1120,src:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp 1120w\"},className:\"framer-19fgu6p\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"iKmTC_TQk\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},variants:{oti0Kr1WL:{opacity:0},TT598KRVW:{opacity:0}},...addPropertyOverrides({cJwKjMQ26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*.4989604989604992-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*1/2)),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp 1120w\"}},oti0Kr1WL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*.4989604989604992-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*1/2)),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp 1120w\"}},TT598KRVW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*.4989604989604992-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)*1/2)),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/U71WUipXnsTjozi5RtX0X7tUDU.webp 1120w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/DmA7kSYgbZVlDiieCh6NbKQjD5w.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DmA7kSYgbZVlDiieCh6NbKQjD5w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/DmA7kSYgbZVlDiieCh6NbKQjD5w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/DmA7kSYgbZVlDiieCh6NbKQjD5w.webp 1120w\"},className:\"framer-317vcb\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"FTYRacCxo\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{oti0Kr1WL:{opacity:1}}}),isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721,intrinsicWidth:840,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||481)-0-0)/1)*1+0))/2+0+0)),pixelHeight:960,pixelWidth:1120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/n1PwvK1j3fUwv5Wsn2gR7PBIA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/n1PwvK1j3fUwv5Wsn2gR7PBIA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/n1PwvK1j3fUwv5Wsn2gR7PBIA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/n1PwvK1j3fUwv5Wsn2gR7PBIA.webp 1120w\"},className:\"framer-1be85w1\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"u1tupJ6VC\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},variants:{oti0Kr1WL:{opacity:0}}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pkq3X.framer-aajdnd, .framer-pkq3X .framer-aajdnd { display: block; }\",\".framer-pkq3X.framer-z8b1bv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 481px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 560px; }\",\".framer-pkq3X .framer-7g9367 { flex: none; height: 200px; left: calc(50.00000000000002% - 200px / 2); overflow: visible; position: absolute; top: calc(49.896049896049924% - 200px / 2); width: 200px; }\",\".framer-pkq3X .framer-19fgu6p { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(49.896049896049924% - 100% / 2); width: 100%; }\",\".framer-pkq3X .framer-317vcb { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-pkq3X .framer-1be85w1 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pkq3X.framer-z8b1bv { gap: 0px; } .framer-pkq3X.framer-z8b1bv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pkq3X.framer-z8b1bv > :first-child { margin-top: 0px; } .framer-pkq3X.framer-z8b1bv > :last-child { margin-bottom: 0px; } }\",\".framer-pkq3X.framer-v-1dw1g9m .framer-19fgu6p, .framer-pkq3X.framer-v-dszv18 .framer-19fgu6p, .framer-pkq3X.framer-v-8ki2mh .framer-19fgu6p { order: 2; }\",\".framer-pkq3X.framer-v-1dw1g9m .framer-317vcb { order: 3; }\",\".framer-pkq3X.framer-v-1dw1g9m .framer-1be85w1, .framer-pkq3X.framer-v-dszv18 .framer-317vcb { order: 1; }\",\".framer-pkq3X.framer-v-dszv18 .framer-7g9367, .framer-pkq3X.framer-v-8ki2mh .framer-7g9367 { height: 100%; left: calc(50.00000000000002% - 100% / 2); order: 3; top: calc(49.896049896049924% - 100% / 2); width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 481\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oti0Kr1WL\":{\"layout\":[\"fixed\",\"fixed\"]},\"cJwKjMQ26\":{\"layout\":[\"fixed\",\"fixed\"]},\"TT598KRVW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJr8mxitIc=withCSS(Component,css,\"framer-pkq3X\");export default FramerJr8mxitIc;FramerJr8mxitIc.displayName=\"Gallery / Process\";FramerJr8mxitIc.defaultProps={height:481,width:560};addPropertyControls(FramerJr8mxitIc,{variant:{options:[\"mPwRY2Y2M\",\"oti0Kr1WL\",\"cJwKjMQ26\",\"TT598KRVW\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJr8mxitIc,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJr8mxitIc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oti0Kr1WL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cJwKjMQ26\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TT598KRVW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"560\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"481\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Jr8mxitIc.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kClBBK3x8Z7tLE4IKejW/5LOBQaQne1G4YpAdysWz/IYNffVmHF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2ksltisnmvqCJViv2HZe/UN4CAAhExlJpt0to40zL/kf7bwnSqK.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"WNg8gfcX6\",\"RJf0Sn4JN\"];const serializationHash=\"framer-eyerd\";const variantClassNames={RJf0Sn4JN:\"framer-v-djwuvr\",WNg8gfcX6:\"framer-v-6lah21\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"WNg8gfcX6\",Open:\"RJf0Sn4JN\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"WNg8gfcX6\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WNg8gfcX6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapm1rxn2=activeVariantCallback(async(...args)=>{setVariant(\"RJf0Sn4JN\");});const onTap185qjak=activeVariantCallback(async(...args)=>{setVariant(\"WNg8gfcX6\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"RJf0Sn4JN\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6lah21\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"WNg8gfcX6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({RJf0Sn4JN:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u1l866\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aiP5BE4tc\",onTap:onTapm1rxn2,...addPropertyOverrides({RJf0Sn4JN:{onTap:onTap185qjak}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-kxo70j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EyIVIuzr8\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-150f0ht-container\",layoutDependency:layoutDependency,layoutId:\"wlJumPcPx-container\",style:{rotate:180},variants:{RJf0Sn4JN:{rotate:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(17, 16, 17, 0.6)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretUp\",id:\"wlJumPcPx\",layoutId:\"wlJumPcPx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-encxys\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"UxEN15mIK\",style:{opacity:0},variants:{RJf0Sn4JN:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1fx8dt1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZvrCjc86Q\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",opacity:.8},text:T8rQFvSBR,variants:{RJf0Sn4JN:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eyerd.framer-tty43a, .framer-eyerd .framer-tty43a { display: block; }\",\".framer-eyerd.framer-6lah21 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-eyerd .framer-1u1l866 { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-eyerd .framer-kxo70j { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eyerd .framer-150f0ht-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-eyerd .framer-encxys { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 0px; position: relative; width: 100%; }\",\".framer-eyerd .framer-1fx8dt1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eyerd.framer-6lah21, .framer-eyerd .framer-1u1l866, .framer-eyerd .framer-encxys { gap: 0px; } .framer-eyerd.framer-6lah21 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eyerd.framer-6lah21 > :first-child, .framer-eyerd .framer-encxys > :first-child { margin-top: 0px; } .framer-eyerd.framer-6lah21 > :last-child, .framer-eyerd .framer-encxys > :last-child { margin-bottom: 0px; } .framer-eyerd .framer-1u1l866 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-eyerd .framer-1u1l866 > :first-child { margin-left: 0px; } .framer-eyerd .framer-1u1l866 > :last-child { margin-right: 0px; } .framer-eyerd .framer-encxys > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 130\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RJf0Sn4JN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJRsmtx5JF=withCSS(Component,css,\"framer-eyerd\");export default FramerJRsmtx5JF;FramerJRsmtx5JF.displayName=\"Accordion / FAQ\";FramerJRsmtx5JF.defaultProps={height:130,width:400};addPropertyControls(FramerJRsmtx5JF,{variant:{options:[\"WNg8gfcX6\",\"RJf0Sn4JN\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerJRsmtx5JF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJRsmtx5JF\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RJf0Sn4JN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"130\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JRsmtx5JF.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"About Versare\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Landing Pages and Institutional Websites\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Blogs and E-commerce\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Applications\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Systems\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Blogs and E-commerce\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Applications\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Systems\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"We create impactful pages that highlight your brand and connect with your audience clearly and professionally.\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"We develop e-commerce platforms that maximize your sales with a flawless shopping experience.\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"We design and develop intuitive and functional applications to take your business to the mobile world.\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"We create systems (SaaS) and interactive dashboards that transform data into insights, optimizing your decision-making.\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"We develop e-commerce platforms that maximize your sales with a flawless shopping experience.\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"We design and develop intuitive and functional applications to take your business to the mobile world.\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"We create systems (SaaS) and interactive dashboards that transform data into insights, optimizing your decision-making.\"})});export const v15=\"Contact via email\";export const v16=\"Blogs and E-commerce\";export const v17=\"Systems\";\nexport const __FramerMetadata__ = {\"exports\":{\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport*as localizedValues from\"./KLZ7B8iO5-0.js\";const valuesByLocaleId={Ica5hUjRt:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2ksltisnmvqCJViv2HZe/UN4CAAhExlJpt0to40zL/kf7bwnSqK.js\";const enabledGestures={C6hDQabOk:{hover:true}};const cycleOrder=[\"C6hDQabOk\",\"HZUYbVXNo\"];const serializationHash=\"framer-YsIaZ\";const variantClassNames={C6hDQabOk:\"framer-v-28iskt\",HZUYbVXNo:\"framer-v-11pplvf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"HZUYbVXNo\",Default:\"C6hDQabOk\"};const getProps=({height,id,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,TRirHMjNT:tap!==null&&tap!==void 0?tap:props.TRirHMjNT,Tt3O3y68S:(_ref=title!==null&&title!==void 0?title:props.Tt3O3y68S)!==null&&_ref!==void 0?_ref:\"UX Research\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"C6hDQabOk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Tt3O3y68S,TRirHMjNT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C6hDQabOk\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcmm6jw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(TRirHMjNT){const res=await TRirHMjNT(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-28iskt\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"C6hDQabOk\",onTap:onTapcmm6jw,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"C6hDQabOk-hover\":{\"data-framer-name\":undefined},HZUYbVXNo:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"UX Research\"})}),className:\"framer-17t5f8z\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"npGSN_S_a\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},text:Tt3O3y68S,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ao91bz\",layoutDependency:layoutDependency,layoutId:\"G173Rh1kL\",style:{backgroundColor:\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:.12},variants:{\"C6hDQabOk-hover\":{opacity:.24},HZUYbVXNo:{opacity:1}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YsIaZ.framer-snxqa4, .framer-YsIaZ .framer-snxqa4 { display: block; }\",\".framer-YsIaZ.framer-28iskt { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YsIaZ .framer-17t5f8z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YsIaZ .framer-1ao91bz { align-self: stretch; flex: none; height: 2px; overflow: visible; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YsIaZ.framer-28iskt { gap: 0px; } .framer-YsIaZ.framer-28iskt > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-YsIaZ.framer-28iskt > :first-child { margin-top: 0px; } .framer-YsIaZ.framer-28iskt > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 106\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"HZUYbVXNo\":{\"layout\":[\"auto\",\"auto\"]},\"fLeho_8A2\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Tt3O3y68S\":\"title\",\"TRirHMjNT\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVpapRgHsG=withCSS(Component,css,\"framer-YsIaZ\");export default FramerVpapRgHsG;FramerVpapRgHsG.displayName=\"Base / Tab\";FramerVpapRgHsG.defaultProps={height:41,width:106};addPropertyControls(FramerVpapRgHsG,{variant:{options:[\"C6hDQabOk\",\"HZUYbVXNo\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},Tt3O3y68S:{defaultValue:\"UX Research\",displayTextArea:false,title:\"Title\",type:ControlType.String},TRirHMjNT:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerVpapRgHsG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVpapRgHsG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"106\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HZUYbVXNo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fLeho_8A2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"41\",\"framerVariables\":\"{\\\"Tt3O3y68S\\\":\\\"title\\\",\\\"TRirHMjNT\\\":\\\"tap\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VpapRgHsG.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qNGdqMrRZufOocmwlzkR/z19D5xOAlDXj73gywSIP/GmcTyI5Lm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2ksltisnmvqCJViv2HZe/UN4CAAhExlJpt0to40zL/kf7bwnSqK.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/3I0NXxEv2soS8dn9bYIJ/SBoDTkAMJNUld0hi6UGQ/KLZ7B8iO5.js\";import ButtonExternalLink from\"https://framerusercontent.com/modules/xtjqQwd50Su1VavmRSi4/9hvrv39AOUS1zbXqkRfp/JKCbhNhnh.js\";import BaseTab from\"https://framerusercontent.com/modules/nMNAChobaKOQhDrJ5AIL/c2xO1eoikcKePDOfB8e2/VpapRgHsG.js\";const RichTextWithFX=withFX(RichText);const ButtonExternalLinkFonts=getFonts(ButtonExternalLink);const MotionDivWithFX=withFX(motion.div);const BaseTabFonts=getFonts(BaseTab);const cycleOrder=[\"ieVWz_6sb\",\"Jd74yYum3\",\"JnH5un5za\",\"jM9_XgjzE\",\"QlWV0LkvQ\",\"lkD_1Ya4D\",\"WaxxB1Fy8\",\"YgnIJzlfM\",\"YcZ_zRID5\",\"IBm7y1KRF\",\"SAiZDs1OT\",\"I88RR3cbk\"];const serializationHash=\"framer-uBoTD\";const variantClassNames={I88RR3cbk:\"framer-v-6xg09q\",IBm7y1KRF:\"framer-v-1guz667\",ieVWz_6sb:\"framer-v-1qhx4q9\",Jd74yYum3:\"framer-v-1ow6xeh\",jM9_XgjzE:\"framer-v-1v2rmpa\",JnH5un5za:\"framer-v-1ogczm0\",lkD_1Ya4D:\"framer-v-1v7p8ez\",QlWV0LkvQ:\"framer-v-d9bc1\",SAiZDs1OT:\"framer-v-44f3py\",WaxxB1Fy8:\"framer-v-1vri8k2\",YcZ_zRID5:\"framer-v-zrizoy\",YgnIJzlfM:\"framer-v-8tx9n0\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Apps / Desktop\":\"JnH5un5za\",\"Apps / Mobile\":\"SAiZDs1OT\",\"Apps / Tablet\":\"WaxxB1Fy8\",\"E-commerce / Desktop\":\"Jd74yYum3\",\"E-commerce / Mobile\":\"IBm7y1KRF\",\"E-commerce / Tablet\":\"lkD_1Ya4D\",\"Product Design / Desktop\":\"ieVWz_6sb\",\"Product Design / Mobile\":\"YcZ_zRID5\",\"Product Design / Tablet\":\"QlWV0LkvQ\",\"Sistemas / Desktop\":\"jM9_XgjzE\",\"Sistemas / Mobile\":\"I88RR3cbk\",\"Sistemas / Tablet\":\"YgnIJzlfM\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,EFarrc8Nu:(_ref=padding!==null&&padding!==void 0?padding:props.EFarrc8Nu)!==null&&_ref!==void 0?_ref:\"0px 40px 0px 40px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ieVWz_6sb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EFarrc8Nu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ieVWz_6sb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const TRirHMjNTf7c0o8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ieVWz_6sb\"),100);});const TRirHMjNT1uh9rd3=activeVariantCallback(async(...args)=>{setVariant(\"QlWV0LkvQ\");});const TRirHMjNTinvg43=activeVariantCallback(async(...args)=>{setVariant(\"YcZ_zRID5\");});const TRirHMjNT1euq6sf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Jd74yYum3\"),100);});const TRirHMjNTw1uc3k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lkD_1Ya4D\"),100);});const TRirHMjNTsq4vf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IBm7y1KRF\"),100);});const TRirHMjNT12ft2oo=activeVariantCallback(async(...args)=>{setVariant(\"JnH5un5za\");});const TRirHMjNT1o4foro=activeVariantCallback(async(...args)=>{setVariant(\"WaxxB1Fy8\");});const TRirHMjNT7tsx1g=activeVariantCallback(async(...args)=>{setVariant(\"SAiZDs1OT\");});const TRirHMjNT64e8nh=activeVariantCallback(async(...args)=>{setVariant(\"jM9_XgjzE\");});const TRirHMjNT1d6by6y=activeVariantCallback(async(...args)=>{setVariant(\"YgnIJzlfM\");});const TRirHMjNTcqsua4=activeVariantCallback(async(...args)=>{setVariant(\"I88RR3cbk\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"QlWV0LkvQ\",\"lkD_1Ya4D\",\"WaxxB1Fy8\",\"YgnIJzlfM\",\"YcZ_zRID5\",\"IBm7y1KRF\",\"SAiZDs1OT\",\"I88RR3cbk\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qhx4q9\",className,classNames),\"data-framer-name\":\"Product Design / Desktop\",layoutDependency:layoutDependency,layoutId:\"ieVWz_6sb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1lwmfvv\":numberToPixelString(EFarrc8Nu),...style},...addPropertyOverrides({I88RR3cbk:{\"data-framer-name\":\"Sistemas / Mobile\"},IBm7y1KRF:{\"data-framer-name\":\"E-commerce / Mobile\"},Jd74yYum3:{\"data-framer-name\":\"E-commerce / Desktop\"},jM9_XgjzE:{\"data-framer-name\":\"Sistemas / Desktop\"},JnH5un5za:{\"data-framer-name\":\"Apps / Desktop\"},lkD_1Ya4D:{\"data-framer-name\":\"E-commerce / Tablet\"},QlWV0LkvQ:{\"data-framer-name\":\"Product Design / Tablet\"},SAiZDs1OT:{\"data-framer-name\":\"Apps / Mobile\"},WaxxB1Fy8:{\"data-framer-name\":\"Apps / Tablet\"},YcZ_zRID5:{\"data-framer-name\":\"Product Design / Mobile\"},YgnIJzlfM:{\"data-framer-name\":\"Sistemas / Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x6eunv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ijR67YNMC\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17uhli8\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"umCogj8xp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cnd2dw\",\"data-border\":true,\"data-framer-name\":\"category\",layoutDependency:layoutDependency,layoutId:\"q74JzynAJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/aTOMP92LnUucpr0Hx13oMVWmEc.svg\"},className:\"framer-113s2mi\",layoutDependency:layoutDependency,layoutId:\"M9mzGouTZ\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Sobre a Versare\"})}),className:\"framer-1cqv0o6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ePEUUnyDA\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"16px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Landing Pages e Sites Institucionais\"})}),className:\"framer-1gke9oz\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cJd07k9Y3\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I88RR3cbk:{children:(_getLocalizedValue2=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Sistemas\"})})},IBm7y1KRF:{children:(_getLocalizedValue3=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Blogs e E-commerces\"})})},Jd74yYum3:{children:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Blogs e E-commerces\"})})},jM9_XgjzE:{children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Sistemas\"})})},JnH5un5za:{children:(_getLocalizedValue6=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Aplicativos\"})})},lkD_1Ya4D:{children:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Blogs e E-commerces\"})})},SAiZDs1OT:{children:(_getLocalizedValue8=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Aplicativos\"})})},WaxxB1Fy8:{children:(_getLocalizedValue9=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Aplicativos\"})})},YgnIJzlfM:{children:(_getLocalizedValue10=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1br9qb9\",\"data-styles-preset\":\"GmcTyI5Lm\",children:\"Sistemas\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.8,children:(_getLocalizedValue11=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Criamos p\\xe1ginas impactantes que destacam sua marca e conectam seu p\\xfablico de forma clara e profissional.\"})}),className:\"framer-mzjsro\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rIxM3nz1Z\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",opacity:.8,transformPerspective:1200},variants:{I88RR3cbk:{\"--extracted-r6o4lv\":\"var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83))\"},IBm7y1KRF:{\"--extracted-r6o4lv\":\"var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83))\"},lkD_1Ya4D:{\"--extracted-r6o4lv\":\"var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83))\"},SAiZDs1OT:{\"--extracted-r6o4lv\":\"var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83))\"},WaxxB1Fy8:{\"--extracted-r6o4lv\":\"var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83))\"},YgnIJzlfM:{\"--extracted-r6o4lv\":\"var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I88RR3cbk:{children:(_getLocalizedValue12=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"Criamos sistemas (SaaS) e dashboards interativos que transformam dados em insights, otimizando sua tomada de decis\\xf5es.\"})})},IBm7y1KRF:{children:(_getLocalizedValue13=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"Desenvolvemos e-commerces que maximizam suas vendas com uma experi\\xeancia de compra impec\\xe1vel.\"})})},Jd74yYum3:{children:(_getLocalizedValue14=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Desenvolvemos e-commerces que maximizam suas vendas com uma experi\\xeancia de compra impec\\xe1vel.\"})})},jM9_XgjzE:{children:(_getLocalizedValue15=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Criamos sistemas (SaaS) e dashboards interativos que transformam dados em insights, otimizando sua tomada de decis\\xf5es.\"})})},JnH5un5za:{children:(_getLocalizedValue16=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Projetamos e desenvolvemos aplicativos intuitivos e funcionais para levar sua empresa para o mundo mobile.\"})})},lkD_1Ya4D:{children:(_getLocalizedValue17=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"Desenvolvemos e-commerces que maximizam suas vendas com uma experi\\xeancia de compra impec\\xe1vel.\"})})},SAiZDs1OT:{children:(_getLocalizedValue18=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"Projetamos e desenvolvemos aplicativos intuitivos e funcionais para levar sua empresa para o mundo mobile.\"})})},WaxxB1Fy8:{children:(_getLocalizedValue19=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"Projetamos e desenvolvemos aplicativos intuitivos e funcionais para levar sua empresa para o mundo mobile.\"})})},YgnIJzlfM:{children:(_getLocalizedValue20=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5172ebb2-b3b2-4418-b376-3e0827a50005, rgb(72, 70, 83)))\"},children:\"Criamos sistemas (SaaS) e dashboards interativos que transformam dados em insights, otimizando sua tomada de decis\\xf5es.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vg3wew-container\",layoutDependency:layoutDependency,layoutId:\"n2LJCj6am-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonExternalLink,{height:\"100%\",hF4OstQAV:false,id:\"n2LJCj6am\",layoutId:\"n2LJCj6am\",n3ojvpVI6:\"mailto:ola@versare.design\",ofLqZhEO8:(_getLocalizedValue21=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"Entrar em contato por email\",PPM8eZNfR:\"var(--token-29adb988-2fe2-49bb-80da-84bc683ba32b, rgb(26, 1, 81))\",variant:\"ooDs0cGDm\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-miiogj\",layoutDependency:layoutDependency,layoutId:\"SXxnoaw0l\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q3jh26\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"mLKaXe9Ce\",style:{borderBottomLeftRadius:64,borderBottomRightRadius:64,borderTopLeftRadius:64,borderTopRightRadius:64},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1idtnev\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"iFllcn1j6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tc9j2r\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"uxLOdSu0g\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7fb5n8\",\"data-framer-name\":\"Image\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"h49CPeNvP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1160 1061\"><g id=\"ss8831927727_1\"><path d=\"M 172.251 1061 C 77.119 1061 0 1061 0 1061 L 0 0 C 0 0 77.119 0 172.251 0 L 987.749 0 C 1082.881 0 1160 0 1160 0 L 1160 1061 C 1160 1061 1082.881 1061 987.749 1061 Z\" fill=\"rgb(227, 227, 227)\"></path><g><defs><linearGradient id=\"idss8831927727_3g-1805607363\" x1=\"0\" x2=\"1\" y1=\"0.9929785811171905\" y2=\"0.007021418882809494\"><stop offset=\"0\" stop-color=\"rgb(173, 173, 173)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(184, 184, 184, 0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 1375.329 198.053 C 919.622 198.053 550.201 586.408 550.201 1065.465 L 1375.329 1065.465 Z\" fill=\"url(#idss8831927727_3g-1805607363)\"></path></g><g><defs><linearGradient id=\"idss8831927727_4g-2033240327\" x1=\"0\" x2=\"1\" y1=\"0.9929785811171905\" y2=\"0.007021418882809494\"><stop offset=\"0\" stop-color=\"rgb(184, 184, 184)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(191, 191, 191, 0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 1446.186 205.836 C 1042.975 262.833 732.065 625.979 732.065 1065.465 L 1557.194 1065.465 L 1557.194 315.038 C 1557.194 250.429 1507.098 197.225 1446.186 205.836 Z\" fill=\"url(#idss8831927727_4g-2033240327)\"></path></g><g><defs><linearGradient id=\"idss8831927727_5g957589298\" x1=\"0\" x2=\"1\" y1=\"0.9929785811171905\" y2=\"0.007021418882809494\"><stop offset=\"0\" stop-color=\"rgb(186, 186, 186)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(189, 189, 189, 0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 1169.63 195.224 C 713.925 195.224 344.501 583.578 344.501 1062.635 L 1169.63 1062.635 Z\" fill=\"url(#idss8831927727_5g957589298)\"></path></g><g><defs><linearGradient id=\"idss8831927727_6g-564136869\" x1=\"0\" x2=\"1\" y1=\"0.9929785811171905\" y2=\"0.007021418882809494\"><stop offset=\"0\" stop-color=\"rgb(189, 189, 189)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(194, 194, 194, 0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 991.996 195.224 C 536.291 195.224 166.868 583.578 166.868 1062.635 L 991.996 1062.635 Z\" fill=\"url(#idss8831927727_6g-564136869)\"></path></g></g></svg>',svgContentId:8831927727,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tfoxau\",\"data-framer-name\":\"Color\",layoutDependency:layoutDependency,layoutId:\"ILLG5aJ5y\",style:{backgroundColor:\"rgb(160, 137, 250)\"},variants:{Jd74yYum3:{backgroundColor:\"rgb(150, 159, 239)\"},jM9_XgjzE:{backgroundColor:\"rgb(225, 166, 227)\"},JnH5un5za:{backgroundColor:\"rgb(160, 235, 183)\"}}})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tvjt4e\",\"data-framer-name\":\"Tabs\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"kNewP0Q_B\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0,...addPropertyOverrides({I88RR3cbk:{y:undefined},IBm7y1KRF:{y:undefined},lkD_1Ya4D:{y:undefined},QlWV0LkvQ:{y:undefined},SAiZDs1OT:{y:undefined},WaxxB1Fy8:{y:undefined},YcZ_zRID5:{y:undefined},YgnIJzlfM:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nujzvh-container\",layoutDependency:layoutDependency,layoutId:\"wwc9FuCBv-container\",children:/*#__PURE__*/_jsx(BaseTab,{height:\"100%\",id:\"wwc9FuCBv\",layoutId:\"wwc9FuCBv\",Tt3O3y68S:\"Sites\",variant:\"HZUYbVXNo\",width:\"100%\",...addPropertyOverrides({I88RR3cbk:{TRirHMjNT:TRirHMjNTinvg43,variant:\"C6hDQabOk\"},IBm7y1KRF:{TRirHMjNT:TRirHMjNTinvg43,variant:\"C6hDQabOk\"},Jd74yYum3:{TRirHMjNT:TRirHMjNTf7c0o8,variant:\"C6hDQabOk\"},jM9_XgjzE:{TRirHMjNT:TRirHMjNTf7c0o8,variant:\"C6hDQabOk\"},JnH5un5za:{TRirHMjNT:TRirHMjNTf7c0o8,variant:\"C6hDQabOk\"},lkD_1Ya4D:{TRirHMjNT:TRirHMjNT1uh9rd3,variant:\"C6hDQabOk\"},SAiZDs1OT:{TRirHMjNT:TRirHMjNTinvg43,variant:\"C6hDQabOk\"},WaxxB1Fy8:{TRirHMjNT:TRirHMjNT1uh9rd3,variant:\"C6hDQabOk\"},YgnIJzlfM:{TRirHMjNT:TRirHMjNT1uh9rd3,variant:\"C6hDQabOk\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0,...addPropertyOverrides({I88RR3cbk:{y:undefined},IBm7y1KRF:{y:undefined},lkD_1Ya4D:{y:undefined},QlWV0LkvQ:{y:undefined},SAiZDs1OT:{y:undefined},WaxxB1Fy8:{y:undefined},YcZ_zRID5:{y:undefined},YgnIJzlfM:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cuegab-container\",layoutDependency:layoutDependency,layoutId:\"N4mg6jVyI-container\",children:/*#__PURE__*/_jsx(BaseTab,{height:\"100%\",id:\"N4mg6jVyI\",layoutId:\"N4mg6jVyI\",TRirHMjNT:TRirHMjNT1euq6sf,Tt3O3y68S:(_getLocalizedValue22=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Blogs e E-commerce\",variant:\"C6hDQabOk\",width:\"100%\",...addPropertyOverrides({I88RR3cbk:{TRirHMjNT:TRirHMjNTsq4vf},IBm7y1KRF:{TRirHMjNT:undefined,variant:\"HZUYbVXNo\"},Jd74yYum3:{variant:\"HZUYbVXNo\"},lkD_1Ya4D:{TRirHMjNT:undefined,variant:\"HZUYbVXNo\"},QlWV0LkvQ:{TRirHMjNT:TRirHMjNTw1uc3k},SAiZDs1OT:{TRirHMjNT:TRirHMjNTsq4vf},WaxxB1Fy8:{TRirHMjNT:TRirHMjNTw1uc3k},YcZ_zRID5:{TRirHMjNT:TRirHMjNTsq4vf},YgnIJzlfM:{TRirHMjNT:TRirHMjNTw1uc3k}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0,...addPropertyOverrides({I88RR3cbk:{y:undefined},IBm7y1KRF:{y:undefined},lkD_1Ya4D:{y:undefined},QlWV0LkvQ:{y:undefined},SAiZDs1OT:{y:undefined},WaxxB1Fy8:{y:undefined},YcZ_zRID5:{y:undefined},YgnIJzlfM:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1taaje5-container\",layoutDependency:layoutDependency,layoutId:\"TC3NiB1Jn-container\",children:/*#__PURE__*/_jsx(BaseTab,{height:\"100%\",id:\"TC3NiB1Jn\",layoutId:\"TC3NiB1Jn\",TRirHMjNT:TRirHMjNT12ft2oo,Tt3O3y68S:\"Apps\",variant:\"C6hDQabOk\",width:\"100%\",...addPropertyOverrides({I88RR3cbk:{TRirHMjNT:TRirHMjNT7tsx1g},IBm7y1KRF:{TRirHMjNT:TRirHMjNT7tsx1g},JnH5un5za:{variant:\"HZUYbVXNo\"},lkD_1Ya4D:{TRirHMjNT:TRirHMjNT1o4foro},QlWV0LkvQ:{TRirHMjNT:TRirHMjNT1o4foro},SAiZDs1OT:{TRirHMjNT:undefined,variant:\"HZUYbVXNo\"},WaxxB1Fy8:{TRirHMjNT:undefined,variant:\"HZUYbVXNo\"},YcZ_zRID5:{TRirHMjNT:TRirHMjNT7tsx1g},YgnIJzlfM:{TRirHMjNT:TRirHMjNT1o4foro}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0,...addPropertyOverrides({I88RR3cbk:{y:undefined},IBm7y1KRF:{y:undefined},lkD_1Ya4D:{y:undefined},QlWV0LkvQ:{y:undefined},SAiZDs1OT:{y:undefined},WaxxB1Fy8:{y:undefined},YcZ_zRID5:{y:undefined},YgnIJzlfM:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mw5fwe-container\",layoutDependency:layoutDependency,layoutId:\"kkb88nDbo-container\",children:/*#__PURE__*/_jsx(BaseTab,{height:\"100%\",id:\"kkb88nDbo\",layoutId:\"kkb88nDbo\",TRirHMjNT:TRirHMjNT64e8nh,Tt3O3y68S:(_getLocalizedValue23=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Sistemas\",variant:\"C6hDQabOk\",width:\"100%\",...addPropertyOverrides({I88RR3cbk:{TRirHMjNT:undefined,variant:\"HZUYbVXNo\"},IBm7y1KRF:{TRirHMjNT:TRirHMjNTcqsua4},jM9_XgjzE:{variant:\"HZUYbVXNo\"},lkD_1Ya4D:{TRirHMjNT:TRirHMjNT1d6by6y},QlWV0LkvQ:{TRirHMjNT:TRirHMjNT1d6by6y},SAiZDs1OT:{TRirHMjNT:TRirHMjNTcqsua4},WaxxB1Fy8:{TRirHMjNT:TRirHMjNT1d6by6y},YcZ_zRID5:{TRirHMjNT:TRirHMjNTcqsua4},YgnIJzlfM:{TRirHMjNT:undefined,variant:\"HZUYbVXNo\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uBoTD.framer-f39d9f, .framer-uBoTD .framer-f39d9f { display: block; }\",\".framer-uBoTD.framer-1qhx4q9 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--1lwmfvv); position: relative; width: 1280px; }\",\".framer-uBoTD .framer-x6eunv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uBoTD .framer-17uhli8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uBoTD .framer-cnd2dw { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; user-select: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-uBoTD .framer-113s2mi { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-uBoTD .framer-1cqv0o6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uBoTD .framer-1gke9oz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 479px; word-break: break-word; word-wrap: break-word; }\",\".framer-uBoTD .framer-mzjsro { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 391px; word-break: break-word; word-wrap: break-word; }\",\".framer-uBoTD .framer-1vg3wew-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-uBoTD .framer-miiogj { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uBoTD .framer-1q3jh26 { flex: 1 0 0px; height: 200px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uBoTD .framer-1idtnev { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-uBoTD .framer-1tc9j2r { bottom: 0px; flex: none; left: 0px; mix-blend-mode: luminosity; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-uBoTD .framer-7fb5n8 { flex: none; height: 1061px; position: absolute; right: 0px; top: calc(49.86666666666669% - 1061px / 2); width: 1160px; }\",\".framer-uBoTD .framer-1tfoxau { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-uBoTD .framer-tvjt4e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 60px; top: 8px; width: min-content; z-index: 1; }\",\".framer-uBoTD .framer-nujzvh-container, .framer-uBoTD .framer-cuegab-container, .framer-uBoTD .framer-1taaje5-container, .framer-uBoTD .framer-mw5fwe-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-1qhx4q9, .framer-uBoTD .framer-x6eunv, .framer-uBoTD .framer-17uhli8, .framer-uBoTD .framer-cnd2dw, .framer-uBoTD .framer-miiogj, .framer-uBoTD .framer-tvjt4e { gap: 0px; } .framer-uBoTD.framer-1qhx4q9 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-uBoTD.framer-1qhx4q9 > :first-child, .framer-uBoTD .framer-17uhli8 > :first-child, .framer-uBoTD .framer-cnd2dw > :first-child, .framer-uBoTD .framer-miiogj > :first-child, .framer-uBoTD .framer-tvjt4e > :first-child { margin-left: 0px; } .framer-uBoTD.framer-1qhx4q9 > :last-child, .framer-uBoTD .framer-17uhli8 > :last-child, .framer-uBoTD .framer-cnd2dw > :last-child, .framer-uBoTD .framer-miiogj > :last-child, .framer-uBoTD .framer-tvjt4e > :last-child { margin-right: 0px; } .framer-uBoTD .framer-x6eunv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-uBoTD .framer-x6eunv > :first-child { margin-top: 0px; } .framer-uBoTD .framer-x6eunv > :last-child { margin-bottom: 0px; } .framer-uBoTD .framer-17uhli8 > *, .framer-uBoTD .framer-cnd2dw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-uBoTD .framer-miiogj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-uBoTD .framer-tvjt4e > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-uBoTD.framer-v-d9bc1.framer-1qhx4q9, .framer-uBoTD.framer-v-1v7p8ez.framer-1qhx4q9, .framer-uBoTD.framer-v-1vri8k2.framer-1qhx4q9, .framer-uBoTD.framer-v-8tx9n0.framer-1qhx4q9 { flex-direction: column; width: 768px; }\",\".framer-uBoTD.framer-v-d9bc1 .framer-x6eunv, .framer-uBoTD.framer-v-1v7p8ez .framer-x6eunv, .framer-uBoTD.framer-v-1vri8k2 .framer-x6eunv, .framer-uBoTD.framer-v-8tx9n0 .framer-x6eunv, .framer-uBoTD.framer-v-zrizoy .framer-x6eunv, .framer-uBoTD.framer-v-1guz667 .framer-x6eunv, .framer-uBoTD.framer-v-44f3py .framer-x6eunv, .framer-uBoTD.framer-v-6xg09q .framer-x6eunv { order: 1; width: 100%; }\",\".framer-uBoTD.framer-v-d9bc1 .framer-1gke9oz, .framer-uBoTD.framer-v-d9bc1 .framer-mzjsro, .framer-uBoTD.framer-v-1v7p8ez .framer-1gke9oz, .framer-uBoTD.framer-v-1v7p8ez .framer-mzjsro, .framer-uBoTD.framer-v-1vri8k2 .framer-1gke9oz, .framer-uBoTD.framer-v-1vri8k2 .framer-mzjsro, .framer-uBoTD.framer-v-8tx9n0 .framer-1gke9oz, .framer-uBoTD.framer-v-8tx9n0 .framer-mzjsro, .framer-uBoTD.framer-v-zrizoy .framer-1gke9oz, .framer-uBoTD.framer-v-zrizoy .framer-mzjsro, .framer-uBoTD.framer-v-1guz667 .framer-1gke9oz, .framer-uBoTD.framer-v-1guz667 .framer-mzjsro, .framer-uBoTD.framer-v-44f3py .framer-1gke9oz, .framer-uBoTD.framer-v-44f3py .framer-mzjsro, .framer-uBoTD.framer-v-6xg09q .framer-1gke9oz, .framer-uBoTD.framer-v-6xg09q .framer-mzjsro { width: 100%; }\",\".framer-uBoTD.framer-v-d9bc1 .framer-tvjt4e, .framer-uBoTD.framer-v-1v7p8ez .framer-tvjt4e, .framer-uBoTD.framer-v-1vri8k2 .framer-tvjt4e, .framer-uBoTD.framer-v-8tx9n0 .framer-tvjt4e { gap: unset; justify-content: space-between; order: 0; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-d9bc1.framer-1qhx4q9, .framer-uBoTD.framer-v-d9bc1 .framer-tvjt4e { gap: 0px; } .framer-uBoTD.framer-v-d9bc1.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-uBoTD.framer-v-d9bc1.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-d9bc1.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } .framer-uBoTD.framer-v-d9bc1 .framer-tvjt4e > *, .framer-uBoTD.framer-v-d9bc1 .framer-tvjt4e > :first-child, .framer-uBoTD.framer-v-d9bc1 .framer-tvjt4e > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-1v7p8ez.framer-1qhx4q9, .framer-uBoTD.framer-v-1v7p8ez .framer-tvjt4e { gap: 0px; } .framer-uBoTD.framer-v-1v7p8ez.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-uBoTD.framer-v-1v7p8ez.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-1v7p8ez.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } .framer-uBoTD.framer-v-1v7p8ez .framer-tvjt4e > *, .framer-uBoTD.framer-v-1v7p8ez .framer-tvjt4e > :first-child, .framer-uBoTD.framer-v-1v7p8ez .framer-tvjt4e > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-1vri8k2.framer-1qhx4q9, .framer-uBoTD.framer-v-1vri8k2 .framer-tvjt4e { gap: 0px; } .framer-uBoTD.framer-v-1vri8k2.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-uBoTD.framer-v-1vri8k2.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-1vri8k2.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } .framer-uBoTD.framer-v-1vri8k2 .framer-tvjt4e > *, .framer-uBoTD.framer-v-1vri8k2 .framer-tvjt4e > :first-child, .framer-uBoTD.framer-v-1vri8k2 .framer-tvjt4e > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-8tx9n0.framer-1qhx4q9, .framer-uBoTD.framer-v-8tx9n0 .framer-tvjt4e { gap: 0px; } .framer-uBoTD.framer-v-8tx9n0.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-uBoTD.framer-v-8tx9n0.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-8tx9n0.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } .framer-uBoTD.framer-v-8tx9n0 .framer-tvjt4e > *, .framer-uBoTD.framer-v-8tx9n0 .framer-tvjt4e > :first-child, .framer-uBoTD.framer-v-8tx9n0 .framer-tvjt4e > :last-child { margin: 0px; } }\",\".framer-uBoTD.framer-v-zrizoy.framer-1qhx4q9, .framer-uBoTD.framer-v-1guz667.framer-1qhx4q9 { flex-direction: column; gap: 48px; overflow: hidden; width: 320px; }\",\".framer-uBoTD.framer-v-zrizoy .framer-tvjt4e, .framer-uBoTD.framer-v-1guz667 .framer-tvjt4e { order: 0; overflow: hidden; overflow-x: auto; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-zrizoy.framer-1qhx4q9 { gap: 0px; } .framer-uBoTD.framer-v-zrizoy.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-uBoTD.framer-v-zrizoy.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-zrizoy.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-1guz667.framer-1qhx4q9 { gap: 0px; } .framer-uBoTD.framer-v-1guz667.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-uBoTD.framer-v-1guz667.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-1guz667.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } }\",\".framer-uBoTD.framer-v-44f3py.framer-1qhx4q9, .framer-uBoTD.framer-v-6xg09q.framer-1qhx4q9 { flex-direction: column; gap: 48px; width: 320px; }\",\".framer-uBoTD.framer-v-44f3py .framer-tvjt4e { justify-content: center; order: 0; overflow: hidden; overflow-x: auto; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-44f3py.framer-1qhx4q9 { gap: 0px; } .framer-uBoTD.framer-v-44f3py.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-uBoTD.framer-v-44f3py.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-44f3py.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } }\",\".framer-uBoTD.framer-v-6xg09q .framer-tvjt4e { justify-content: flex-end; order: 0; overflow: hidden; overflow-x: auto; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uBoTD.framer-v-6xg09q.framer-1qhx4q9 { gap: 0px; } .framer-uBoTD.framer-v-6xg09q.framer-1qhx4q9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-uBoTD.framer-v-6xg09q.framer-1qhx4q9 > :first-child { margin-top: 0px; } .framer-uBoTD.framer-v-6xg09q.framer-1qhx4q9 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-uBoTD[data-border=\"true\"]::after, .framer-uBoTD [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; }','.framer-uBoTD[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-uBoTD [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-uBoTD[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-uBoTD [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 366\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Jd74yYum3\":{\"layout\":[\"fixed\",\"auto\"]},\"JnH5un5za\":{\"layout\":[\"fixed\",\"auto\"]},\"jM9_XgjzE\":{\"layout\":[\"fixed\",\"auto\"]},\"QlWV0LkvQ\":{\"layout\":[\"fixed\",\"auto\"]},\"lkD_1Ya4D\":{\"layout\":[\"fixed\",\"auto\"]},\"WaxxB1Fy8\":{\"layout\":[\"fixed\",\"auto\"]},\"YgnIJzlfM\":{\"layout\":[\"fixed\",\"auto\"]},\"YcZ_zRID5\":{\"layout\":[\"fixed\",\"auto\"]},\"IBm7y1KRF\":{\"layout\":[\"fixed\",\"auto\"]},\"SAiZDs1OT\":{\"layout\":[\"fixed\",\"auto\"]},\"I88RR3cbk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EFarrc8Nu\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKLZ7B8iO5=withCSS(Component,css,\"framer-uBoTD\");export default FramerKLZ7B8iO5;FramerKLZ7B8iO5.displayName=\"Section / About\";FramerKLZ7B8iO5.defaultProps={height:366,width:1280};addPropertyControls(FramerKLZ7B8iO5,{variant:{options:[\"ieVWz_6sb\",\"Jd74yYum3\",\"JnH5un5za\",\"jM9_XgjzE\",\"QlWV0LkvQ\",\"lkD_1Ya4D\",\"WaxxB1Fy8\",\"YgnIJzlfM\",\"YcZ_zRID5\",\"IBm7y1KRF\",\"SAiZDs1OT\",\"I88RR3cbk\"],optionTitles:[\"Product Design / Desktop\",\"E-commerce / Desktop\",\"Apps / Desktop\",\"Sistemas / Desktop\",\"Product Design / Tablet\",\"E-commerce / Tablet\",\"Apps / Tablet\",\"Sistemas / Tablet\",\"Product Design / Mobile\",\"E-commerce / Mobile\",\"Apps / Mobile\",\"Sistemas / Mobile\"],title:\"Variant\",type:ControlType.Enum},EFarrc8Nu:{defaultValue:\"0px 40px 0px 40px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerKLZ7B8iO5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonExternalLinkFonts,...BaseTabFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKLZ7B8iO5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jd74yYum3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JnH5un5za\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jM9_XgjzE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QlWV0LkvQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lkD_1Ya4D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WaxxB1Fy8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YgnIJzlfM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YcZ_zRID5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IBm7y1KRF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SAiZDs1OT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I88RR3cbk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"366\",\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"EFarrc8Nu\\\":\\\"padding\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={c0h6REo9P:{hover:true,pressed:true}};const cycleOrder=[\"rnMIuNVdt\",\"c0h6REo9P\"];const serializationHash=\"framer-Zt6wN\";const variantClassNames={c0h6REo9P:\"framer-v-mswzwd\",rnMIuNVdt:\"framer-v-1ab0u7m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Bold:\"bold\",Duotone:\"duotone\",Fill:\"fill\",Light:\"light\",Regular:\"regular\",Thin:\"thin\"};const humanReadableVariantMap={End:\"c0h6REo9P\",Start:\"rnMIuNVdt\"};const getProps=({height,id,link,name1,smoothScroll,weight,width,...props})=>{var _ref,_humanReadableEnumMap_weight,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,JFQpAd1Gc:(_ref=name1!==null&&name1!==void 0?name1:props.JFQpAd1Gc)!==null&&_ref!==void 0?_ref:\"ArrowUp\",kApYGeqdk:(_ref2=(_ref1=(_humanReadableEnumMap_weight=humanReadableEnumMap[weight])!==null&&_humanReadableEnumMap_weight!==void 0?_humanReadableEnumMap_weight:weight)!==null&&_ref1!==void 0?_ref1:props.kApYGeqdk)!==null&&_ref2!==void 0?_ref2:\"regular\",kHPzkx1dE:link!==null&&link!==void 0?link:props.kHPzkx1dE,SY25T4uEi:(_ref3=smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.SY25T4uEi)!==null&&_ref3!==void 0?_ref3:true,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"rnMIuNVdt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kHPzkx1dE,kApYGeqdk,JFQpAd1Gc,SY25T4uEi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rnMIuNVdt\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:kHPzkx1dE,nodeId:\"rnMIuNVdt\",smoothScroll:SY25T4uEi,...addPropertyOverrides({c0h6REo9P:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"button\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ab0u7m\",className,classNames)} framer-81aake`,\"data-framer-name\":\"Start\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"rnMIuNVdt\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:0,...style},variants:{\"c0h6REo9P-hover\":{opacity:1},\"c0h6REo9P-pressed\":{opacity:1},c0h6REo9P:{opacity:1}},...addPropertyOverrides({\"c0h6REo9P-hover\":{\"data-framer-name\":undefined},\"c0h6REo9P-pressed\":{\"data-framer-name\":undefined},c0h6REo9P:{\"data-framer-name\":\"End\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hdqpz5\",layoutDependency:layoutDependency,layoutId:\"iVWOAHx50\",style:{backgroundColor:\"rgb(204, 187, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"none\"},variants:{\"c0h6REo9P-hover\":{boxShadow:\"0px 4px 0px 0px rgb(79, 39, 147), inset 0px -1px 4px 0px rgb(111, 55, 208)\"},\"c0h6REo9P-pressed\":{backgroundColor:\"rgb(96, 48, 180)\",boxShadow:\"0px 2px 0px 0px rgb(55, 28, 104)\"},c0h6REo9P:{backgroundColor:\"var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, rgb(136, 68, 255))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ychvyv-container\",layoutDependency:layoutDependency,layoutId:\"JRp3qarJf-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:JFQpAd1Gc,id:\"JRp3qarJf\",layoutId:\"JRp3qarJf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:kApYGeqdk,width:\"100%\"})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Zt6wN.framer-81aake, .framer-Zt6wN .framer-81aake { display: block; }\",\".framer-Zt6wN.framer-1ab0u7m { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 61px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Zt6wN .framer-1hdqpz5 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-Zt6wN .framer-1ychvyv-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Zt6wN.framer-1ab0u7m, .framer-Zt6wN .framer-1hdqpz5 { gap: 0px; } .framer-Zt6wN.framer-1ab0u7m > *, .framer-Zt6wN .framer-1hdqpz5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Zt6wN.framer-1ab0u7m > :first-child, .framer-Zt6wN .framer-1hdqpz5 > :first-child { margin-left: 0px; } .framer-Zt6wN.framer-1ab0u7m > :last-child, .framer-Zt6wN .framer-1hdqpz5 > :last-child { margin-right: 0px; } }\",\".framer-Zt6wN.framer-v-mswzwd.framer-1ab0u7m { cursor: pointer; padding: 0px 0px 2px 0px; }\",\".framer-Zt6wN.framer-v-mswzwd.hover.framer-1ab0u7m { padding: 0px 0px 5px 0px; }\",\".framer-Zt6wN.framer-v-mswzwd.pressed.framer-1ab0u7m { padding: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 61\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"c0h6REo9P\":{\"layout\":[\"auto\",\"fixed\"]},\"dI395g9B6\":{\"layout\":[\"auto\",\"fixed\"]},\"zWzMYNN1Q\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"kHPzkx1dE\":\"link\",\"kApYGeqdk\":\"weight\",\"JFQpAd1Gc\":\"name1\",\"SY25T4uEi\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerqap46GLHU=withCSS(Component,css,\"framer-Zt6wN\");export default Framerqap46GLHU;Framerqap46GLHU.displayName=\"Button / To Top\";Framerqap46GLHU.defaultProps={height:61,width:56};addPropertyControls(Framerqap46GLHU,{variant:{options:[\"rnMIuNVdt\",\"c0h6REo9P\"],optionTitles:[\"Start\",\"End\"],title:\"Variant\",type:ControlType.Enum},kHPzkx1dE:{title:\"Link\",type:ControlType.Link},kApYGeqdk:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"regular\",description:undefined,hidden:undefined,title:\"Weight\"},JFQpAd1Gc:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowUp\",description:undefined,hidden:undefined,title:\"Name\"},SY25T4uEi:{defaultValue:true,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(Framerqap46GLHU,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqap46GLHU\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"c0h6REo9P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dI395g9B6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zWzMYNN1Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"56\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"kHPzkx1dE\\\":\\\"link\\\",\\\"kApYGeqdk\\\":\\\"weight\\\",\\\"JFQpAd1Gc\\\":\\\"name1\\\",\\\"SY25T4uEi\\\":\\\"smoothScroll\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"61\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qap46GLHU.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2ksltisnmvqCJViv2HZe/UN4CAAhExlJpt0to40zL/kf7bwnSqK.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"I104:382;58:404\",\"Ou8I2Axe6\"];const serializationHash=\"framer-zD0BL\";const variantClassNames={\"I104:382;58:404\":\"framer-v-13quw5w\",Ou8I2Axe6:\"framer-v-1ylje3l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"I104:382;58:404\",Mobile:\"Ou8I2Axe6\"};const getProps=({height,iconColor,iconVisible,id,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,M_GaAsaKn:(_ref=title!==null&&title!==void 0?title:props.M_GaAsaKn)!==null&&_ref!==void 0?_ref:\"Awesome visual identities & logo(s)\",PTor2jcXc:(_ref1=iconColor!==null&&iconColor!==void 0?iconColor:props.PTor2jcXc)!==null&&_ref1!==void 0?_ref1:\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17))\",uiSyDaYnE:(_ref2=iconVisible!==null&&iconVisible!==void 0?iconVisible:props.uiSyDaYnE)!==null&&_ref2!==void 0?_ref2:true,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"I104:382;58:404\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,M_GaAsaKn,PTor2jcXc,uiSyDaYnE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I104:382;58:404\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13quw5w\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:404\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(251, 251, 251))\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},...addPropertyOverrides({Ou8I2Axe6:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[uiSyDaYnE&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-144k8k1-container\",layoutDependency:layoutDependency,layoutId:\"r7mTDXfF1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:PTor2jcXc,height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"r7mTDXfF1\",layoutId:\"r7mTDXfF1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"Awesome visual identities & logo(s)\"})}),className:\"framer-1mtm7dv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I104:382;58:407\",style:{\"--framer-paragraph-spacing\":\"16px\"},text:M_GaAsaKn,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zD0BL.framer-83nsf, .framer-zD0BL .framer-83nsf { display: block; }\",\".framer-zD0BL.framer-13quw5w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 16px 12px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zD0BL .framer-144k8k1-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-zD0BL .framer-1mtm7dv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zD0BL.framer-13quw5w { gap: 0px; } .framer-zD0BL.framer-13quw5w > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-zD0BL.framer-13quw5w > :first-child { margin-left: 0px; } .framer-zD0BL.framer-13quw5w > :last-child { margin-right: 0px; } }\",\".framer-zD0BL.framer-v-1ylje3l.framer-13quw5w { gap: 8px; padding: 10px 14px 10px 10px; width: 333px; }\",\".framer-zD0BL.framer-v-1ylje3l .framer-1mtm7dv { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zD0BL.framer-v-1ylje3l.framer-13quw5w { gap: 0px; } .framer-zD0BL.framer-v-1ylje3l.framer-13quw5w > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zD0BL.framer-v-1ylje3l.framer-13quw5w > :first-child { margin-left: 0px; } .framer-zD0BL.framer-v-1ylje3l.framer-13quw5w > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 361\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Ou8I2Axe6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"M_GaAsaKn\":\"title\",\"PTor2jcXc\":\"iconColor\",\"uiSyDaYnE\":\"iconVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdyPL4LF8O=withCSS(Component,css,\"framer-zD0BL\");export default FramerdyPL4LF8O;FramerdyPL4LF8O.displayName=\"Base / Tag\";FramerdyPL4LF8O.defaultProps={height:51,width:361};addPropertyControls(FramerdyPL4LF8O,{variant:{options:[\"I104:382;58:404\",\"Ou8I2Axe6\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},M_GaAsaKn:{defaultValue:\"Awesome visual identities & logo(s)\",displayTextArea:false,title:\"Title\",type:ControlType.String},PTor2jcXc:{defaultValue:'var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17)) /* {\"name\":\"Text\"} */',title:\"Icon Color\",type:ControlType.Color},uiSyDaYnE:{defaultValue:true,title:\"Icon Visible\",type:ControlType.Boolean}});addFonts(FramerdyPL4LF8O,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdyPL4LF8O\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"361\",\"framerVariables\":\"{\\\"M_GaAsaKn\\\":\\\"title\\\",\\\"PTor2jcXc\\\":\\\"iconColor\\\",\\\"uiSyDaYnE\\\":\\\"iconVisible\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ou8I2Axe6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"51\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dyPL4LF8O.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Plus Jakarta Sans-bold\",\"FS;Plus Jakarta Sans-extrabold\",\"FS;Plus Jakarta Sans-extrabold italic\",\"FS;Plus Jakarta Sans-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XYQDC7JAGGEKCBFTJWJFLWLJYO67C7XN/RVU7P55XKD46CPRWMPRMGQG2XS5IZ3EH/RJHIBK2KTTRF4HQSD33LZE5P3HZAYGJ2.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XU3SIPSTILVUEE57N33LI57RHN4LESB2/NYZOFSLOXP2NLUPPPC3HSJFYFAYFD5WF/MRD5H7VGACV27ZK3D773YPWKUWZ5UTUZ.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/57U2OK2BISA74Z4RT4CRD5GR4O3PNVPY/K4TDAPUNBYK24HOCNW4JIOTEXSAE2BEF/GV5XODI2YD2DJA5RVTMJOSDHYESL7IYT.woff2\",weight:\"700\"}]}];export const css=['.framer-mWgLs .framer-styles-preset-uqs8e4:not(.rich-text-wrapper), .framer-mWgLs .framer-styles-preset-uqs8e4.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 800; --framer-font-weight-italic: 700; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-mWgLs\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kjEGUGi6cgvD3CmK0MYh/XXGNvmhn4Zy0hNsLemND/HhElyiX6_.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"I104:382;58:378\",\"v8iRImHvz\"];const serializationHash=\"framer-1eDUF\";const variantClassNames={\"I104:382;58:378\":\"framer-v-1sphvs4\",v8iRImHvz:\"framer-v-1co1vjk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"I104:382;58:378\",Mobile:\"v8iRImHvz\"};const getProps=({gap,height,icon,id,title,visible,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,d8ABvOg7g:(_ref=title!==null&&title!==void 0?title:props.d8ABvOg7g)!==null&&_ref!==void 0?_ref:\"View Project\",MdehPLSge:(_ref1=gap!==null&&gap!==void 0?gap:props.MdehPLSge)!==null&&_ref1!==void 0?_ref1:10,mNU1c4o2N:(_ref2=icon!==null&&icon!==void 0?icon:props.mNU1c4o2N)!==null&&_ref2!==void 0?_ref2:\"ArrowRight\",PeF00IUQ5:(_ref3=visible!==null&&visible!==void 0?visible:props.PeF00IUQ5)!==null&&_ref3!==void 0?_ref3:true,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"I104:382;58:378\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,d8ABvOg7g,MdehPLSge,PeF00IUQ5,mNU1c4o2N,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I104:382;58:378\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1sphvs4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:378\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1b78zd2\":MdehPLSge,...style},...addPropertyOverrides({v8iRImHvz:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uqs8e4\",\"data-styles-preset\":\"HhElyiX6_\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, rgb(159, 90, 249)))\"},children:\"View Project\"})}),className:\"framer-1nvwhuy\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I104:382;58:379\",style:{\"--extracted-r6o4lv\":\"var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, rgb(159, 90, 249))\"},text:d8ABvOg7g,verticalAlignment:\"top\",withExternalLayout:true}),PeF00IUQ5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2y52nl-container\",layoutDependency:layoutDependency,layoutId:\"fspV4Ms5u-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, rgb(159, 90, 249))\",height:\"100%\",iconSearch:\"House\",iconSelection:mNU1c4o2N,id:\"fspV4Ms5u\",layoutId:\"fspV4Ms5u\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1eDUF.framer-865ede, .framer-1eDUF .framer-865ede { display: block; }\",\".framer-1eDUF.framer-1sphvs4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--1b78zd2)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1eDUF .framer-1nvwhuy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1eDUF .framer-2y52nl-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1eDUF.framer-1sphvs4 { gap: 0px; } .framer-1eDUF.framer-1sphvs4 > * { margin: 0px; margin-left: calc(calc(max(0, var(--1b78zd2)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1b78zd2)) * 1px) / 2); } .framer-1eDUF.framer-1sphvs4 > :first-child { margin-left: 0px; } .framer-1eDUF.framer-1sphvs4 > :last-child { margin-right: 0px; } }\",\".framer-1eDUF.framer-v-1co1vjk.framer-1sphvs4 { height: 44px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 145.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"v8iRImHvz\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"d8ABvOg7g\":\"title\",\"MdehPLSge\":\"gap\",\"PeF00IUQ5\":\"visible\",\"mNU1c4o2N\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxaeyqApXS=withCSS(Component,css,\"framer-1eDUF\");export default FramerxaeyqApXS;FramerxaeyqApXS.displayName=\"Button / Text\";FramerxaeyqApXS.defaultProps={height:27,width:145.5};addPropertyControls(FramerxaeyqApXS,{variant:{options:[\"I104:382;58:378\",\"v8iRImHvz\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},d8ABvOg7g:{defaultValue:\"View Project\",displayTextArea:false,title:\"Title\",type:ControlType.String},MdehPLSge:{defaultValue:10,min:0,title:\"Gap\",type:ControlType.Number},PeF00IUQ5:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},mNU1c4o2N:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowRight\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerxaeyqApXS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxaeyqApXS\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"27\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"145.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"v8iRImHvz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"d8ABvOg7g\\\":\\\"title\\\",\\\"MdehPLSge\\\":\\\"gap\\\",\\\"PeF00IUQ5\\\":\\\"visible\\\",\\\"mNU1c4o2N\\\":\\\"icon\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xaeyqApXS.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/sewZ4LXZfEVpznVuizhn/wkZ70jQYteYAEsYhypv2/bKvs_i8q2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2ksltisnmvqCJViv2HZe/UN4CAAhExlJpt0to40zL/kf7bwnSqK.js\";import BaseTag from\"https://framerusercontent.com/modules/hcaHXoG4JkP1IfTOFHnG/VqW8wwS0cX9FYtdeBwXU/dyPL4LF8O.js\";import ButtonText from\"https://framerusercontent.com/modules/ljXC8Dk03hLVyxFe7xyK/JY27uSPEWIpyWHpBIhg0/xaeyqApXS.js\";const BaseTagFonts=getFonts(BaseTag);const ButtonTextFonts=getFonts(ButtonText);const ButtonTextControls=getPropertyControls(ButtonText);const enabledGestures={lnfBXKJwG:{hover:true}};const cycleOrder=[\"lnfBXKJwG\",\"GKKBgX071\"];const serializationHash=\"framer-Evrx5\";const variantClassNames={GKKBgX071:\"framer-v-nhbdx1\",lnfBXKJwG:\"framer-v-5ia2ka\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"lnfBXKJwG\",Mobile:\"GKKBgX071\"};const getProps=({buttonTitle,category1,category2,category3,description,height,icon,iconColor,id,image1,image2,link,newTab,title,visible,visibleImage,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,Avxp6hVaI:category2!==null&&category2!==void 0?category2:props.Avxp6hVaI,B29ImcTNf:category3!==null&&category3!==void 0?category3:props.B29ImcTNf,bUNX1bgUf:(_ref=visibleImage!==null&&visibleImage!==void 0?visibleImage:props.bUNX1bgUf)!==null&&_ref!==void 0?_ref:true,DvCGzupyt:(_ref1=description!==null&&description!==void 0?description:props.DvCGzupyt)!==null&&_ref1!==void 0?_ref1:\"With user-centered approach, the goals was to create an intuitive interface for effortless financial management while incorporating gamification.\",eEqGctvji:image2!==null&&image2!==void 0?image2:props.eEqGctvji,hwjUzqcQL:image1!==null&&image1!==void 0?image1:props.hwjUzqcQL,jEhkoM6zH:(_ref2=visible!==null&&visible!==void 0?visible:props.jEhkoM6zH)!==null&&_ref2!==void 0?_ref2:true,JHq9Pqcdq:category1!==null&&category1!==void 0?category1:props.JHq9Pqcdq,jipc7f83S:(_ref3=buttonTitle!==null&&buttonTitle!==void 0?buttonTitle:props.jipc7f83S)!==null&&_ref3!==void 0?_ref3:\"Ver projeto\",kM6b3z1tp:newTab!==null&&newTab!==void 0?newTab:props.kM6b3z1tp,MloPiixvQ:(_ref4=icon!==null&&icon!==void 0?icon:props.MloPiixvQ)!==null&&_ref4!==void 0?_ref4:\"ArrowRight\",ocahgvNHq:link!==null&&link!==void 0?link:props.ocahgvNHq,RgNVS01eW:(_ref5=title!==null&&title!==void 0?title:props.RgNVS01eW)!==null&&_ref5!==void 0?_ref5:\"Budget Planner Finance App\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"lnfBXKJwG\",WNCMWkDKf:(_ref7=iconColor!==null&&iconColor!==void 0?iconColor:props.WNCMWkDKf)!==null&&_ref7!==void 0?_ref7:\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hwjUzqcQL,eEqGctvji,RgNVS01eW,DvCGzupyt,JHq9Pqcdq,Avxp6hVaI,B29ImcTNf,WNCMWkDKf,bUNX1bgUf,ocahgvNHq,jipc7f83S,jEhkoM6zH,kM6b3z1tp,MloPiixvQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lnfBXKJwG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(JHq9Pqcdq);const visible1=isSet(Avxp6hVaI);const visible2=isSet(B29ImcTNf);const isDisplayed=value=>{if(baseVariant===\"GKKBgX071\")return false;return value;};const visible3=isSet(hwjUzqcQL);const visible4=isSet(eEqGctvji);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ocahgvNHq,nodeId:\"lnfBXKJwG\",openInNewTab:kM6b3z1tp,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"article\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-5ia2ka\",className,classNames)} framer-9fyj1h`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"lnfBXKJwG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({\"lnfBXKJwG-hover\":{\"data-framer-name\":undefined},GKKBgX071:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkqw7i\",\"data-framer-name\":\"about\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:365\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8vszx0\",\"data-framer-name\":\"txt\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:416\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t6bb56\",\"data-framer-name\":\"head-txt\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:375\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xfhis1\",\"data-framer-name\":\"head\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:417\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-hhigr0\",\"data-styles-preset\":\"bKvs_i8q2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"Budget Planner Finance App\"})}),className:\"framer-1pgbc9a\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I104:382;58:376\",style:{\"--extracted-a0htzi\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},text:RgNVS01eW,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17)))\"},children:\"With user-centered approach, the goals was to create an intuitive interface for effortless financial management while incorporating gamification.\"})}),className:\"framer-1kmkc64\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I104:382;58:377\",style:{\"--extracted-r6o4lv\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\",opacity:.8},text:DvCGzupyt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tz48p8\",\"data-framer-name\":\"features\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:403\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+(0+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||583)-64)*1-64-266)/1*0)+0+239+0+0,...addPropertyOverrides({GKKBgX071:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+0+0+239+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-igr37h-container\",layoutDependency:layoutDependency,layoutId:\"MUI8HEi_T-container\",children:/*#__PURE__*/_jsx(BaseTag,{height:\"100%\",id:\"MUI8HEi_T\",kkyYlRCnk:\"rgb(246, 243, 255)\",layoutId:\"MUI8HEi_T\",M_GaAsaKn:JHq9Pqcdq,PTor2jcXc:WNCMWkDKf,uiSyDaYnE:true,variant:\"I104:382;58:404\",width:\"100%\",...addPropertyOverrides({GKKBgX071:{style:{width:\"100%\"},variant:\"Ou8I2Axe6\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+(0+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||583)-64)*1-64-266)/1*0)+0+239+0+61,...addPropertyOverrides({GKKBgX071:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+0+0+239+0+61}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3jkxr-container\",layoutDependency:layoutDependency,layoutId:\"rg0ADJj_c-container\",children:/*#__PURE__*/_jsx(BaseTag,{height:\"100%\",id:\"rg0ADJj_c\",kkyYlRCnk:\"rgb(246, 243, 255)\",layoutId:\"rg0ADJj_c\",M_GaAsaKn:Avxp6hVaI,PTor2jcXc:WNCMWkDKf,uiSyDaYnE:true,variant:\"I104:382;58:404\",width:\"100%\",...addPropertyOverrides({GKKBgX071:{style:{width:\"100%\"},variant:\"Ou8I2Axe6\"}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+(0+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||583)-64)*1-64-266)/1*0)+0+239+0+122,...addPropertyOverrides({GKKBgX071:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+0+0+239+0+122}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ltxwtw-container\",layoutDependency:layoutDependency,layoutId:\"hvuIEzYSV-container\",children:/*#__PURE__*/_jsx(BaseTag,{height:\"100%\",id:\"hvuIEzYSV\",kkyYlRCnk:\"rgb(246, 243, 255)\",layoutId:\"hvuIEzYSV\",M_GaAsaKn:B29ImcTNf,PTor2jcXc:WNCMWkDKf,uiSyDaYnE:true,variant:\"I104:382;58:404\",width:\"100%\",...addPropertyOverrides({GKKBgX071:{style:{width:\"100%\"},variant:\"Ou8I2Axe6\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+(0+239+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||583)-64)*1-64-266)/1*1),...addPropertyOverrides({GKKBgX071:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+263}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-np84dv-container\",layoutDependency:layoutDependency,layoutId:\"OgUpQXgYr-container\",children:/*#__PURE__*/_jsx(ButtonText,{d8ABvOg7g:jipc7f83S,height:\"100%\",id:\"OgUpQXgYr\",layoutId:\"OgUpQXgYr\",MdehPLSge:10,mNU1c4o2N:MloPiixvQ,PeF00IUQ5:jEhkoM6zH,variant:\"I104:382;58:378\",width:\"100%\",...addPropertyOverrides({\"lnfBXKJwG-hover\":{MdehPLSge:16},GKKBgX071:{style:{width:\"100%\"},variant:\"v8iRImHvz\"}},baseVariant,gestureVariant)})})})]}),isDisplayed(bUNX1bgUf)&&/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64),positionX:\"center\",positionY:\"center\",sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 128px, 1px)`,src:\"https://framerusercontent.com/images/MIuVouINQfqW6mUDupAyrprfKA.png\",srcSet:\"https://framerusercontent.com/images/MIuVouINQfqW6mUDupAyrprfKA.png?scale-down-to=1024 877w,https://framerusercontent.com/images/MIuVouINQfqW6mUDupAyrprfKA.png?scale-down-to=2048 1755w,https://framerusercontent.com/images/MIuVouINQfqW6mUDupAyrprfKA.png 1780w\"},className:\"framer-lxyo5u\",\"data-framer-name\":\"images\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:384\",style:{borderTopLeftRadius:16,borderTopRightRadius:16},children:[visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+0),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 128px, 1px)`,...toResponsiveImage(hwjUzqcQL),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-oxsss2\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:385\"}),visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+0+274.5),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 128px, 1px)`,...toResponsiveImage(eEqGctvji),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-1fos9jt\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"I104:382;58:386\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rr82xr\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"rVc1VewAm\",style:{opacity:.1},variants:{\"lnfBXKJwG-hover\":{opacity:.2}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Evrx5.framer-9fyj1h, .framer-Evrx5 .framer-9fyj1h { display: block; }\",\".framer-Evrx5.framer-5ia2ka { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 64px 0px 64px; position: relative; text-decoration: none; width: 1216px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Evrx5 .framer-jkqw7i { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px 0px 64px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-Evrx5 .framer-8vszx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Evrx5 .framer-1t6bb56 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Evrx5 .framer-1xfhis1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Evrx5 .framer-1pgbc9a { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Evrx5 .framer-1kmkc64 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Evrx5 .framer-1tz48p8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 48px; min-width: 57px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Evrx5 .framer-igr37h-container, .framer-Evrx5 .framer-1a3jkxr-container, .framer-Evrx5 .framer-1ltxwtw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Evrx5 .framer-np84dv-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Evrx5 .framer-lxyo5u { -webkit-user-select: none; align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 519px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Evrx5 .framer-oxsss2 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-Evrx5 .framer-1fos9jt { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-Evrx5 .framer-1rr82xr { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Evrx5.framer-5ia2ka, .framer-Evrx5 .framer-8vszx0, .framer-Evrx5 .framer-1t6bb56, .framer-Evrx5 .framer-1xfhis1, .framer-Evrx5 .framer-1tz48p8, .framer-Evrx5 .framer-lxyo5u { gap: 0px; } .framer-Evrx5.framer-5ia2ka > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-Evrx5.framer-5ia2ka > :first-child, .framer-Evrx5 .framer-1xfhis1 > :first-child { margin-left: 0px; } .framer-Evrx5.framer-5ia2ka > :last-child, .framer-Evrx5 .framer-1xfhis1 > :last-child { margin-right: 0px; } .framer-Evrx5 .framer-8vszx0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Evrx5 .framer-8vszx0 > :first-child, .framer-Evrx5 .framer-1t6bb56 > :first-child, .framer-Evrx5 .framer-1tz48p8 > :first-child, .framer-Evrx5 .framer-lxyo5u > :first-child { margin-top: 0px; } .framer-Evrx5 .framer-8vszx0 > :last-child, .framer-Evrx5 .framer-1t6bb56 > :last-child, .framer-Evrx5 .framer-1tz48p8 > :last-child, .framer-Evrx5 .framer-lxyo5u > :last-child { margin-bottom: 0px; } .framer-Evrx5 .framer-1t6bb56 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Evrx5 .framer-1xfhis1 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-Evrx5 .framer-1tz48p8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Evrx5 .framer-lxyo5u > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-Evrx5.framer-v-nhbdx1.framer-5ia2ka { cursor: unset; padding: 40px 32px 32px 32px; width: 320px; }\",\".framer-Evrx5.framer-v-nhbdx1 .framer-jkqw7i { align-self: unset; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; }\",\".framer-Evrx5.framer-v-nhbdx1 .framer-1tz48p8 { min-width: unset; width: 100%; }\",\".framer-Evrx5.framer-v-nhbdx1 .framer-igr37h-container, .framer-Evrx5.framer-v-nhbdx1 .framer-1a3jkxr-container, .framer-Evrx5.framer-v-nhbdx1 .framer-1ltxwtw-container, .framer-Evrx5.framer-v-nhbdx1 .framer-np84dv-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Evrx5.framer-v-nhbdx1 .framer-jkqw7i { gap: 0px; } .framer-Evrx5.framer-v-nhbdx1 .framer-jkqw7i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Evrx5.framer-v-nhbdx1 .framer-jkqw7i > :first-child { margin-top: 0px; } .framer-Evrx5.framer-v-nhbdx1 .framer-jkqw7i > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 583\n * @framerIntrinsicWidth 1216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GKKBgX071\":{\"layout\":[\"fixed\",\"auto\"]},\"V2W0yxT65\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hwjUzqcQL\":\"image1\",\"eEqGctvji\":\"image2\",\"RgNVS01eW\":\"title\",\"DvCGzupyt\":\"description\",\"JHq9Pqcdq\":\"category1\",\"Avxp6hVaI\":\"category2\",\"B29ImcTNf\":\"category3\",\"WNCMWkDKf\":\"iconColor\",\"bUNX1bgUf\":\"visibleImage\",\"ocahgvNHq\":\"link\",\"jipc7f83S\":\"buttonTitle\",\"jEhkoM6zH\":\"visible\",\"kM6b3z1tp\":\"newTab\",\"MloPiixvQ\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWC3X1vL1O=withCSS(Component,css,\"framer-Evrx5\");export default FramerWC3X1vL1O;FramerWC3X1vL1O.displayName=\"Card / Project\";FramerWC3X1vL1O.defaultProps={height:583,width:1216};addPropertyControls(FramerWC3X1vL1O,{variant:{options:[\"lnfBXKJwG\",\"GKKBgX071\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},hwjUzqcQL:{title:\"Image 1\",type:ControlType.ResponsiveImage},eEqGctvji:{title:\"Image 2\",type:ControlType.ResponsiveImage},RgNVS01eW:{defaultValue:\"Budget Planner Finance App\",displayTextArea:false,title:\"Title\",type:ControlType.String},DvCGzupyt:{defaultValue:\"With user-centered approach, the goals was to create an intuitive interface for effortless financial management while incorporating gamification.\",displayTextArea:false,title:\"Description\",type:ControlType.String},JHq9Pqcdq:{defaultValue:\"\",displayTextArea:false,placeholder:\"\",title:\"Category 1\",type:ControlType.String},Avxp6hVaI:{defaultValue:\"\",description:\"\",displayTextArea:false,title:\"Category 2\",type:ControlType.String},B29ImcTNf:{defaultValue:\"\",description:\"\",displayTextArea:false,title:\"Category 3\",type:ControlType.String},WNCMWkDKf:{defaultValue:'var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17)) /* {\"name\":\"Text\"} */',title:\"Icon Color\",type:ControlType.Color},bUNX1bgUf:{defaultValue:true,title:\"Visible Image\",type:ControlType.Boolean},ocahgvNHq:{title:\"Link\",type:ControlType.Link},jipc7f83S:{defaultValue:\"Ver projeto\",description:\"\",displayTextArea:false,title:\"Button Title\",type:ControlType.String},jEhkoM6zH:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},kM6b3z1tp:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},MloPiixvQ:(ButtonTextControls===null||ButtonTextControls===void 0?void 0:ButtonTextControls[\"mNU1c4o2N\"])&&{...ButtonTextControls[\"mNU1c4o2N\"],defaultValue:\"ArrowRight\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerWC3X1vL1O,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BaseTagFonts,...ButtonTextFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWC3X1vL1O\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1216\",\"framerVariables\":\"{\\\"hwjUzqcQL\\\":\\\"image1\\\",\\\"eEqGctvji\\\":\\\"image2\\\",\\\"RgNVS01eW\\\":\\\"title\\\",\\\"DvCGzupyt\\\":\\\"description\\\",\\\"JHq9Pqcdq\\\":\\\"category1\\\",\\\"Avxp6hVaI\\\":\\\"category2\\\",\\\"B29ImcTNf\\\":\\\"category3\\\",\\\"WNCMWkDKf\\\":\\\"iconColor\\\",\\\"bUNX1bgUf\\\":\\\"visibleImage\\\",\\\"ocahgvNHq\\\":\\\"link\\\",\\\"jipc7f83S\\\":\\\"buttonTitle\\\",\\\"jEhkoM6zH\\\":\\\"visible\\\",\\\"kM6b3z1tp\\\":\\\"newTab\\\",\\\"MloPiixvQ\\\":\\\"icon\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"583\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GKKBgX071\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V2W0yxT65\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Plus Jakarta Sans-regular\",\"FS;Plus Jakarta Sans-bold\",\"FS;Plus Jakarta Sans-bold italic\",\"FS;Plus Jakarta Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/57U2OK2BISA74Z4RT4CRD5GR4O3PNVPY/K4TDAPUNBYK24HOCNW4JIOTEXSAE2BEF/GV5XODI2YD2DJA5RVTMJOSDHYESL7IYT.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UCVXDNZGT5A6V6IG4FWRDHOLGWGQQV4M/TH4CJJ2LCTVPQVYTQSEXOUCHE4FDIZON/LPCI46BISLFAK3QOD4U4IAMRBITTSFAP.woff2\",weight:\"400\"}]}];export const css=['.framer-1HJvy .framer-styles-preset-160xb2:not(.rich-text-wrapper), .framer-1HJvy .framer-styles-preset-160xb2.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #484653; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1535px) and (min-width: 1200px) { .framer-1HJvy .framer-styles-preset-160xb2:not(.rich-text-wrapper), .framer-1HJvy .framer-styles-preset-160xb2.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #484653; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 0px) { .framer-1HJvy .framer-styles-preset-160xb2:not(.rich-text-wrapper), .framer-1HJvy .framer-styles-preset-160xb2.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #484653; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-1HJvy\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Versos Test Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Versos Test Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/daH86u4zDcwp9Dqn0cJ5NbL2z6w.woff2\"}]}];export const css=['.framer-Yf7nP .framer-styles-preset-t6kazk:not(.rich-text-wrapper), .framer-Yf7nP .framer-styles-preset-t6kazk.rich-text-wrapper p { --framer-font-family: \"Versos Test Regular\", \"Versos Test Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, #171521); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1535px) and (min-width: 768px) { .framer-Yf7nP .framer-styles-preset-t6kazk:not(.rich-text-wrapper), .framer-Yf7nP .framer-styles-preset-t6kazk.rich-text-wrapper p { --framer-font-family: \"Versos Test Regular\", \"Versos Test Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, #171521); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Yf7nP .framer-styles-preset-t6kazk:not(.rich-text-wrapper), .framer-Yf7nP .framer-styles-preset-t6kazk.rich-text-wrapper p { --framer-font-family: \"Versos Test Regular\", \"Versos Test Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, #171521); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Yf7nP\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={Ica5hUjRt:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import ButtonExternalLink from\"#framer/local/canvasComponent/JKCbhNhnh/JKCbhNhnh.js\";import GalleryProcess from\"#framer/local/canvasComponent/Jr8mxitIc/Jr8mxitIc.js\";import AccordionFAQ from\"#framer/local/canvasComponent/JRsmtx5JF/JRsmtx5JF.js\";import SectionAbout from\"#framer/local/canvasComponent/KLZ7B8iO5/KLZ7B8iO5.js\";import SectionTestemonials from\"#framer/local/canvasComponent/Nn782Vnb7/Nn782Vnb7.js\";import ButtonAction from\"#framer/local/canvasComponent/pwOpoV9LS/pwOpoV9LS.js\";import ButtonToTop from\"#framer/local/canvasComponent/qap46GLHU/qap46GLHU.js\";import BaseMenu from\"#framer/local/canvasComponent/tzbgq7BTQ/tzbgq7BTQ.js\";import CardProject from\"#framer/local/canvasComponent/WC3X1vL1O/WC3X1vL1O.js\";import SectionFooter from\"#framer/local/canvasComponent/ZPzL4zqtl/ZPzL4zqtl.js\";import*as sharedStyle8 from\"#framer/local/css/AydBGsyGI/AydBGsyGI.js\";import*as sharedStyle5 from\"#framer/local/css/C5Lz8f3eW/C5Lz8f3eW.js\";import*as sharedStyle9 from\"#framer/local/css/dN7QltAHw/dN7QltAHw.js\";import*as sharedStyle6 from\"#framer/local/css/IYNffVmHF/IYNffVmHF.js\";import*as sharedStyle2 from\"#framer/local/css/kf7bwnSqK/kf7bwnSqK.js\";import*as sharedStyle from\"#framer/local/css/MxCs822E_/MxCs822E_.js\";import*as sharedStyle3 from\"#framer/local/css/sQVd4CZDN/sQVd4CZDN.js\";import*as sharedStyle10 from\"#framer/local/css/suCKZ10zu/suCKZ10zu.js\";import*as sharedStyle1 from\"#framer/local/css/t2dzLhvyK/t2dzLhvyK.js\";import*as sharedStyle7 from\"#framer/local/css/WGf0PE3EJ/WGf0PE3EJ.js\";import*as sharedStyle4 from\"#framer/local/css/xeH5E3xkg/xeH5E3xkg.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const MotionDivWithFX=withFX(motion.div);const LocaleSelectorFonts=getFonts(LocaleSelector);const ContainerWithFX=withFX(Container);const ButtonActionFonts=getFonts(ButtonAction);const PhosphorFonts=getFonts(Phosphor);const BaseMenuFonts=getFonts(BaseMenu);const ButtonExternalLinkFonts=getFonts(ButtonExternalLink);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const CardProjectFonts=getFonts(CardProject);const SectionTestemonialsFonts=getFonts(SectionTestemonials);const GalleryProcessFonts=getFonts(GalleryProcess);const GalleryProcessWithVariantAppearEffect=withVariantAppearEffect(GalleryProcess);const SectionAboutFonts=getFonts(SectionAbout);const AccordionFAQFonts=getFonts(AccordionFAQ);const SectionFooterFonts=getFonts(SectionFooter);const ButtonToTopFonts=getFonts(ButtonToTop);const ButtonToTopWithVariantAppearEffect=withVariantAppearEffect(ButtonToTop);const breakpoints={AFxVQMWvA:\"(max-width: 767px)\",GL7bLe_Dq:\"(min-width: 768px) and (max-width: 1199px)\",Kx9XRHsdd:\"(min-width: 1200px) and (max-width: 1535px)\",WQLkyLRf1:\"(min-width: 1536px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3X1vO\";const variantClassNames={AFxVQMWvA:\"framer-v-1qd0ceh\",GL7bLe_Dq:\"framer-v-14bqag3\",Kx9XRHsdd:\"framer-v-1wif8km\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition2={delay:.3,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"};const transition3={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.5,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={damping:60,delay:1.2,mass:1,stiffness:399,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition6={delay:.1,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Laptop:\"Kx9XRHsdd\",Mobile:\"AFxVQMWvA\",Tablet:\"GL7bLe_Dq\"};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-3X1vO`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-3X1vO`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const tyO8KXMmzwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const dOe6MydoIizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const elementId=useRouteElementId(\"MK8Tvu52t\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"GL7bLe_Dq\",\"AFxVQMWvA\"].includes(baseVariant))return false;return true;};usePreloadLocalizedValues(activeLocale);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"GL7bLe_Dq\",\"AFxVQMWvA\"].includes(baseVariant))return true;return false;};const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"AFxVQMWvA\")return false;return true;};const elementId1=useRouteElementId(\"dcx9zrCfP\");const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId2=useRouteElementId(\"vFQpyrcIw\");const ref9=React.useRef(null);const elementId3=useRouteElementId(\"N10jPvYab\");const elementId4=useRouteElementId(\"BzQPzo2Qi\");const elementId5=useRouteElementId(\"mkaZfIRIH\");const elementId6=useRouteElementId(\"c26vumL_y\");const ref10=React.useRef(null);const elementId7=useRouteElementId(\"FGTZ3nIAN\");const ref11=React.useRef(null);const elementId8=useRouteElementId(\"yDnMxqdCS\");const ref12=React.useRef(null);const elementId9=useRouteElementId(\"ZCfKdjtN1\");const ref13=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"AFxVQMWvA\")return true;return false;};const elementId10=useRouteElementId(\"dHPZhg36Q\");const ref14=React.useRef(null);const elementId11=useRouteElementId(\"NpJFXoynA\");const ref15=React.useRef(null);const elementId12=useRouteElementId(\"n3dcqNR3G\");const ref16=React.useRef(null);const elementId13=useRouteElementId(\"WKzTMqLgp\");const ref17=React.useRef(null);const elementId14=useRouteElementId(\"QUODsw7P9\");const ref18=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"GL7bLe_Dq\")return false;return true;};const elementId15=useRouteElementId(\"trFHRCYZx\");const ref19=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39,_getLocalizedValue40,_getLocalizedValue41,_getLocalizedValue42,_getLocalizedValue43,_getLocalizedValue44,_getLocalizedValue45,_getLocalizedValue46,_getLocalizedValue47,_getLocalizedValue48,_getLocalizedValue49,_getLocalizedValue50,_getLocalizedValue51,_getLocalizedValue52,_getLocalizedValue53,_getLocalizedValue54;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-1uss9jl-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"lMwBXMcTD\",intensity:5,layoutId:\"lMwBXMcTD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1fm1gri\",\"data-framer-name\":\"Hero\",id:elementId,name:\"Hero\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9h7oje\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udrodj\",\"data-framer-name\":\"Section / Navbar\",name:\"Section / Navbar\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lvl48e\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"CTo4mQhl2\",children:/*#__PURE__*/_jsx(\"a\",{\"aria-label\":\"button\",className:\"framer-1ku4a40 framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:170,pixelWidth:170,src:\"https://framerusercontent.com/images/Pdpq7K1Rkf33go8XOHoUNaMnsdY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(40),pixelHeight:170,pixelWidth:170,src:\"https://framerusercontent.com/images/Pdpq7K1Rkf33go8XOHoUNaMnsdY.svg\"},className:\"framer-vbroa4\",\"data-framer-name\":\"Svg\",name:\"Svg\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14z88w4 hidden-14bqag3 hidden-1qd0ceh\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",style:{\"--framer-text-color\":\"var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(251, 251, 251))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":dcx9zrCfP\",webPageId:\"augiA20Il\"},nodeId:\"wcNrZ_jRZ\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1a4uf2a\",\"data-styles-preset\":\"t2dzLhvyK\",children:\"Projetos\"})})})}),className:\"framer-you2be\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",style:{\"--framer-text-color\":\"var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(251, 251, 251))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":yDnMxqdCS\",webPageId:\"augiA20Il\"},nodeId:\"S4AkqbPyj\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1a4uf2a\",\"data-styles-preset\":\"t2dzLhvyK\",children:\"Nosso Processo\"})})})}),className:\"framer-1kpl9ap\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",style:{\"--framer-text-color\":\"var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(251, 251, 251))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WKzTMqLgp\",webPageId:\"augiA20Il\"},nodeId:\"S5q9TXgHp\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1a4uf2a\",\"data-styles-preset\":\"t2dzLhvyK\",children:\"Expertise\"})})})}),className:\"framer-owouwr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",style:{\"--framer-text-color\":\"var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(251, 251, 251))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":trFHRCYZx\",webPageId:\"augiA20Il\"},nodeId:\"nFo0gnbPG\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1a4uf2a\",\"data-styles-preset\":\"t2dzLhvyK\",children:\"FAQ\"})})})}),className:\"framer-19j7mdl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1krrs80\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1duwu83-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{options:{focus:{color:\"rgb(222, 212, 255)\",offset:0,style:\"solid\",width:1},gap:8,hover:{fillColor:\"rgb(239, 235, 255)\"},title:false},paddingBottom:12,paddingLeft:16,paddingRight:16,paddingTop:12},GL7bLe_Dq:{options:{focus:{color:\"rgb(222, 212, 255)\",offset:0,style:\"solid\",width:1},gap:8,hover:{fillColor:\"rgb(239, 235, 255)\"},title:false},paddingBottom:12,paddingLeft:16,paddingRight:16,paddingTop:12}},children:/*#__PURE__*/_jsx(LocaleSelector,{font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"rgb(72, 70, 83)\",size:24,type:\"default\"},id:\"Gxh9pmUwy\",layoutId:\"Gxh9pmUwy\",options:{focus:{color:\"rgb(222, 212, 255)\",offset:0,style:\"solid\",width:1},gap:8,hover:{fillColor:\"rgb(239, 235, 255)\"},title:true},padding:16,paddingBottom:16,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:16,radius:999,radiusBottomLeft:999,radiusBottomRight:999,radiusPerConrner:false,radiusTopLeft:999,radiusTopRight:999,textColor:\"rgb(72, 70, 83)\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:42.5,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7a5397-container hidden-14bqag3 hidden-1qd0ceh\",id:\"7a5397\",children:[/*#__PURE__*/_jsx(ButtonAction,{height:\"100%\",id:\"CLvs1c7XM\",layoutId:\"CLvs1c7XM\",MTEDEb6Nf:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Entre em contato\",tyO8KXMmz:tyO8KXMmzwelu7j({overlay}),variant:\"D0qgQwMUV\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"}},className:\"framer-1bvitk\",\"data-framer-portal-id\":\"7a5397\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"poOLVaRu4\"),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/72b8f0b8-64d2-46e3-a531-4724728f4d6f/submit\",className:\"framer-ipirni\",\"data-framer-portal-id\":\"7a5397\",children:formState=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;return _jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kjz5f0\",onTap:onTap1wvko5h({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kax3zt-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(23, 21, 33, 0.46)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"sFmxcASP7\",layoutId:\"sFmxcASP7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aj01w9\",children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-138ev6v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Nome\"})}),className:\"framer-ww38xh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-18u9yzm\",inputName:\"Nome\",placeholder:\"Jo\\xe3o Silva\",required:true,type:\"text\"})]})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-6sc4l1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Email\"})}),className:\"framer-ubnmtr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-tbp0qw\",inputName:\"Email\",placeholder:\"joao@gmail.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1n6h6aw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Site (opcional)\"})}),className:\"framer-28p7ig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-cpp20x\",inputName:\"Site\",placeholder:\"empresa.com.br\",required:false,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-l19uwn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Como podemos te ajudar?\"})}),className:\"framer-1c5x5gi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1l3jl4y\",inputName:\"Mensagem\",placeholder:(_getLocalizedValue3=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Escreva sua mensagem aqui\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"404px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1669kan-container\",children:/*#__PURE__*/_jsx(ButtonAction,{height:\"100%\",id:\"dVlqy4QUa\",layoutId:\"dVlqy4QUa\",MTEDEb6Nf:(_getLocalizedValue4=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Enviar\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"NRkOV55yb\",pending:\"ryPSVxhWO\",success:\"vSGj1qZxa\"},\"WBRaqLyjs\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kajtdf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Versare | Todos os direitos reservados \\xa9 2024\"})}),className:\"framer-1baonek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]});}})]}),document.querySelector(\"#overlay\"))})})]})})});}})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2;return _jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{height:42},GL7bLe_Dq:{height:42,y:43.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bctg3o-container hidden-72rtr7 hidden-1wif8km\",id:\"bctg3o\",ref:ref3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(BaseMenu,{dOe6MydoI:dOe6MydoIizu9gt({overlay:overlay1}),height:\"100%\",id:\"BswOc00dk\",layoutId:\"BswOc00dk\",NL7WSB521:true,variant:overlay1.visible?\"fde5Ku6Ga\":\"wEuhwyxPk\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{offsetX:-.2811204865574837,offsetY:7.499998027458787}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref3,collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"bctg3o\",offsetX:0,offsetY:8,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gvk13z\",ref:ref4,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juqcdc\",\"data-border\":true,\"data-framer-name\":\"Menu Open\",name:\"Menu Open\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bl9kfd\",\"data-framer-name\":\"nav-links\",name:\"nav-links\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hnbwt\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Y6Ptbfgrn\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-p48srt framer-lux5qc\",\"data-framer-name\":\"Home\",name:\"Home\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Home\"})})},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Home\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-exe562\",\"data-styles-preset\":\"XaExpWSGI\",children:\"Home\"})}),className:\"framer-i6tqcq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{href:{hash:\":dcx9zrCfP\",webPageId:\"augiA20Il\"}},GL7bLe_Dq:{href:{hash:\":dcx9zrCfP\",webPageId:\"augiA20Il\"}}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RDjpASm8R\"},nodeId:\"oiZoXy6qD\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1symmp framer-lux5qc\",\"data-framer-name\":\"Projects\",name:\"Projects\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Projetos\"})})},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Projetos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-exe562\",\"data-styles-preset\":\"XaExpWSGI\",children:\"Work\"})}),className:\"framer-1l61zh9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":yDnMxqdCS\",webPageId:\"augiA20Il\"},nodeId:\"hnPxCra0Z\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-3vl7rj framer-lux5qc\",\"data-framer-name\":\"Pricing\",name:\"Pricing\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Processo\"})})},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Processo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-exe562\",\"data-styles-preset\":\"XaExpWSGI\",children:\"Process\"})}),className:\"framer-10mzg32\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{href:{hash:\":WKzTMqLgp\",webPageId:\"augiA20Il\"}},GL7bLe_Dq:{href:{hash:\":WKzTMqLgp\",webPageId:\"augiA20Il\"}}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"rxdRGohxf\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-yh6rw6 framer-lux5qc\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Expertise\"})})},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"Expertise\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-exe562\",\"data-styles-preset\":\"XaExpWSGI\",children:\"Experience\"})}),className:\"framer-1x3b0au\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":trFHRCYZx\",webPageId:\"augiA20Il\"},nodeId:\"jgetMPN2U\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1tjtge3 framer-lux5qc\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"FAQ\"})})},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-htwtz9\",\"data-styles-preset\":\"MxCs822E_\",children:\"FAQ\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-exe562\",\"data-styles-preset\":\"XaExpWSGI\",children:\"FAQ\"})}),className:\"framer-1iwr646\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m1bruc\",\"data-framer-name\":\"subgroup\",name:\"subgroup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{href:\"https://www.linkedin.com/company/versare-studio/\"},GL7bLe_Dq:{href:\"https://www.linkedin.com/company/versare-studio/\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/babarogic/\",nodeId:\"yseQ8jB7i\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-9v71se framer-lux5qc\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aa6ltr\",\"data-styles-preset\":\"xeH5E3xkg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Linkedin\"})}),fonts:[\"Inter\"]},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aa6ltr\",\"data-styles-preset\":\"xeH5E3xkg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Linkedin\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBNZWRpdW0=\",\"--framer-font-family\":'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(11, 12, 14, 0.6)\"},children:\"Linkedin\"})}),className:\"framer-nmc74p\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"CUSTOM;Aeonik Medium\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1egtspq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8373 12.9992L13.2153 12.9992L13.2153 4.51388L4.73002 4.51388L4.73002 5.89192L10.8624 5.89192L3.75566 12.9987L4.73048 13.9735L11.8373 6.86674L11.8373 12.9992Z\" fill=\"#0B0C0E\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{href:\"https://dribbble.com/versare\",openInNewTab:true},GL7bLe_Dq:{href:\"https://dribbble.com/versare\",openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/babarogic\",nodeId:\"XgLX0z1RI\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-cwwdic framer-lux5qc\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aa6ltr\",\"data-styles-preset\":\"xeH5E3xkg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Dribbble\"})}),fonts:[\"Inter\"]},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aa6ltr\",\"data-styles-preset\":\"xeH5E3xkg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Dribbble\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBNZWRpdW0=\",\"--framer-font-family\":'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(11, 12, 14, 0.6)\"},children:\"Dribble\"})}),className:\"framer-ayknfv\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"CUSTOM;Aeonik Medium\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tuiqam\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8373 12.9992L13.2153 12.9992L13.2153 4.51388L4.73002 4.51388L4.73002 5.89192L10.8624 5.89192L3.75566 12.9987L4.73048 13.9735L11.8373 6.86674L11.8373 12.9992Z\" fill=\"#0B0C0E\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/babarogic\",nodeId:\"g2U2Q_XA_\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-bq0nkx hidden-14bqag3 hidden-1qd0ceh framer-lux5qc\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBNZWRpdW0=\",\"--framer-font-family\":'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(11, 12, 14, 0.6)\"},children:\"Behance\"})}),className:\"framer-1a7voqd\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"CUSTOM;Aeonik Medium\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q2ihzf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8373 12.9992L13.2153 12.9992L13.2153 4.51388L4.73002 4.51388L4.73002 5.89192L10.8624 5.89192L3.75566 12.9987L4.73048 13.9735L11.8373 6.86674L11.8373 12.9992Z\" fill=\"#0B0C0E\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{href:\"https://www.instagram.com/versare.io/\"},GL7bLe_Dq:{href:\"https://www.instagram.com/versare.io/\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/babarogic\",nodeId:\"wVnwgp8tn\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1jupfnb framer-lux5qc\",\"data-framer-name\":\"4\",name:\"4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aa6ltr\",\"data-styles-preset\":\"xeH5E3xkg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Instagram\"})}),fonts:[\"Inter\"]},GL7bLe_Dq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aa6ltr\",\"data-styles-preset\":\"xeH5E3xkg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Instagram\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBNZWRpdW0=\",\"--framer-font-family\":'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(11, 12, 14, 0.6)\"},children:\"Instagram\"})}),className:\"framer-p0tpja\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"CUSTOM;Aeonik Medium\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4504as\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8373 12.9992L13.2153 12.9992L13.2153 4.51388L4.73002 4.51388L4.73002 5.89192L10.8624 5.89192L3.75566 12.9987L4.73048 13.9735L11.8373 6.86674L11.8373 12.9992Z\" fill=\"#0B0C0E\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"196px\"},GL7bLe_Dq:{width:\"236px\",y:507.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sa1r91-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{ofLqZhEO8:(_getLocalizedValue=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Envie um e-mail\",style:{width:\"100%\"}},GL7bLe_Dq:{ofLqZhEO8:(_getLocalizedValue1=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Entrar em contato\",style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonExternalLink,{height:\"100%\",hF4OstQAV:false,id:\"yOPzHASdG\",layoutId:\"yOPzHASdG\",n3ojvpVI6:\"mailto:ola@versare.design\",ofLqZhEO8:(_getLocalizedValue2=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Entrar em contato por email\",PPM8eZNfR:\"var(--token-29adb988-2fe2-49bb-80da-84bc683ba32b, rgb(26, 1, 81))\",variant:\"ooDs0cGDm\",width:\"100%\"})})})})})]})})})})})]})})})});}})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13sf5po\",\"data-framer-name\":\"hero-container\",name:\"hero-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1hik4\",\"data-framer-name\":\"Hero-content\",name:\"Hero-content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ohyw2\",\"data-framer-name\":\"content-txt\",name:\"content-txt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ggdf8h\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dm04d7\",\"data-framer-name\":\"heading\",name:\"heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86s8hq\",\"data-framer-name\":\"category+txt\",name:\"category+txt\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t9w2np\",\"data-border\":true,\"data-framer-name\":\"category\",name:\"category\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19t6a9i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:580,pixelWidth:580,sizes:\"19px\",src:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg\",srcSet:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg 580w\"}},GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(189),pixelHeight:580,pixelWidth:580,sizes:\"19px\",src:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg\",srcSet:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg 580w\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(221),pixelHeight:580,pixelWidth:580,sizes:\"19px\",src:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg\",srcSet:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg 580w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(226.4),pixelHeight:580,pixelWidth:580,sizes:\"19px\",src:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg\",srcSet:\"https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jtIV64mxLRC1pUm0m6YOBb6Y7I.svg 580w\"},className:\"framer-1it55cl\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Seus parceiros em inova\\xe7\\xe3o digital\"})}),className:\"framer-hzvxfi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:(_getLocalizedValue3=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1eghmkv\",\"data-styles-preset\":\"C5Lz8f3eW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Experi\\xeancias digitais escal\\xe1veis com design e tecnologia\"})})},GL7bLe_Dq:{children:(_getLocalizedValue4=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1eghmkv\",\"data-styles-preset\":\"C5Lz8f3eW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Experi\\xeancias digitais escal\\xe1veis com design e tecnologia\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue5=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1eghmkv\",\"data-styles-preset\":\"C5Lz8f3eW\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Experi\\xeancias digitais escal\\xe1veis com design e tecnologia\"})}),className:\"framer-1sarfev\",\"data-framer-name\":\"Your Strategic Partner for Digital Solutions\",fonts:[\"Inter\"],name:\"Your Strategic Partner for Digital Solutions\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8knn8\",\"data-framer-name\":\"txt+btns\",name:\"txt+btns\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tek5w0\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{y:undefined},GL7bLe_Dq:{y:343.2},Kx9XRHsdd:{y:375.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:380.6,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1g30guu-container\",id:\"1g30guu\",children:[/*#__PURE__*/_jsx(ButtonAction,{height:\"100%\",id:\"GXV0vTaww\",layoutId:\"GXV0vTaww\",MTEDEb6Nf:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Entre em contato\",tyO8KXMmz:tyO8KXMmzwelu7j({overlay:overlay2}),variant:\"WBRaqLyjs\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"}},className:\"framer-16ysd1g\",\"data-framer-portal-id\":\"1g30guu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"jdtZfOPgA\"),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/1cecbc41-3967-4935-8c37-6e750d4251a9/submit\",className:\"framer-uzmpkt\",\"data-framer-portal-id\":\"1g30guu\",children:formState=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;return _jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bboepy\",onTap:onTap1wvko5h({overlay:overlay2}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rdbtoa-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(23, 21, 33, 0.46)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"sfJDMGv3s\",layoutId:\"sfJDMGv3s\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2zr29\",children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-k7i13m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Nome\"})}),className:\"framer-kva0i0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-14dnn3f\",inputName:\"Nome\",placeholder:\"Jo\\xe3o Silva\",required:true,type:\"text\"})]})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-128vmzo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Email\"})}),className:\"framer-11aav9m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-4mxj09\",inputName:\"Email\",placeholder:\"joao@gmail.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-12lkkoz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Site (opcional)\"})}),className:\"framer-atdinm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-v8j4gm\",inputName:\"Site\",placeholder:\"empresa.com.br\",required:false,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-m36g3t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",style:{\"--framer-text-color\":\"rgb(72, 70, 83)\"},children:\"Como podemos te ajudar?\"})}),className:\"framer-125gst8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-78i1qx\",inputName:\"Mensagem\",placeholder:(_getLocalizedValue3=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Escreva sua mensagem aqui\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"calc(90vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"404px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hkq7rg-container\",children:/*#__PURE__*/_jsx(ButtonAction,{height:\"100%\",id:\"rHyClwfJR\",layoutId:\"rHyClwfJR\",MTEDEb6Nf:(_getLocalizedValue4=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Enviar\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"NRkOV55yb\",pending:\"ryPSVxhWO\",success:\"vSGj1qZxa\"},\"WBRaqLyjs\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1im30qb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Versare | Todos os direitos reservados \\xa9 2024\"})}),className:\"framer-lyl0j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]});}})]}),document.querySelector(\"#overlay\"))})})]})})})});}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ughju\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d7rqv3\",\"data-framer-name\":\"text\",name:\"text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:(_getLocalizedValue6=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Design e desenvolvimento de sites, e-commerces, apps e dashboards e sistemas com foco em inova\\xe7\\xe3o e escalabilidade.\"})})},GL7bLe_Dq:{children:(_getLocalizedValue7=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Design e desenvolvimento de sites, e-commerces, apps e dashboards e sistemas com foco em inova\\xe7\\xe3o e escalabilidade.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Design e desenvolvimento de sites, e-commerces, apps e dashboards e sistemas com foco em inova\\xe7\\xe3o e escalabilidade.\"})}),className:\"framer-nxspzy\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130dvwj\",\"data-framer-name\":\"Framer\",name:\"Framer\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kftmyu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1oy6ayo\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 82\"><g transform=\"translate(0 0.925)\" id=\"ss9144886742_1\"><path d=\"M 3.592 1.78 C 3.592 2.76 2.785 3.56 1.796 3.56 C 0.807 3.56 0 2.76 0 1.78 C 0 0.8 0.807 0 1.796 0 C 2.785 0 3.592 0.8 3.592 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 3.56 C 18.236 3.56 19.04 2.763 19.04 1.78 C 19.04 0.797 18.236 0 17.244 0 C 16.252 0 15.448 0.797 15.448 1.78 C 15.448 2.763 16.252 3.56 17.244 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 3.56 C 33.674 3.56 34.478 2.763 34.478 1.78 C 34.478 0.797 33.674 0 32.682 0 C 31.69 0 30.886 0.797 30.886 1.78 C 30.886 2.763 31.69 3.56 32.682 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 1.78 C 49.926 2.76 49.118 3.56 48.13 3.56 C 47.141 3.56 46.334 2.76 46.334 1.78 C 46.334 0.8 47.141 0 48.13 0 C 49.118 0 49.926 0.8 49.926 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 3.56 C 64.559 3.56 65.364 2.763 65.364 1.78 C 65.364 0.797 64.559 0 63.568 0 C 62.576 0 61.772 0.797 61.772 1.78 C 61.772 2.763 62.576 3.56 63.568 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 3.56 C 80.007 3.56 80.812 2.763 80.812 1.78 C 80.812 0.797 80.007 0 79.015 0 C 78.024 0 77.219 0.797 77.219 1.78 C 77.219 2.763 78.024 3.56 79.015 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 3.56 C 95.445 3.56 96.249 2.763 96.249 1.78 C 96.249 0.797 95.445 0 94.453 0 C 93.461 0 92.657 0.797 92.657 1.78 C 92.657 2.763 93.461 3.56 94.453 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 3.56 C 110.893 3.56 111.697 2.763 111.697 1.78 C 111.697 0.797 110.893 0 109.901 0 C 108.909 0 108.105 0.797 108.105 1.78 C 108.105 2.763 108.909 3.56 109.901 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 17.08 C 3.592 18.06 2.785 18.86 1.796 18.86 C 0.807 18.86 0 18.06 0 17.08 C 0 16.1 0.807 15.3 1.796 15.3 C 2.785 15.31 3.592 16.1 3.592 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 18.86 C 18.236 18.86 19.04 18.063 19.04 17.08 C 19.04 16.097 18.236 15.3 17.244 15.3 C 16.252 15.3 15.448 16.097 15.448 17.08 C 15.448 18.063 16.252 18.86 17.244 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 18.86 C 33.674 18.86 34.478 18.063 34.478 17.08 C 34.478 16.097 33.674 15.3 32.682 15.3 C 31.69 15.3 30.886 16.097 30.886 17.08 C 30.886 18.063 31.69 18.86 32.682 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 17.08 C 49.926 18.06 49.118 18.86 48.13 18.86 C 47.141 18.86 46.334 18.06 46.334 17.08 C 46.334 16.1 47.141 15.3 48.13 15.3 C 49.118 15.31 49.926 16.1 49.926 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 18.86 C 64.559 18.86 65.364 18.063 65.364 17.08 C 65.364 16.097 64.559 15.3 63.568 15.3 C 62.576 15.3 61.772 16.097 61.772 17.08 C 61.772 18.063 62.576 18.86 63.568 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 18.86 C 80.007 18.86 80.812 18.063 80.812 17.08 C 80.812 16.097 80.007 15.3 79.015 15.3 C 78.024 15.3 77.219 16.097 77.219 17.08 C 77.219 18.063 78.024 18.86 79.015 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 18.86 C 95.445 18.86 96.249 18.063 96.249 17.08 C 96.249 16.097 95.445 15.3 94.453 15.3 C 93.461 15.3 92.657 16.097 92.657 17.08 C 92.657 18.063 93.461 18.86 94.453 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 18.86 C 110.893 18.86 111.697 18.063 111.697 17.08 C 111.697 16.097 110.893 15.3 109.901 15.3 C 108.909 15.3 108.105 16.097 108.105 17.08 C 108.105 18.063 108.909 18.86 109.901 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 32.39 C 3.592 33.37 2.785 34.17 1.796 34.17 C 0.807 34.17 0 33.37 0 32.39 C 0 31.41 0.807 30.61 1.796 30.61 C 2.785 30.61 3.592 31.41 3.592 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 34.17 C 18.236 34.17 19.04 33.373 19.04 32.39 C 19.04 31.407 18.236 30.61 17.244 30.61 C 16.252 30.61 15.448 31.407 15.448 32.39 C 15.448 33.373 16.252 34.17 17.244 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 34.17 C 33.674 34.17 34.478 33.373 34.478 32.39 C 34.478 31.407 33.674 30.61 32.682 30.61 C 31.69 30.61 30.886 31.407 30.886 32.39 C 30.886 33.373 31.69 34.17 32.682 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 32.39 C 49.926 33.37 49.118 34.17 48.13 34.17 C 47.141 34.17 46.334 33.37 46.334 32.39 C 46.334 31.41 47.141 30.61 48.13 30.61 C 49.118 30.61 49.926 31.41 49.926 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 34.17 C 64.559 34.17 65.364 33.373 65.364 32.39 C 65.364 31.407 64.559 30.61 63.568 30.61 C 62.576 30.61 61.772 31.407 61.772 32.39 C 61.772 33.373 62.576 34.17 63.568 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 34.17 C 80.007 34.17 80.812 33.373 80.812 32.39 C 80.812 31.407 80.007 30.61 79.015 30.61 C 78.024 30.61 77.219 31.407 77.219 32.39 C 77.219 33.373 78.024 34.17 79.015 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 34.17 C 95.445 34.17 96.249 33.373 96.249 32.39 C 96.249 31.407 95.445 30.61 94.453 30.61 C 93.461 30.61 92.657 31.407 92.657 32.39 C 92.657 33.373 93.461 34.17 94.453 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 34.17 C 110.893 34.17 111.697 33.373 111.697 32.39 C 111.697 31.407 110.893 30.61 109.901 30.61 C 108.909 30.61 108.105 31.407 108.105 32.39 C 108.105 33.373 108.909 34.17 109.901 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 47.69 C 3.592 48.67 2.785 49.47 1.796 49.47 C 0.807 49.47 0 48.67 0 47.69 C 0 46.71 0.807 45.91 1.796 45.91 C 2.785 45.92 3.592 46.71 3.592 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 49.47 C 18.236 49.47 19.04 48.673 19.04 47.69 C 19.04 46.707 18.236 45.91 17.244 45.91 C 16.252 45.91 15.448 46.707 15.448 47.69 C 15.448 48.673 16.252 49.47 17.244 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 49.47 C 33.674 49.47 34.478 48.673 34.478 47.69 C 34.478 46.707 33.674 45.91 32.682 45.91 C 31.69 45.91 30.886 46.707 30.886 47.69 C 30.886 48.673 31.69 49.47 32.682 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 47.69 C 49.926 48.67 49.118 49.47 48.13 49.47 C 47.141 49.47 46.334 48.67 46.334 47.69 C 46.334 46.71 47.141 45.91 48.13 45.91 C 49.118 45.92 49.926 46.71 49.926 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 49.47 C 64.559 49.47 65.364 48.673 65.364 47.69 C 65.364 46.707 64.559 45.91 63.568 45.91 C 62.576 45.91 61.772 46.707 61.772 47.69 C 61.772 48.673 62.576 49.47 63.568 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 49.47 C 80.007 49.47 80.812 48.673 80.812 47.69 C 80.812 46.707 80.007 45.91 79.015 45.91 C 78.024 45.91 77.219 46.707 77.219 47.69 C 77.219 48.673 78.024 49.47 79.015 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 49.47 C 95.445 49.47 96.249 48.673 96.249 47.69 C 96.249 46.707 95.445 45.91 94.453 45.91 C 93.461 45.91 92.657 46.707 92.657 47.69 C 92.657 48.673 93.461 49.47 94.453 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 49.47 C 110.893 49.47 111.697 48.673 111.697 47.69 C 111.697 46.707 110.893 45.91 109.901 45.91 C 108.909 45.91 108.105 46.707 108.105 47.69 C 108.105 48.673 108.909 49.47 109.901 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 63 C 3.592 63.98 2.785 64.78 1.796 64.78 C 0.807 64.78 0 63.98 0 63 C 0 62.02 0.807 61.22 1.796 61.22 C 2.785 61.22 3.592 62.02 3.592 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 64.78 C 18.236 64.78 19.04 63.983 19.04 63 C 19.04 62.017 18.236 61.22 17.244 61.22 C 16.252 61.22 15.448 62.017 15.448 63 C 15.448 63.983 16.252 64.78 17.244 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 64.78 C 33.674 64.78 34.478 63.983 34.478 63 C 34.478 62.017 33.674 61.22 32.682 61.22 C 31.69 61.22 30.886 62.017 30.886 63 C 30.886 63.983 31.69 64.78 32.682 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 63 C 49.926 63.98 49.118 64.78 48.13 64.78 C 47.141 64.78 46.334 63.98 46.334 63 C 46.334 62.02 47.141 61.22 48.13 61.22 C 49.118 61.22 49.926 62.02 49.926 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 64.78 C 64.559 64.78 65.364 63.983 65.364 63 C 65.364 62.017 64.559 61.22 63.568 61.22 C 62.576 61.22 61.772 62.017 61.772 63 C 61.772 63.983 62.576 64.78 63.568 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 64.78 C 80.007 64.78 80.812 63.983 80.812 63 C 80.812 62.017 80.007 61.22 79.015 61.22 C 78.024 61.22 77.219 62.017 77.219 63 C 77.219 63.983 78.024 64.78 79.015 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 64.78 C 95.445 64.78 96.249 63.983 96.249 63 C 96.249 62.017 95.445 61.22 94.453 61.22 C 93.461 61.22 92.657 62.017 92.657 63 C 92.657 63.983 93.461 64.78 94.453 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 64.78 C 110.893 64.78 111.697 63.983 111.697 63 C 111.697 62.017 110.893 61.22 109.901 61.22 C 108.909 61.22 108.105 62.017 108.105 63 C 108.105 63.983 108.909 64.78 109.901 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 78.31 C 3.592 79.29 2.785 80.09 1.796 80.09 C 0.807 80.09 0 79.29 0 78.31 C 0 77.33 0.807 76.53 1.796 76.53 C 2.785 76.53 3.592 77.32 3.592 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 80.09 C 18.236 80.09 19.04 79.293 19.04 78.31 C 19.04 77.327 18.236 76.53 17.244 76.53 C 16.252 76.53 15.448 77.327 15.448 78.31 C 15.448 79.293 16.252 80.09 17.244 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 80.09 C 33.674 80.09 34.478 79.293 34.478 78.31 C 34.478 77.327 33.674 76.53 32.682 76.53 C 31.69 76.53 30.886 77.327 30.886 78.31 C 30.886 79.293 31.69 80.09 32.682 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 78.31 C 49.926 79.29 49.118 80.09 48.13 80.09 C 47.141 80.09 46.334 79.29 46.334 78.31 C 46.334 77.33 47.141 76.53 48.13 76.53 C 49.118 76.53 49.926 77.32 49.926 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 80.09 C 64.559 80.09 65.364 79.293 65.364 78.31 C 65.364 77.327 64.559 76.53 63.568 76.53 C 62.576 76.53 61.772 77.327 61.772 78.31 C 61.772 79.293 62.576 80.09 63.568 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 80.09 C 80.007 80.09 80.812 79.293 80.812 78.31 C 80.812 77.327 80.007 76.53 79.015 76.53 C 78.024 76.53 77.219 77.327 77.219 78.31 C 77.219 79.293 78.024 80.09 79.015 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 80.09 C 95.445 80.09 96.249 79.293 96.249 78.31 C 96.249 77.327 95.445 76.53 94.453 76.53 C 93.461 76.53 92.657 77.327 92.657 78.31 C 92.657 79.293 93.461 80.09 94.453 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 80.09 C 110.893 80.09 111.697 79.293 111.697 78.31 C 111.697 77.327 110.893 76.53 109.901 76.53 C 108.909 76.53 108.105 77.327 108.105 78.31 C 108.105 79.293 108.909 80.09 109.901 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path></g></svg>',svgContentId:9144886742,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rv91de\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 81\"><g id=\"ss11849242235_1\"><path d=\"M 3.592 1.78 C 3.592 2.76 2.785 3.56 1.796 3.56 C 0.807 3.56 0 2.76 0 1.78 C 0 0.8 0.807 0 1.796 0 C 2.785 0 3.592 0.8 3.592 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 3.56 C 18.236 3.56 19.04 2.763 19.04 1.78 C 19.04 0.797 18.236 0 17.244 0 C 16.252 0 15.448 0.797 15.448 1.78 C 15.448 2.763 16.252 3.56 17.244 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 3.56 C 33.674 3.56 34.478 2.763 34.478 1.78 C 34.478 0.797 33.674 0 32.682 0 C 31.69 0 30.886 0.797 30.886 1.78 C 30.886 2.763 31.69 3.56 32.682 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 1.78 C 49.926 2.76 49.118 3.56 48.13 3.56 C 47.141 3.56 46.334 2.76 46.334 1.78 C 46.334 0.8 47.141 0 48.13 0 C 49.118 0 49.926 0.8 49.926 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 3.56 C 64.559 3.56 65.364 2.763 65.364 1.78 C 65.364 0.797 64.559 0 63.568 0 C 62.576 0 61.772 0.797 61.772 1.78 C 61.772 2.763 62.576 3.56 63.568 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 3.56 C 80.007 3.56 80.812 2.763 80.812 1.78 C 80.812 0.797 80.007 0 79.015 0 C 78.024 0 77.219 0.797 77.219 1.78 C 77.219 2.763 78.024 3.56 79.015 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 3.56 C 95.445 3.56 96.249 2.763 96.249 1.78 C 96.249 0.797 95.445 0 94.453 0 C 93.461 0 92.657 0.797 92.657 1.78 C 92.657 2.763 93.461 3.56 94.453 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 3.56 C 110.893 3.56 111.697 2.763 111.697 1.78 C 111.697 0.797 110.893 0 109.901 0 C 108.909 0 108.105 0.797 108.105 1.78 C 108.105 2.763 108.909 3.56 109.901 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 17.08 C 3.592 18.06 2.785 18.86 1.796 18.86 C 0.807 18.86 0 18.06 0 17.08 C 0 16.1 0.807 15.3 1.796 15.3 C 2.785 15.31 3.592 16.1 3.592 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 18.86 C 18.236 18.86 19.04 18.063 19.04 17.08 C 19.04 16.097 18.236 15.3 17.244 15.3 C 16.252 15.3 15.448 16.097 15.448 17.08 C 15.448 18.063 16.252 18.86 17.244 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 18.86 C 33.674 18.86 34.478 18.063 34.478 17.08 C 34.478 16.097 33.674 15.3 32.682 15.3 C 31.69 15.3 30.886 16.097 30.886 17.08 C 30.886 18.063 31.69 18.86 32.682 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 17.08 C 49.926 18.06 49.118 18.86 48.13 18.86 C 47.141 18.86 46.334 18.06 46.334 17.08 C 46.334 16.1 47.141 15.3 48.13 15.3 C 49.118 15.31 49.926 16.1 49.926 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 18.86 C 64.559 18.86 65.364 18.063 65.364 17.08 C 65.364 16.097 64.559 15.3 63.568 15.3 C 62.576 15.3 61.772 16.097 61.772 17.08 C 61.772 18.063 62.576 18.86 63.568 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 18.86 C 80.007 18.86 80.812 18.063 80.812 17.08 C 80.812 16.097 80.007 15.3 79.015 15.3 C 78.024 15.3 77.219 16.097 77.219 17.08 C 77.219 18.063 78.024 18.86 79.015 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 18.86 C 95.445 18.86 96.249 18.063 96.249 17.08 C 96.249 16.097 95.445 15.3 94.453 15.3 C 93.461 15.3 92.657 16.097 92.657 17.08 C 92.657 18.063 93.461 18.86 94.453 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 18.86 C 110.893 18.86 111.697 18.063 111.697 17.08 C 111.697 16.097 110.893 15.3 109.901 15.3 C 108.909 15.3 108.105 16.097 108.105 17.08 C 108.105 18.063 108.909 18.86 109.901 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 32.39 C 3.592 33.37 2.785 34.17 1.796 34.17 C 0.807 34.17 0 33.37 0 32.39 C 0 31.41 0.807 30.61 1.796 30.61 C 2.785 30.61 3.592 31.41 3.592 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 34.17 C 18.236 34.17 19.04 33.373 19.04 32.39 C 19.04 31.407 18.236 30.61 17.244 30.61 C 16.252 30.61 15.448 31.407 15.448 32.39 C 15.448 33.373 16.252 34.17 17.244 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 34.17 C 33.674 34.17 34.478 33.373 34.478 32.39 C 34.478 31.407 33.674 30.61 32.682 30.61 C 31.69 30.61 30.886 31.407 30.886 32.39 C 30.886 33.373 31.69 34.17 32.682 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 32.39 C 49.926 33.37 49.118 34.17 48.13 34.17 C 47.141 34.17 46.334 33.37 46.334 32.39 C 46.334 31.41 47.141 30.61 48.13 30.61 C 49.118 30.61 49.926 31.41 49.926 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 34.17 C 64.559 34.17 65.364 33.373 65.364 32.39 C 65.364 31.407 64.559 30.61 63.568 30.61 C 62.576 30.61 61.772 31.407 61.772 32.39 C 61.772 33.373 62.576 34.17 63.568 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 34.17 C 80.007 34.17 80.812 33.373 80.812 32.39 C 80.812 31.407 80.007 30.61 79.015 30.61 C 78.024 30.61 77.219 31.407 77.219 32.39 C 77.219 33.373 78.024 34.17 79.015 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 34.17 C 95.445 34.17 96.249 33.373 96.249 32.39 C 96.249 31.407 95.445 30.61 94.453 30.61 C 93.461 30.61 92.657 31.407 92.657 32.39 C 92.657 33.373 93.461 34.17 94.453 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 34.17 C 110.893 34.17 111.697 33.373 111.697 32.39 C 111.697 31.407 110.893 30.61 109.901 30.61 C 108.909 30.61 108.105 31.407 108.105 32.39 C 108.105 33.373 108.909 34.17 109.901 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 47.69 C 3.592 48.67 2.785 49.47 1.796 49.47 C 0.807 49.47 0 48.67 0 47.69 C 0 46.71 0.807 45.91 1.796 45.91 C 2.785 45.92 3.592 46.71 3.592 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 49.47 C 18.236 49.47 19.04 48.673 19.04 47.69 C 19.04 46.707 18.236 45.91 17.244 45.91 C 16.252 45.91 15.448 46.707 15.448 47.69 C 15.448 48.673 16.252 49.47 17.244 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 49.47 C 33.674 49.47 34.478 48.673 34.478 47.69 C 34.478 46.707 33.674 45.91 32.682 45.91 C 31.69 45.91 30.886 46.707 30.886 47.69 C 30.886 48.673 31.69 49.47 32.682 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 47.69 C 49.926 48.67 49.118 49.47 48.13 49.47 C 47.141 49.47 46.334 48.67 46.334 47.69 C 46.334 46.71 47.141 45.91 48.13 45.91 C 49.118 45.92 49.926 46.71 49.926 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 49.47 C 64.559 49.47 65.364 48.673 65.364 47.69 C 65.364 46.707 64.559 45.91 63.568 45.91 C 62.576 45.91 61.772 46.707 61.772 47.69 C 61.772 48.673 62.576 49.47 63.568 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 49.47 C 80.007 49.47 80.812 48.673 80.812 47.69 C 80.812 46.707 80.007 45.91 79.015 45.91 C 78.024 45.91 77.219 46.707 77.219 47.69 C 77.219 48.673 78.024 49.47 79.015 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 49.47 C 95.445 49.47 96.249 48.673 96.249 47.69 C 96.249 46.707 95.445 45.91 94.453 45.91 C 93.461 45.91 92.657 46.707 92.657 47.69 C 92.657 48.673 93.461 49.47 94.453 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 49.47 C 110.893 49.47 111.697 48.673 111.697 47.69 C 111.697 46.707 110.893 45.91 109.901 45.91 C 108.909 45.91 108.105 46.707 108.105 47.69 C 108.105 48.673 108.909 49.47 109.901 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 63 C 3.592 63.98 2.785 64.78 1.796 64.78 C 0.807 64.78 0 63.98 0 63 C 0 62.02 0.807 61.22 1.796 61.22 C 2.785 61.22 3.592 62.02 3.592 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 64.78 C 18.236 64.78 19.04 63.983 19.04 63 C 19.04 62.017 18.236 61.22 17.244 61.22 C 16.252 61.22 15.448 62.017 15.448 63 C 15.448 63.983 16.252 64.78 17.244 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 64.78 C 33.674 64.78 34.478 63.983 34.478 63 C 34.478 62.017 33.674 61.22 32.682 61.22 C 31.69 61.22 30.886 62.017 30.886 63 C 30.886 63.983 31.69 64.78 32.682 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 63 C 49.926 63.98 49.118 64.78 48.13 64.78 C 47.141 64.78 46.334 63.98 46.334 63 C 46.334 62.02 47.141 61.22 48.13 61.22 C 49.118 61.22 49.926 62.02 49.926 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 64.78 C 64.559 64.78 65.364 63.983 65.364 63 C 65.364 62.017 64.559 61.22 63.568 61.22 C 62.576 61.22 61.772 62.017 61.772 63 C 61.772 63.983 62.576 64.78 63.568 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 64.78 C 80.007 64.78 80.812 63.983 80.812 63 C 80.812 62.017 80.007 61.22 79.015 61.22 C 78.024 61.22 77.219 62.017 77.219 63 C 77.219 63.983 78.024 64.78 79.015 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 64.78 C 95.445 64.78 96.249 63.983 96.249 63 C 96.249 62.017 95.445 61.22 94.453 61.22 C 93.461 61.22 92.657 62.017 92.657 63 C 92.657 63.983 93.461 64.78 94.453 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 64.78 C 110.893 64.78 111.697 63.983 111.697 63 C 111.697 62.017 110.893 61.22 109.901 61.22 C 108.909 61.22 108.105 62.017 108.105 63 C 108.105 63.983 108.909 64.78 109.901 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 78.31 C 3.592 79.29 2.785 80.09 1.796 80.09 C 0.807 80.09 0 79.29 0 78.31 C 0 77.33 0.807 76.53 1.796 76.53 C 2.785 76.53 3.592 77.32 3.592 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 80.09 C 18.236 80.09 19.04 79.293 19.04 78.31 C 19.04 77.327 18.236 76.53 17.244 76.53 C 16.252 76.53 15.448 77.327 15.448 78.31 C 15.448 79.293 16.252 80.09 17.244 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 80.09 C 33.674 80.09 34.478 79.293 34.478 78.31 C 34.478 77.327 33.674 76.53 32.682 76.53 C 31.69 76.53 30.886 77.327 30.886 78.31 C 30.886 79.293 31.69 80.09 32.682 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 78.31 C 49.926 79.29 49.118 80.09 48.13 80.09 C 47.141 80.09 46.334 79.29 46.334 78.31 C 46.334 77.33 47.141 76.53 48.13 76.53 C 49.118 76.53 49.926 77.32 49.926 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 80.09 C 64.559 80.09 65.364 79.293 65.364 78.31 C 65.364 77.327 64.559 76.53 63.568 76.53 C 62.576 76.53 61.772 77.327 61.772 78.31 C 61.772 79.293 62.576 80.09 63.568 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 80.09 C 80.007 80.09 80.812 79.293 80.812 78.31 C 80.812 77.327 80.007 76.53 79.015 76.53 C 78.024 76.53 77.219 77.327 77.219 78.31 C 77.219 79.293 78.024 80.09 79.015 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 80.09 C 95.445 80.09 96.249 79.293 96.249 78.31 C 96.249 77.327 95.445 76.53 94.453 76.53 C 93.461 76.53 92.657 77.327 92.657 78.31 C 92.657 79.293 93.461 80.09 94.453 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 80.09 C 110.893 80.09 111.697 79.293 111.697 78.31 C 111.697 77.327 110.893 76.53 109.901 76.53 C 108.909 76.53 108.105 77.327 108.105 78.31 C 108.105 79.293 108.909 80.09 109.901 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path></g></svg>',svgContentId:11849242235,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qlt7pl hidden-1qd0ceh\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 81\"><g id=\"ss11849242235_1\"><path d=\"M 3.592 1.78 C 3.592 2.76 2.785 3.56 1.796 3.56 C 0.807 3.56 0 2.76 0 1.78 C 0 0.8 0.807 0 1.796 0 C 2.785 0 3.592 0.8 3.592 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 3.56 C 18.236 3.56 19.04 2.763 19.04 1.78 C 19.04 0.797 18.236 0 17.244 0 C 16.252 0 15.448 0.797 15.448 1.78 C 15.448 2.763 16.252 3.56 17.244 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 3.56 C 33.674 3.56 34.478 2.763 34.478 1.78 C 34.478 0.797 33.674 0 32.682 0 C 31.69 0 30.886 0.797 30.886 1.78 C 30.886 2.763 31.69 3.56 32.682 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 1.78 C 49.926 2.76 49.118 3.56 48.13 3.56 C 47.141 3.56 46.334 2.76 46.334 1.78 C 46.334 0.8 47.141 0 48.13 0 C 49.118 0 49.926 0.8 49.926 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 3.56 C 64.559 3.56 65.364 2.763 65.364 1.78 C 65.364 0.797 64.559 0 63.568 0 C 62.576 0 61.772 0.797 61.772 1.78 C 61.772 2.763 62.576 3.56 63.568 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 3.56 C 80.007 3.56 80.812 2.763 80.812 1.78 C 80.812 0.797 80.007 0 79.015 0 C 78.024 0 77.219 0.797 77.219 1.78 C 77.219 2.763 78.024 3.56 79.015 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 3.56 C 95.445 3.56 96.249 2.763 96.249 1.78 C 96.249 0.797 95.445 0 94.453 0 C 93.461 0 92.657 0.797 92.657 1.78 C 92.657 2.763 93.461 3.56 94.453 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 3.56 C 110.893 3.56 111.697 2.763 111.697 1.78 C 111.697 0.797 110.893 0 109.901 0 C 108.909 0 108.105 0.797 108.105 1.78 C 108.105 2.763 108.909 3.56 109.901 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 17.08 C 3.592 18.06 2.785 18.86 1.796 18.86 C 0.807 18.86 0 18.06 0 17.08 C 0 16.1 0.807 15.3 1.796 15.3 C 2.785 15.31 3.592 16.1 3.592 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 18.86 C 18.236 18.86 19.04 18.063 19.04 17.08 C 19.04 16.097 18.236 15.3 17.244 15.3 C 16.252 15.3 15.448 16.097 15.448 17.08 C 15.448 18.063 16.252 18.86 17.244 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 18.86 C 33.674 18.86 34.478 18.063 34.478 17.08 C 34.478 16.097 33.674 15.3 32.682 15.3 C 31.69 15.3 30.886 16.097 30.886 17.08 C 30.886 18.063 31.69 18.86 32.682 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 17.08 C 49.926 18.06 49.118 18.86 48.13 18.86 C 47.141 18.86 46.334 18.06 46.334 17.08 C 46.334 16.1 47.141 15.3 48.13 15.3 C 49.118 15.31 49.926 16.1 49.926 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 18.86 C 64.559 18.86 65.364 18.063 65.364 17.08 C 65.364 16.097 64.559 15.3 63.568 15.3 C 62.576 15.3 61.772 16.097 61.772 17.08 C 61.772 18.063 62.576 18.86 63.568 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 18.86 C 80.007 18.86 80.812 18.063 80.812 17.08 C 80.812 16.097 80.007 15.3 79.015 15.3 C 78.024 15.3 77.219 16.097 77.219 17.08 C 77.219 18.063 78.024 18.86 79.015 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 18.86 C 95.445 18.86 96.249 18.063 96.249 17.08 C 96.249 16.097 95.445 15.3 94.453 15.3 C 93.461 15.3 92.657 16.097 92.657 17.08 C 92.657 18.063 93.461 18.86 94.453 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 18.86 C 110.893 18.86 111.697 18.063 111.697 17.08 C 111.697 16.097 110.893 15.3 109.901 15.3 C 108.909 15.3 108.105 16.097 108.105 17.08 C 108.105 18.063 108.909 18.86 109.901 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 32.39 C 3.592 33.37 2.785 34.17 1.796 34.17 C 0.807 34.17 0 33.37 0 32.39 C 0 31.41 0.807 30.61 1.796 30.61 C 2.785 30.61 3.592 31.41 3.592 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 34.17 C 18.236 34.17 19.04 33.373 19.04 32.39 C 19.04 31.407 18.236 30.61 17.244 30.61 C 16.252 30.61 15.448 31.407 15.448 32.39 C 15.448 33.373 16.252 34.17 17.244 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 34.17 C 33.674 34.17 34.478 33.373 34.478 32.39 C 34.478 31.407 33.674 30.61 32.682 30.61 C 31.69 30.61 30.886 31.407 30.886 32.39 C 30.886 33.373 31.69 34.17 32.682 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 32.39 C 49.926 33.37 49.118 34.17 48.13 34.17 C 47.141 34.17 46.334 33.37 46.334 32.39 C 46.334 31.41 47.141 30.61 48.13 30.61 C 49.118 30.61 49.926 31.41 49.926 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 34.17 C 64.559 34.17 65.364 33.373 65.364 32.39 C 65.364 31.407 64.559 30.61 63.568 30.61 C 62.576 30.61 61.772 31.407 61.772 32.39 C 61.772 33.373 62.576 34.17 63.568 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 34.17 C 80.007 34.17 80.812 33.373 80.812 32.39 C 80.812 31.407 80.007 30.61 79.015 30.61 C 78.024 30.61 77.219 31.407 77.219 32.39 C 77.219 33.373 78.024 34.17 79.015 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 34.17 C 95.445 34.17 96.249 33.373 96.249 32.39 C 96.249 31.407 95.445 30.61 94.453 30.61 C 93.461 30.61 92.657 31.407 92.657 32.39 C 92.657 33.373 93.461 34.17 94.453 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 34.17 C 110.893 34.17 111.697 33.373 111.697 32.39 C 111.697 31.407 110.893 30.61 109.901 30.61 C 108.909 30.61 108.105 31.407 108.105 32.39 C 108.105 33.373 108.909 34.17 109.901 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 47.69 C 3.592 48.67 2.785 49.47 1.796 49.47 C 0.807 49.47 0 48.67 0 47.69 C 0 46.71 0.807 45.91 1.796 45.91 C 2.785 45.92 3.592 46.71 3.592 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 49.47 C 18.236 49.47 19.04 48.673 19.04 47.69 C 19.04 46.707 18.236 45.91 17.244 45.91 C 16.252 45.91 15.448 46.707 15.448 47.69 C 15.448 48.673 16.252 49.47 17.244 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 49.47 C 33.674 49.47 34.478 48.673 34.478 47.69 C 34.478 46.707 33.674 45.91 32.682 45.91 C 31.69 45.91 30.886 46.707 30.886 47.69 C 30.886 48.673 31.69 49.47 32.682 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 47.69 C 49.926 48.67 49.118 49.47 48.13 49.47 C 47.141 49.47 46.334 48.67 46.334 47.69 C 46.334 46.71 47.141 45.91 48.13 45.91 C 49.118 45.92 49.926 46.71 49.926 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 49.47 C 64.559 49.47 65.364 48.673 65.364 47.69 C 65.364 46.707 64.559 45.91 63.568 45.91 C 62.576 45.91 61.772 46.707 61.772 47.69 C 61.772 48.673 62.576 49.47 63.568 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 49.47 C 80.007 49.47 80.812 48.673 80.812 47.69 C 80.812 46.707 80.007 45.91 79.015 45.91 C 78.024 45.91 77.219 46.707 77.219 47.69 C 77.219 48.673 78.024 49.47 79.015 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 49.47 C 95.445 49.47 96.249 48.673 96.249 47.69 C 96.249 46.707 95.445 45.91 94.453 45.91 C 93.461 45.91 92.657 46.707 92.657 47.69 C 92.657 48.673 93.461 49.47 94.453 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 49.47 C 110.893 49.47 111.697 48.673 111.697 47.69 C 111.697 46.707 110.893 45.91 109.901 45.91 C 108.909 45.91 108.105 46.707 108.105 47.69 C 108.105 48.673 108.909 49.47 109.901 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 63 C 3.592 63.98 2.785 64.78 1.796 64.78 C 0.807 64.78 0 63.98 0 63 C 0 62.02 0.807 61.22 1.796 61.22 C 2.785 61.22 3.592 62.02 3.592 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 64.78 C 18.236 64.78 19.04 63.983 19.04 63 C 19.04 62.017 18.236 61.22 17.244 61.22 C 16.252 61.22 15.448 62.017 15.448 63 C 15.448 63.983 16.252 64.78 17.244 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 64.78 C 33.674 64.78 34.478 63.983 34.478 63 C 34.478 62.017 33.674 61.22 32.682 61.22 C 31.69 61.22 30.886 62.017 30.886 63 C 30.886 63.983 31.69 64.78 32.682 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 63 C 49.926 63.98 49.118 64.78 48.13 64.78 C 47.141 64.78 46.334 63.98 46.334 63 C 46.334 62.02 47.141 61.22 48.13 61.22 C 49.118 61.22 49.926 62.02 49.926 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 64.78 C 64.559 64.78 65.364 63.983 65.364 63 C 65.364 62.017 64.559 61.22 63.568 61.22 C 62.576 61.22 61.772 62.017 61.772 63 C 61.772 63.983 62.576 64.78 63.568 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 64.78 C 80.007 64.78 80.812 63.983 80.812 63 C 80.812 62.017 80.007 61.22 79.015 61.22 C 78.024 61.22 77.219 62.017 77.219 63 C 77.219 63.983 78.024 64.78 79.015 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 64.78 C 95.445 64.78 96.249 63.983 96.249 63 C 96.249 62.017 95.445 61.22 94.453 61.22 C 93.461 61.22 92.657 62.017 92.657 63 C 92.657 63.983 93.461 64.78 94.453 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 64.78 C 110.893 64.78 111.697 63.983 111.697 63 C 111.697 62.017 110.893 61.22 109.901 61.22 C 108.909 61.22 108.105 62.017 108.105 63 C 108.105 63.983 108.909 64.78 109.901 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 78.31 C 3.592 79.29 2.785 80.09 1.796 80.09 C 0.807 80.09 0 79.29 0 78.31 C 0 77.33 0.807 76.53 1.796 76.53 C 2.785 76.53 3.592 77.32 3.592 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 80.09 C 18.236 80.09 19.04 79.293 19.04 78.31 C 19.04 77.327 18.236 76.53 17.244 76.53 C 16.252 76.53 15.448 77.327 15.448 78.31 C 15.448 79.293 16.252 80.09 17.244 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 80.09 C 33.674 80.09 34.478 79.293 34.478 78.31 C 34.478 77.327 33.674 76.53 32.682 76.53 C 31.69 76.53 30.886 77.327 30.886 78.31 C 30.886 79.293 31.69 80.09 32.682 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 78.31 C 49.926 79.29 49.118 80.09 48.13 80.09 C 47.141 80.09 46.334 79.29 46.334 78.31 C 46.334 77.33 47.141 76.53 48.13 76.53 C 49.118 76.53 49.926 77.32 49.926 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 80.09 C 64.559 80.09 65.364 79.293 65.364 78.31 C 65.364 77.327 64.559 76.53 63.568 76.53 C 62.576 76.53 61.772 77.327 61.772 78.31 C 61.772 79.293 62.576 80.09 63.568 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 80.09 C 80.007 80.09 80.812 79.293 80.812 78.31 C 80.812 77.327 80.007 76.53 79.015 76.53 C 78.024 76.53 77.219 77.327 77.219 78.31 C 77.219 79.293 78.024 80.09 79.015 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 80.09 C 95.445 80.09 96.249 79.293 96.249 78.31 C 96.249 77.327 95.445 76.53 94.453 76.53 C 93.461 76.53 92.657 77.327 92.657 78.31 C 92.657 79.293 93.461 80.09 94.453 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 80.09 C 110.893 80.09 111.697 79.293 111.697 78.31 C 111.697 77.327 110.893 76.53 109.901 76.53 C 108.909 76.53 108.105 77.327 108.105 78.31 C 108.105 79.293 108.909 80.09 109.901 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path></g></svg>',svgContentId:11849242235,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1aa1451 hidden-1qd0ceh\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 81\"><g id=\"ss11849242235_1\"><path d=\"M 3.592 1.78 C 3.592 2.76 2.785 3.56 1.796 3.56 C 0.807 3.56 0 2.76 0 1.78 C 0 0.8 0.807 0 1.796 0 C 2.785 0 3.592 0.8 3.592 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 3.56 C 18.236 3.56 19.04 2.763 19.04 1.78 C 19.04 0.797 18.236 0 17.244 0 C 16.252 0 15.448 0.797 15.448 1.78 C 15.448 2.763 16.252 3.56 17.244 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 3.56 C 33.674 3.56 34.478 2.763 34.478 1.78 C 34.478 0.797 33.674 0 32.682 0 C 31.69 0 30.886 0.797 30.886 1.78 C 30.886 2.763 31.69 3.56 32.682 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 1.78 C 49.926 2.76 49.118 3.56 48.13 3.56 C 47.141 3.56 46.334 2.76 46.334 1.78 C 46.334 0.8 47.141 0 48.13 0 C 49.118 0 49.926 0.8 49.926 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 3.56 C 64.559 3.56 65.364 2.763 65.364 1.78 C 65.364 0.797 64.559 0 63.568 0 C 62.576 0 61.772 0.797 61.772 1.78 C 61.772 2.763 62.576 3.56 63.568 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 3.56 C 80.007 3.56 80.812 2.763 80.812 1.78 C 80.812 0.797 80.007 0 79.015 0 C 78.024 0 77.219 0.797 77.219 1.78 C 77.219 2.763 78.024 3.56 79.015 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 3.56 C 95.445 3.56 96.249 2.763 96.249 1.78 C 96.249 0.797 95.445 0 94.453 0 C 93.461 0 92.657 0.797 92.657 1.78 C 92.657 2.763 93.461 3.56 94.453 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 3.56 C 110.893 3.56 111.697 2.763 111.697 1.78 C 111.697 0.797 110.893 0 109.901 0 C 108.909 0 108.105 0.797 108.105 1.78 C 108.105 2.763 108.909 3.56 109.901 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 17.08 C 3.592 18.06 2.785 18.86 1.796 18.86 C 0.807 18.86 0 18.06 0 17.08 C 0 16.1 0.807 15.3 1.796 15.3 C 2.785 15.31 3.592 16.1 3.592 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 18.86 C 18.236 18.86 19.04 18.063 19.04 17.08 C 19.04 16.097 18.236 15.3 17.244 15.3 C 16.252 15.3 15.448 16.097 15.448 17.08 C 15.448 18.063 16.252 18.86 17.244 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 18.86 C 33.674 18.86 34.478 18.063 34.478 17.08 C 34.478 16.097 33.674 15.3 32.682 15.3 C 31.69 15.3 30.886 16.097 30.886 17.08 C 30.886 18.063 31.69 18.86 32.682 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 17.08 C 49.926 18.06 49.118 18.86 48.13 18.86 C 47.141 18.86 46.334 18.06 46.334 17.08 C 46.334 16.1 47.141 15.3 48.13 15.3 C 49.118 15.31 49.926 16.1 49.926 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 18.86 C 64.559 18.86 65.364 18.063 65.364 17.08 C 65.364 16.097 64.559 15.3 63.568 15.3 C 62.576 15.3 61.772 16.097 61.772 17.08 C 61.772 18.063 62.576 18.86 63.568 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 18.86 C 80.007 18.86 80.812 18.063 80.812 17.08 C 80.812 16.097 80.007 15.3 79.015 15.3 C 78.024 15.3 77.219 16.097 77.219 17.08 C 77.219 18.063 78.024 18.86 79.015 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 18.86 C 95.445 18.86 96.249 18.063 96.249 17.08 C 96.249 16.097 95.445 15.3 94.453 15.3 C 93.461 15.3 92.657 16.097 92.657 17.08 C 92.657 18.063 93.461 18.86 94.453 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 18.86 C 110.893 18.86 111.697 18.063 111.697 17.08 C 111.697 16.097 110.893 15.3 109.901 15.3 C 108.909 15.3 108.105 16.097 108.105 17.08 C 108.105 18.063 108.909 18.86 109.901 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 32.39 C 3.592 33.37 2.785 34.17 1.796 34.17 C 0.807 34.17 0 33.37 0 32.39 C 0 31.41 0.807 30.61 1.796 30.61 C 2.785 30.61 3.592 31.41 3.592 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 34.17 C 18.236 34.17 19.04 33.373 19.04 32.39 C 19.04 31.407 18.236 30.61 17.244 30.61 C 16.252 30.61 15.448 31.407 15.448 32.39 C 15.448 33.373 16.252 34.17 17.244 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 34.17 C 33.674 34.17 34.478 33.373 34.478 32.39 C 34.478 31.407 33.674 30.61 32.682 30.61 C 31.69 30.61 30.886 31.407 30.886 32.39 C 30.886 33.373 31.69 34.17 32.682 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 32.39 C 49.926 33.37 49.118 34.17 48.13 34.17 C 47.141 34.17 46.334 33.37 46.334 32.39 C 46.334 31.41 47.141 30.61 48.13 30.61 C 49.118 30.61 49.926 31.41 49.926 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 34.17 C 64.559 34.17 65.364 33.373 65.364 32.39 C 65.364 31.407 64.559 30.61 63.568 30.61 C 62.576 30.61 61.772 31.407 61.772 32.39 C 61.772 33.373 62.576 34.17 63.568 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 34.17 C 80.007 34.17 80.812 33.373 80.812 32.39 C 80.812 31.407 80.007 30.61 79.015 30.61 C 78.024 30.61 77.219 31.407 77.219 32.39 C 77.219 33.373 78.024 34.17 79.015 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 34.17 C 95.445 34.17 96.249 33.373 96.249 32.39 C 96.249 31.407 95.445 30.61 94.453 30.61 C 93.461 30.61 92.657 31.407 92.657 32.39 C 92.657 33.373 93.461 34.17 94.453 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 34.17 C 110.893 34.17 111.697 33.373 111.697 32.39 C 111.697 31.407 110.893 30.61 109.901 30.61 C 108.909 30.61 108.105 31.407 108.105 32.39 C 108.105 33.373 108.909 34.17 109.901 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 47.69 C 3.592 48.67 2.785 49.47 1.796 49.47 C 0.807 49.47 0 48.67 0 47.69 C 0 46.71 0.807 45.91 1.796 45.91 C 2.785 45.92 3.592 46.71 3.592 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 49.47 C 18.236 49.47 19.04 48.673 19.04 47.69 C 19.04 46.707 18.236 45.91 17.244 45.91 C 16.252 45.91 15.448 46.707 15.448 47.69 C 15.448 48.673 16.252 49.47 17.244 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 49.47 C 33.674 49.47 34.478 48.673 34.478 47.69 C 34.478 46.707 33.674 45.91 32.682 45.91 C 31.69 45.91 30.886 46.707 30.886 47.69 C 30.886 48.673 31.69 49.47 32.682 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 47.69 C 49.926 48.67 49.118 49.47 48.13 49.47 C 47.141 49.47 46.334 48.67 46.334 47.69 C 46.334 46.71 47.141 45.91 48.13 45.91 C 49.118 45.92 49.926 46.71 49.926 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 49.47 C 64.559 49.47 65.364 48.673 65.364 47.69 C 65.364 46.707 64.559 45.91 63.568 45.91 C 62.576 45.91 61.772 46.707 61.772 47.69 C 61.772 48.673 62.576 49.47 63.568 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 49.47 C 80.007 49.47 80.812 48.673 80.812 47.69 C 80.812 46.707 80.007 45.91 79.015 45.91 C 78.024 45.91 77.219 46.707 77.219 47.69 C 77.219 48.673 78.024 49.47 79.015 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 49.47 C 95.445 49.47 96.249 48.673 96.249 47.69 C 96.249 46.707 95.445 45.91 94.453 45.91 C 93.461 45.91 92.657 46.707 92.657 47.69 C 92.657 48.673 93.461 49.47 94.453 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 49.47 C 110.893 49.47 111.697 48.673 111.697 47.69 C 111.697 46.707 110.893 45.91 109.901 45.91 C 108.909 45.91 108.105 46.707 108.105 47.69 C 108.105 48.673 108.909 49.47 109.901 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 63 C 3.592 63.98 2.785 64.78 1.796 64.78 C 0.807 64.78 0 63.98 0 63 C 0 62.02 0.807 61.22 1.796 61.22 C 2.785 61.22 3.592 62.02 3.592 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 64.78 C 18.236 64.78 19.04 63.983 19.04 63 C 19.04 62.017 18.236 61.22 17.244 61.22 C 16.252 61.22 15.448 62.017 15.448 63 C 15.448 63.983 16.252 64.78 17.244 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 64.78 C 33.674 64.78 34.478 63.983 34.478 63 C 34.478 62.017 33.674 61.22 32.682 61.22 C 31.69 61.22 30.886 62.017 30.886 63 C 30.886 63.983 31.69 64.78 32.682 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 63 C 49.926 63.98 49.118 64.78 48.13 64.78 C 47.141 64.78 46.334 63.98 46.334 63 C 46.334 62.02 47.141 61.22 48.13 61.22 C 49.118 61.22 49.926 62.02 49.926 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 64.78 C 64.559 64.78 65.364 63.983 65.364 63 C 65.364 62.017 64.559 61.22 63.568 61.22 C 62.576 61.22 61.772 62.017 61.772 63 C 61.772 63.983 62.576 64.78 63.568 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 64.78 C 80.007 64.78 80.812 63.983 80.812 63 C 80.812 62.017 80.007 61.22 79.015 61.22 C 78.024 61.22 77.219 62.017 77.219 63 C 77.219 63.983 78.024 64.78 79.015 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 64.78 C 95.445 64.78 96.249 63.983 96.249 63 C 96.249 62.017 95.445 61.22 94.453 61.22 C 93.461 61.22 92.657 62.017 92.657 63 C 92.657 63.983 93.461 64.78 94.453 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 64.78 C 110.893 64.78 111.697 63.983 111.697 63 C 111.697 62.017 110.893 61.22 109.901 61.22 C 108.909 61.22 108.105 62.017 108.105 63 C 108.105 63.983 108.909 64.78 109.901 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 78.31 C 3.592 79.29 2.785 80.09 1.796 80.09 C 0.807 80.09 0 79.29 0 78.31 C 0 77.33 0.807 76.53 1.796 76.53 C 2.785 76.53 3.592 77.32 3.592 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 80.09 C 18.236 80.09 19.04 79.293 19.04 78.31 C 19.04 77.327 18.236 76.53 17.244 76.53 C 16.252 76.53 15.448 77.327 15.448 78.31 C 15.448 79.293 16.252 80.09 17.244 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 80.09 C 33.674 80.09 34.478 79.293 34.478 78.31 C 34.478 77.327 33.674 76.53 32.682 76.53 C 31.69 76.53 30.886 77.327 30.886 78.31 C 30.886 79.293 31.69 80.09 32.682 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 78.31 C 49.926 79.29 49.118 80.09 48.13 80.09 C 47.141 80.09 46.334 79.29 46.334 78.31 C 46.334 77.33 47.141 76.53 48.13 76.53 C 49.118 76.53 49.926 77.32 49.926 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 80.09 C 64.559 80.09 65.364 79.293 65.364 78.31 C 65.364 77.327 64.559 76.53 63.568 76.53 C 62.576 76.53 61.772 77.327 61.772 78.31 C 61.772 79.293 62.576 80.09 63.568 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 80.09 C 80.007 80.09 80.812 79.293 80.812 78.31 C 80.812 77.327 80.007 76.53 79.015 76.53 C 78.024 76.53 77.219 77.327 77.219 78.31 C 77.219 79.293 78.024 80.09 79.015 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 80.09 C 95.445 80.09 96.249 79.293 96.249 78.31 C 96.249 77.327 95.445 76.53 94.453 76.53 C 93.461 76.53 92.657 77.327 92.657 78.31 C 92.657 79.293 93.461 80.09 94.453 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 80.09 C 110.893 80.09 111.697 79.293 111.697 78.31 C 111.697 77.327 110.893 76.53 109.901 76.53 C 108.909 76.53 108.105 77.327 108.105 78.31 C 108.105 79.293 108.909 80.09 109.901 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path></g></svg>',svgContentId:11849242235,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i9kg2l hidden-1qd0ceh\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 81\"><g id=\"ss11849242235_1\"><path d=\"M 3.592 1.78 C 3.592 2.76 2.785 3.56 1.796 3.56 C 0.807 3.56 0 2.76 0 1.78 C 0 0.8 0.807 0 1.796 0 C 2.785 0 3.592 0.8 3.592 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 3.56 C 18.236 3.56 19.04 2.763 19.04 1.78 C 19.04 0.797 18.236 0 17.244 0 C 16.252 0 15.448 0.797 15.448 1.78 C 15.448 2.763 16.252 3.56 17.244 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 3.56 C 33.674 3.56 34.478 2.763 34.478 1.78 C 34.478 0.797 33.674 0 32.682 0 C 31.69 0 30.886 0.797 30.886 1.78 C 30.886 2.763 31.69 3.56 32.682 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 1.78 C 49.926 2.76 49.118 3.56 48.13 3.56 C 47.141 3.56 46.334 2.76 46.334 1.78 C 46.334 0.8 47.141 0 48.13 0 C 49.118 0 49.926 0.8 49.926 1.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 3.56 C 64.559 3.56 65.364 2.763 65.364 1.78 C 65.364 0.797 64.559 0 63.568 0 C 62.576 0 61.772 0.797 61.772 1.78 C 61.772 2.763 62.576 3.56 63.568 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 3.56 C 80.007 3.56 80.812 2.763 80.812 1.78 C 80.812 0.797 80.007 0 79.015 0 C 78.024 0 77.219 0.797 77.219 1.78 C 77.219 2.763 78.024 3.56 79.015 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 3.56 C 95.445 3.56 96.249 2.763 96.249 1.78 C 96.249 0.797 95.445 0 94.453 0 C 93.461 0 92.657 0.797 92.657 1.78 C 92.657 2.763 93.461 3.56 94.453 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 3.56 C 110.893 3.56 111.697 2.763 111.697 1.78 C 111.697 0.797 110.893 0 109.901 0 C 108.909 0 108.105 0.797 108.105 1.78 C 108.105 2.763 108.909 3.56 109.901 3.56 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 17.08 C 3.592 18.06 2.785 18.86 1.796 18.86 C 0.807 18.86 0 18.06 0 17.08 C 0 16.1 0.807 15.3 1.796 15.3 C 2.785 15.31 3.592 16.1 3.592 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 18.86 C 18.236 18.86 19.04 18.063 19.04 17.08 C 19.04 16.097 18.236 15.3 17.244 15.3 C 16.252 15.3 15.448 16.097 15.448 17.08 C 15.448 18.063 16.252 18.86 17.244 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 18.86 C 33.674 18.86 34.478 18.063 34.478 17.08 C 34.478 16.097 33.674 15.3 32.682 15.3 C 31.69 15.3 30.886 16.097 30.886 17.08 C 30.886 18.063 31.69 18.86 32.682 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 17.08 C 49.926 18.06 49.118 18.86 48.13 18.86 C 47.141 18.86 46.334 18.06 46.334 17.08 C 46.334 16.1 47.141 15.3 48.13 15.3 C 49.118 15.31 49.926 16.1 49.926 17.08 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 18.86 C 64.559 18.86 65.364 18.063 65.364 17.08 C 65.364 16.097 64.559 15.3 63.568 15.3 C 62.576 15.3 61.772 16.097 61.772 17.08 C 61.772 18.063 62.576 18.86 63.568 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 18.86 C 80.007 18.86 80.812 18.063 80.812 17.08 C 80.812 16.097 80.007 15.3 79.015 15.3 C 78.024 15.3 77.219 16.097 77.219 17.08 C 77.219 18.063 78.024 18.86 79.015 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 18.86 C 95.445 18.86 96.249 18.063 96.249 17.08 C 96.249 16.097 95.445 15.3 94.453 15.3 C 93.461 15.3 92.657 16.097 92.657 17.08 C 92.657 18.063 93.461 18.86 94.453 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 18.86 C 110.893 18.86 111.697 18.063 111.697 17.08 C 111.697 16.097 110.893 15.3 109.901 15.3 C 108.909 15.3 108.105 16.097 108.105 17.08 C 108.105 18.063 108.909 18.86 109.901 18.86 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 32.39 C 3.592 33.37 2.785 34.17 1.796 34.17 C 0.807 34.17 0 33.37 0 32.39 C 0 31.41 0.807 30.61 1.796 30.61 C 2.785 30.61 3.592 31.41 3.592 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 34.17 C 18.236 34.17 19.04 33.373 19.04 32.39 C 19.04 31.407 18.236 30.61 17.244 30.61 C 16.252 30.61 15.448 31.407 15.448 32.39 C 15.448 33.373 16.252 34.17 17.244 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 34.17 C 33.674 34.17 34.478 33.373 34.478 32.39 C 34.478 31.407 33.674 30.61 32.682 30.61 C 31.69 30.61 30.886 31.407 30.886 32.39 C 30.886 33.373 31.69 34.17 32.682 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 32.39 C 49.926 33.37 49.118 34.17 48.13 34.17 C 47.141 34.17 46.334 33.37 46.334 32.39 C 46.334 31.41 47.141 30.61 48.13 30.61 C 49.118 30.61 49.926 31.41 49.926 32.39 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 34.17 C 64.559 34.17 65.364 33.373 65.364 32.39 C 65.364 31.407 64.559 30.61 63.568 30.61 C 62.576 30.61 61.772 31.407 61.772 32.39 C 61.772 33.373 62.576 34.17 63.568 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 34.17 C 80.007 34.17 80.812 33.373 80.812 32.39 C 80.812 31.407 80.007 30.61 79.015 30.61 C 78.024 30.61 77.219 31.407 77.219 32.39 C 77.219 33.373 78.024 34.17 79.015 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 34.17 C 95.445 34.17 96.249 33.373 96.249 32.39 C 96.249 31.407 95.445 30.61 94.453 30.61 C 93.461 30.61 92.657 31.407 92.657 32.39 C 92.657 33.373 93.461 34.17 94.453 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 34.17 C 110.893 34.17 111.697 33.373 111.697 32.39 C 111.697 31.407 110.893 30.61 109.901 30.61 C 108.909 30.61 108.105 31.407 108.105 32.39 C 108.105 33.373 108.909 34.17 109.901 34.17 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 47.69 C 3.592 48.67 2.785 49.47 1.796 49.47 C 0.807 49.47 0 48.67 0 47.69 C 0 46.71 0.807 45.91 1.796 45.91 C 2.785 45.92 3.592 46.71 3.592 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 49.47 C 18.236 49.47 19.04 48.673 19.04 47.69 C 19.04 46.707 18.236 45.91 17.244 45.91 C 16.252 45.91 15.448 46.707 15.448 47.69 C 15.448 48.673 16.252 49.47 17.244 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 49.47 C 33.674 49.47 34.478 48.673 34.478 47.69 C 34.478 46.707 33.674 45.91 32.682 45.91 C 31.69 45.91 30.886 46.707 30.886 47.69 C 30.886 48.673 31.69 49.47 32.682 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 47.69 C 49.926 48.67 49.118 49.47 48.13 49.47 C 47.141 49.47 46.334 48.67 46.334 47.69 C 46.334 46.71 47.141 45.91 48.13 45.91 C 49.118 45.92 49.926 46.71 49.926 47.69 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 49.47 C 64.559 49.47 65.364 48.673 65.364 47.69 C 65.364 46.707 64.559 45.91 63.568 45.91 C 62.576 45.91 61.772 46.707 61.772 47.69 C 61.772 48.673 62.576 49.47 63.568 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 49.47 C 80.007 49.47 80.812 48.673 80.812 47.69 C 80.812 46.707 80.007 45.91 79.015 45.91 C 78.024 45.91 77.219 46.707 77.219 47.69 C 77.219 48.673 78.024 49.47 79.015 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 49.47 C 95.445 49.47 96.249 48.673 96.249 47.69 C 96.249 46.707 95.445 45.91 94.453 45.91 C 93.461 45.91 92.657 46.707 92.657 47.69 C 92.657 48.673 93.461 49.47 94.453 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 49.47 C 110.893 49.47 111.697 48.673 111.697 47.69 C 111.697 46.707 110.893 45.91 109.901 45.91 C 108.909 45.91 108.105 46.707 108.105 47.69 C 108.105 48.673 108.909 49.47 109.901 49.47 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 63 C 3.592 63.98 2.785 64.78 1.796 64.78 C 0.807 64.78 0 63.98 0 63 C 0 62.02 0.807 61.22 1.796 61.22 C 2.785 61.22 3.592 62.02 3.592 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 64.78 C 18.236 64.78 19.04 63.983 19.04 63 C 19.04 62.017 18.236 61.22 17.244 61.22 C 16.252 61.22 15.448 62.017 15.448 63 C 15.448 63.983 16.252 64.78 17.244 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 64.78 C 33.674 64.78 34.478 63.983 34.478 63 C 34.478 62.017 33.674 61.22 32.682 61.22 C 31.69 61.22 30.886 62.017 30.886 63 C 30.886 63.983 31.69 64.78 32.682 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 63 C 49.926 63.98 49.118 64.78 48.13 64.78 C 47.141 64.78 46.334 63.98 46.334 63 C 46.334 62.02 47.141 61.22 48.13 61.22 C 49.118 61.22 49.926 62.02 49.926 63 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 64.78 C 64.559 64.78 65.364 63.983 65.364 63 C 65.364 62.017 64.559 61.22 63.568 61.22 C 62.576 61.22 61.772 62.017 61.772 63 C 61.772 63.983 62.576 64.78 63.568 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 64.78 C 80.007 64.78 80.812 63.983 80.812 63 C 80.812 62.017 80.007 61.22 79.015 61.22 C 78.024 61.22 77.219 62.017 77.219 63 C 77.219 63.983 78.024 64.78 79.015 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 64.78 C 95.445 64.78 96.249 63.983 96.249 63 C 96.249 62.017 95.445 61.22 94.453 61.22 C 93.461 61.22 92.657 62.017 92.657 63 C 92.657 63.983 93.461 64.78 94.453 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 64.78 C 110.893 64.78 111.697 63.983 111.697 63 C 111.697 62.017 110.893 61.22 109.901 61.22 C 108.909 61.22 108.105 62.017 108.105 63 C 108.105 63.983 108.909 64.78 109.901 64.78 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 3.592 78.31 C 3.592 79.29 2.785 80.09 1.796 80.09 C 0.807 80.09 0 79.29 0 78.31 C 0 77.33 0.807 76.53 1.796 76.53 C 2.785 76.53 3.592 77.32 3.592 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 17.244 80.09 C 18.236 80.09 19.04 79.293 19.04 78.31 C 19.04 77.327 18.236 76.53 17.244 76.53 C 16.252 76.53 15.448 77.327 15.448 78.31 C 15.448 79.293 16.252 80.09 17.244 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 32.682 80.09 C 33.674 80.09 34.478 79.293 34.478 78.31 C 34.478 77.327 33.674 76.53 32.682 76.53 C 31.69 76.53 30.886 77.327 30.886 78.31 C 30.886 79.293 31.69 80.09 32.682 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 49.926 78.31 C 49.926 79.29 49.118 80.09 48.13 80.09 C 47.141 80.09 46.334 79.29 46.334 78.31 C 46.334 77.33 47.141 76.53 48.13 76.53 C 49.118 76.53 49.926 77.32 49.926 78.31 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 63.568 80.09 C 64.559 80.09 65.364 79.293 65.364 78.31 C 65.364 77.327 64.559 76.53 63.568 76.53 C 62.576 76.53 61.772 77.327 61.772 78.31 C 61.772 79.293 62.576 80.09 63.568 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 79.015 80.09 C 80.007 80.09 80.812 79.293 80.812 78.31 C 80.812 77.327 80.007 76.53 79.015 76.53 C 78.024 76.53 77.219 77.327 77.219 78.31 C 77.219 79.293 78.024 80.09 79.015 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 94.453 80.09 C 95.445 80.09 96.249 79.293 96.249 78.31 C 96.249 77.327 95.445 76.53 94.453 76.53 C 93.461 76.53 92.657 77.327 92.657 78.31 C 92.657 79.293 93.461 80.09 94.453 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path><path d=\"M 109.901 80.09 C 110.893 80.09 111.697 79.293 111.697 78.31 C 111.697 77.327 110.893 76.53 109.901 76.53 C 108.909 76.53 108.105 77.327 108.105 78.31 C 108.105 79.293 108.909 80.09 109.901 80.09 Z\" fill=\"rgb(124, 62, 233)\" opacity=\"0.5\"></path></g></svg>',svgContentId:11849242235,withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:381,pixelWidth:504,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mU5OuWMZmWSiAGr1dLgsbIgtso.webp\"}},GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(666.2),pixelHeight:381,pixelWidth:504,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mU5OuWMZmWSiAGr1dLgsbIgtso.webp\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(211.6),pixelHeight:381,pixelWidth:504,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mU5OuWMZmWSiAGr1dLgsbIgtso.webp\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(177),pixelHeight:381,pixelWidth:504,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mU5OuWMZmWSiAGr1dLgsbIgtso.webp\"},className:\"framer-5h8kma\",\"data-framer-name\":\"image\",name:\"image\",style:{transformPerspective:1200}})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sv6mr3\",\"data-framer-name\":\"tools\",name:\"tools\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pbrrxy\",\"data-framer-name\":\"max\",name:\"max\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kx9XRHsdd:{children:(_getLocalizedValue9=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-77abf34c-bfd0-46e4-bdc5-396472ca5ca6, rgba(17, 16, 17, 0.5))\"},children:\"Empresas que j\\xe1 conhecem nosso trabalho\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Empresas que j\\xe1 conhecem nosso trabalho\"})}),className:\"framer-bn4e4c\",\"data-framer-name\":\"Tools which I use on a daily basis.\",fonts:[\"Inter\"],name:\"Tools which I use on a daily basis.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p98mc3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0,speed:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"MzAU0H_Qw\",layoutId:\"MzAU0H_Qw\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1apnn4i\",\"data-framer-name\":\"Lanali\",name:\"Lanali\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:72,pixelWidth:126,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZwiCEmOn3sxOWInrpPaaunyQIg.svg\"},className:\"framer-1kr2ibj\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ed085f\",\"data-framer-name\":\"Gennio\",name:\"Gennio\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:72,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vAuYqiwxAqNErjLSttEOVJUAQ.svg\"},className:\"framer-1an1kli\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gbadlr\",\"data-framer-name\":\"Docompliance\",name:\"Docompliance\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:72,pixelWidth:234,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/f05IqFnfhH9gLcvORBFfhg2eA.svg\"},className:\"framer-wzihz\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzpxkp\",\"data-framer-name\":\"JStack\",name:\"JStack\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:72,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JtyxTgEE2cmEvQmPD4W3PxvmwE.svg\"},className:\"framer-wm98mt\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i1xh3a\",\"data-framer-name\":\"Asimov\",name:\"Asimov\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:72,pixelWidth:157,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6I9z0neAiXK8zfAHb1WCE7DIbtw.svg\"},className:\"framer-f1q2w9\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-fncard\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-199uzcp\",\"data-framer-name\":\"Work\",id:elementId1,name:\"Work\",ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggkh98\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-42ypqm\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-at9o4p\",\"data-framer-name\":\"txt\",name:\"txt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{children:(_getLocalizedValue11=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Conhe\\xe7a nossos projetos\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue12=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Conhe\\xe7a nossos projetos\"})}),className:\"framer-fqaooc\",\"data-framer-name\":\"Explore My Projects\",fonts:[\"Inter\"],name:\"Explore My Projects\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.8,children:(_getLocalizedValue13=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Nossos trabalhos s\\xe3o uma combina\\xe7\\xe3o de pensamento inovador e solu\\xe7\\xf5es pr\\xe1ticas, garantindo que sejam \\xfanicos e eficazes\"})}),className:\"framer-c0s7qn\",\"data-framer-name\":\"Our works are a blend of innovative thinking and practical solutions, ensuring they are both unique and effective.\",fonts:[\"Inter\"],name:\"Our works are a blend of innovative thinking and practical solutions, ensuring they are both unique and effective.\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s889jx\",\"data-framer-name\":\"projects\",name:\"projects\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1280px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 112px, 1280px)\",y:1835.8000000000002},Kx9XRHsdd:{y:1287.8000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:583,width:\"calc(min(100vw - 32px, 1280px) - 80px)\",y:1298.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:69,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2.3,stiffness:422,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.85,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18bhdpf-container\",id:elementId2,ref:ref9,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{bUNX1bgUf:false,variant:\"GKKBgX071\"},GL7bLe_Dq:{bUNX1bgUf:false}},children:/*#__PURE__*/_jsx(CardProject,{Avxp6hVaI:\"Landing Page\",B29ImcTNf:\"Web App\",bUNX1bgUf:true,DvCGzupyt:(_getLocalizedValue14=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"A Docompliance \\xe9 uma plataforma inovadora que simplifica e automatiza a gest\\xe3o de documentos empresariais.\",height:\"100%\",hwjUzqcQL:addImageAlt({src:\"https://framerusercontent.com/images/CG23kvujBHyQcjyn0J0SzbOD38.webp\",srcSet:\"https://framerusercontent.com/images/CG23kvujBHyQcjyn0J0SzbOD38.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CG23kvujBHyQcjyn0J0SzbOD38.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CG23kvujBHyQcjyn0J0SzbOD38.webp 1920w\"},\"\"),id:\"vFQpyrcIw\",jEhkoM6zH:true,JHq9Pqcdq:\"SaaS\",jipc7f83S:(_getLocalizedValue15=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Acesse o site\",kM6b3z1tp:true,layoutId:\"vFQpyrcIw\",MloPiixvQ:\"Link\",ocahgvNHq:\"https://www.docompliance.com.br/\",RgNVS01eW:\"Docompliance\",style:{width:\"100%\"},variant:\"lnfBXKJwG\",width:\"100%\",WNCMWkDKf:\"rgb(204, 187, 255)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1280px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 112px, 1280px)\",y:2450.8},Kx9XRHsdd:{y:1902.8000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:583,width:\"calc(min(100vw - 32px, 1280px) - 80px)\",y:1913.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:69,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2.3,stiffness:422,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tt1kng-container\",id:elementId3,ref:ref6,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{variant:\"GKKBgX071\"},GL7bLe_Dq:{bUNX1bgUf:false}},children:/*#__PURE__*/_jsx(CardProject,{Avxp6hVaI:\"Landing Page\",B29ImcTNf:\"\",bUNX1bgUf:true,DvCGzupyt:(_getLocalizedValue16=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\" A GENNIO \\xe9 uma plataforma que simplifica o registro de direitos autorais usando blockchain, permitindo que artistas e criadores protejam suas obras de forma eficiente, segura e acess\\xedvel.\",height:\"100%\",hwjUzqcQL:addImageAlt({src:\"https://framerusercontent.com/images/Uz3a8VUNfhTGX9pTXsINP31GiBw.webp\",srcSet:\"https://framerusercontent.com/images/Uz3a8VUNfhTGX9pTXsINP31GiBw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Uz3a8VUNfhTGX9pTXsINP31GiBw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Uz3a8VUNfhTGX9pTXsINP31GiBw.webp 1920w\"},\"\"),id:\"N10jPvYab\",jEhkoM6zH:true,JHq9Pqcdq:\"SaaS\",jipc7f83S:(_getLocalizedValue17=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:\"Confira o case completo\",kM6b3z1tp:true,layoutId:\"N10jPvYab\",MloPiixvQ:\"Link\",ocahgvNHq:\"https://www.behance.net/gallery/211259147/Gennioio-Landing-Page-%28Novo-Website%29\",RgNVS01eW:\"Gennio\",style:{width:\"100%\"},variant:\"lnfBXKJwG\",width:\"100%\",WNCMWkDKf:\"rgb(204, 187, 255)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1280px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 112px, 1280px)\",y:3065.8},Kx9XRHsdd:{y:2517.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:583,width:\"calc(min(100vw - 32px, 1280px) - 80px)\",y:2528.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:69,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2.9,stiffness:422,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17p640p-container\",id:elementId4,ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{variant:\"GKKBgX071\"},GL7bLe_Dq:{bUNX1bgUf:false}},children:/*#__PURE__*/_jsx(CardProject,{Avxp6hVaI:\"Landing Page\",B29ImcTNf:\"Web App\",bUNX1bgUf:true,DvCGzupyt:(_getLocalizedValue18=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:\"Landing Page para o melhor e mais completo curso sobre  a stack mais utilizada pelo mercado por desenvolvedores.\",height:\"100%\",hwjUzqcQL:addImageAlt({src:\"https://framerusercontent.com/images/JNO3HuJIJMeFSmBwuTBLexZ8.webp\",srcSet:\"https://framerusercontent.com/images/JNO3HuJIJMeFSmBwuTBLexZ8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/JNO3HuJIJMeFSmBwuTBLexZ8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/JNO3HuJIJMeFSmBwuTBLexZ8.webp 1920w\"},\"\"),id:\"BzQPzo2Qi\",jEhkoM6zH:true,JHq9Pqcdq:\"Educa\\xe7\\xe3o\",jipc7f83S:(_getLocalizedValue19=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:\"Acesse o site\",kM6b3z1tp:true,layoutId:\"BzQPzo2Qi\",MloPiixvQ:\"Link\",ocahgvNHq:\"jstack.com.br\",RgNVS01eW:\"JStack\",style:{width:\"100%\"},variant:\"lnfBXKJwG\",width:\"100%\",WNCMWkDKf:\"rgb(204, 187, 255)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1280px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 112px, 1280px)\",y:3680.8},Kx9XRHsdd:{y:3132.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:583,width:\"calc(min(100vw - 32px, 1280px) - 80px)\",y:3143.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jptgxw-container\",id:elementId5,ref:ref8,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{variant:\"GKKBgX071\"},GL7bLe_Dq:{bUNX1bgUf:false}},children:/*#__PURE__*/_jsx(CardProject,{Avxp6hVaI:(_getLocalizedValue20=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:\"Site Institucional\",B29ImcTNf:\"\",bUNX1bgUf:true,DvCGzupyt:(_getLocalizedValue21=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"O Lanali \\xe9 um laborat\\xf3rio com unidades em Cascavel e Maring\\xe1/PR, especializado em an\\xe1lises microbiol\\xf3gicas e f\\xedsico-qu\\xedmicas de alimentos, \\xe1gua e efluentes. A unidade de Maring\\xe1 foca em an\\xe1lises ambientais. Seguindo a norma NBR ISO/IEC 17025:2017, o laborat\\xf3rio garante a confiabilidade dos resultados e a satisfa\\xe7\\xe3o dos clientes.\",height:\"100%\",hwjUzqcQL:addImageAlt({src:\"https://framerusercontent.com/images/t5ddDaYweJL35Mt7rhXzlaXtY4g.webp\",srcSet:\"https://framerusercontent.com/images/t5ddDaYweJL35Mt7rhXzlaXtY4g.webp?scale-down-to=512 512w,https://framerusercontent.com/images/t5ddDaYweJL35Mt7rhXzlaXtY4g.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/t5ddDaYweJL35Mt7rhXzlaXtY4g.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/t5ddDaYweJL35Mt7rhXzlaXtY4g.webp 3840w\"},\"\"),id:\"mkaZfIRIH\",jEhkoM6zH:true,JHq9Pqcdq:(_getLocalizedValue22=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Laborat\\xf3rio\",jipc7f83S:(_getLocalizedValue23=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Acesse o site\",kM6b3z1tp:true,layoutId:\"mkaZfIRIH\",MloPiixvQ:\"Link\",ocahgvNHq:\"lanali.com.br\",RgNVS01eW:\"Lanali\",style:{width:\"100%\"},variant:\"lnfBXKJwG\",width:\"100%\",WNCMWkDKf:\"rgb(184, 157, 255)\"})})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{y:undefined},GL7bLe_Dq:{y:4393.8},Kx9XRHsdd:{y:3845.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:879,width:\"100vw\",y:3856.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uy0h6j-container\",id:elementId6,ref:ref10,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{variant:\"fvFncPTzt\"},GL7bLe_Dq:{variant:\"QZP8SzKr7\"},Kx9XRHsdd:{variant:\"PyoEQedlW\"}},children:/*#__PURE__*/_jsx(SectionTestemonials,{height:\"100%\",id:\"c26vumL_y\",layoutId:\"c26vumL_y\",LGP0fdvd8:ref10,style:{width:\"100%\"},variant:\"MY0jds1EF\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1awhxet\",\"data-framer-name\":\"About\",id:elementId7,name:\"About\",ref:ref11,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpzg34\",\"data-framer-name\":\"Wrapped\",name:\"Wrapped\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1645nc2\",\"data-framer-name\":\"Container\",id:elementId8,name:\"Container\",ref:ref12,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2yrs9\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue24=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Nosso Processo\"})}),className:\"framer-hems92\",\"data-framer-name\":\"Process\",fonts:[\"Inter\"],name:\"Process\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.8,children:(_getLocalizedValue25=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Quer saber como suas ideias se transformam em realidade? Nosso processo \\xe9 transparente e colaborativo, permitindo que voc\\xea acompanhe cada etapa do desenvolvimento do seu projeto. Desde a concep\\xe7\\xe3o at\\xe9 o lan\\xe7amento, voc\\xea estar\\xe1 sempre por dentro de tudo.\"})}),className:\"framer-tg606c\",\"data-framer-name\":\"Your compass to innovation and design excellence. From exploration to execution, this dynamic framework fuels creativity and precision, ensuring your product journey aligns seamlessly with user desires.\",fonts:[\"Inter\"],name:\"Your compass to innovation and design excellence. From exploration to execution, this dynamic framework fuels creativity and precision, ensuring your product journey aligns seamlessly with user desires.\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4d9we6\",\"data-framer-name\":\"Process\",name:\"Process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xtek2c\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11b8gm3\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwrecd\",\"data-framer-name\":\"txt 1\",id:elementId9,name:\"txt 1\",ref:ref13,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186x49c\",\"data-border\":true,\"data-framer-name\":\"category\",name:\"category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/debXHDjxOyGmleIcK3X7kriNLO0.svg\"}},GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5646.200000000001),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/debXHDjxOyGmleIcK3X7kriNLO0.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5497.400000000001),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/debXHDjxOyGmleIcK3X7kriNLO0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5508.200000000001),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/debXHDjxOyGmleIcK3X7kriNLO0.svg\"},className:\"framer-toi7wy\",\"data-framer-name\":\"search-lg\",name:\"search-lg\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-160xb2\",\"data-styles-preset\":\"AydBGsyGI\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Come\\xe7amos pelo porqu\\xea\"})}),className:\"framer-1hee3pc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue27=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t6kazk\",\"data-styles-preset\":\"dN7QltAHw\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Realizamos um diagn\\xf3stico completo para entender o problema do cliente, identificando necessidades e como podemos ajudar no projeto.\"})}),className:\"framer-pv756j\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{height:224,width:\"calc(min(100vw - 20px, 1280px) - 20px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-189amn7-container hidden-72rtr7 hidden-1wif8km hidden-14bqag3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(GalleryProcess,{height:\"100%\",id:\"EkOgQ1FcE\",layoutId:\"EkOgQ1FcE\",style:{width:\"100%\"},variant:\"mPwRY2Y2M\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cd3trm\",\"data-framer-name\":\"txt 2\",id:elementId10,name:\"txt 2\",ref:ref14,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgl8m3\",\"data-border\":true,\"data-framer-name\":\"category\",name:\"category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/w36Iw53QnsyasScgj9MnfJ1RnJk.svg\"}},GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5983.800000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/w36Iw53QnsyasScgj9MnfJ1RnJk.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6507.400000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/w36Iw53QnsyasScgj9MnfJ1RnJk.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6508.200000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/w36Iw53QnsyasScgj9MnfJ1RnJk.svg\"},className:\"framer-p6ype2\",\"data-framer-name\":\"pencil-02\",name:\"pencil-02\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue28=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-160xb2\",\"data-styles-preset\":\"AydBGsyGI\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Definimos o caminho juntos\"})}),className:\"framer-1j92j7u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t6kazk\",\"data-styles-preset\":\"dN7QltAHw\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Com o diagn\\xf3stico em m\\xe3os, desenvolvemos as primeiras ideias e validamos junto ao cliente, garantindo sua participa\\xe7\\xe3o.\"})}),className:\"framer-1euaa5\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{height:224,width:\"calc(min(100vw - 20px, 1280px) - 20px)\"},GL7bLe_Dq:{height:481,width:\"calc(min(100vw - 40px, 1280px) - 72px)\",y:6215.600000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dch73j-container hidden-72rtr7 hidden-1wif8km\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(GalleryProcess,{height:\"100%\",id:\"RW3eHlSyJ\",layoutId:\"RW3eHlSyJ\",style:{width:\"100%\"},variant:\"oti0Kr1WL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgyyh5\",\"data-framer-name\":\"txt 3\",id:elementId11,name:\"txt 3\",ref:ref15,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1di5kfh\",\"data-border\":true,\"data-framer-name\":\"category\",name:\"category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/lTHDVoQcJ5hjPuEBVXy6lzT0QM.svg\"}},GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6834.400000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/lTHDVoQcJ5hjPuEBVXy6lzT0QM.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7517.400000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/lTHDVoQcJ5hjPuEBVXy6lzT0QM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7508.200000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/lTHDVoQcJ5hjPuEBVXy6lzT0QM.svg\"},className:\"framer-1op52e4\",\"data-framer-name\":\"code-02\",name:\"code-02\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue30=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-160xb2\",\"data-styles-preset\":\"AydBGsyGI\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Desenvolvemos a solu\\xe7\\xe3o\"})}),className:\"framer-bwxxmc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue31=getLocalizedValue(\"v38\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t6kazk\",\"data-styles-preset\":\"dN7QltAHw\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Iniciamos a implementa\\xe7\\xe3o da solu\\xe7\\xe3o baseada no diagn\\xf3stico e defini\\xe7\\xf5es acordadas, focando na resolu\\xe7\\xe3o do problema.\"})}),className:\"framer-1w90xhl\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{height:224,width:\"calc(min(100vw - 20px, 1280px) - 20px)\"},GL7bLe_Dq:{height:481,width:\"calc(min(100vw - 40px, 1280px) - 72px)\",y:7066.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-90u03z-container hidden-72rtr7 hidden-1wif8km\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(GalleryProcess,{height:\"100%\",id:\"rmpHE7I__\",layoutId:\"rmpHE7I__\",style:{width:\"100%\"},variant:\"cJwKjMQ26\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v6blyh\",\"data-framer-name\":\"txt 4\",id:elementId12,name:\"txt 4\",ref:ref16,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bqu4k6\",\"data-border\":true,\"data-framer-name\":\"category\",name:\"category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/G4qnkASs1EtceiF8opZYOf1mty4.svg\"}},GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7685.000000000001),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/G4qnkASs1EtceiF8opZYOf1mty4.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8527.4),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/G4qnkASs1EtceiF8opZYOf1mty4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8508.2),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/G4qnkASs1EtceiF8opZYOf1mty4.svg\"},className:\"framer-15mwcta\",\"data-framer-name\":\"send-03\",name:\"send-03\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue32=getLocalizedValue(\"v39\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-160xb2\",\"data-styles-preset\":\"AydBGsyGI\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Finalizamos e entregamos\"})}),className:\"framer-1cnt79k\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue33=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t6kazk\",\"data-styles-preset\":\"dN7QltAHw\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Realizamos os ajustes finais, entregamos o projeto ao cliente e oferecemos treinamento e suporte conforme necess\\xe1rio.\"})}),className:\"framer-16imtc0\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{height:224,width:\"calc(min(100vw - 20px, 1280px) - 20px)\"},GL7bLe_Dq:{height:481,width:\"calc(min(100vw - 40px, 1280px) - 72px)\",y:7916.800000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aoxi2y-container hidden-72rtr7 hidden-1wif8km\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(GalleryProcess,{height:\"100%\",id:\"q6uZZYcyR\",layoutId:\"q6uZZYcyR\",style:{width:\"100%\"},variant:\"TT598KRVW\",width:\"100%\"})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q7lb7l hidden-14bqag3 hidden-1qd0ceh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kx9XRHsdd:{width:\"max((min(100vw - 40px, 1280px) - 168px) / 2, 1px)\",y:5347.900000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:481,width:\"max(min(100vw - 40px, 1280px) - 680px, 1px)\",y:5358.700000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o9fhgo-container\",children:/*#__PURE__*/_jsx(GalleryProcessWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref13,target:\"mPwRY2Y2M\"},{ref:ref14,target:\"oti0Kr1WL\"},{ref:ref15,target:\"cJwKjMQ26\"},{ref:ref16,target:\"TT598KRVW\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Are_79mgI\",layoutId:\"Are_79mgI\",style:{width:\"100%\"},variant:\"mPwRY2Y2M\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fcnuwj\",\"data-framer-name\":\"About\",id:elementId13,name:\"About\",ref:ref17,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"calc(100vw - 20px)\",y:undefined},GL7bLe_Dq:{width:\"calc(100vw - 40px)\",y:8557.8},Kx9XRHsdd:{width:\"calc(100vw - 40px)\",y:9150.400000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,y:9131.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nqyc1k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{EFarrc8Nu:\"0px 10px 0px 10px\",style:{width:\"100%\"},variant:\"YcZ_zRID5\"},GL7bLe_Dq:{style:{width:\"100%\"},variant:\"QlWV0LkvQ\"},Kx9XRHsdd:{EFarrc8Nu:\"0px 36px 0px 36px\",style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SectionAbout,{EFarrc8Nu:\"0px 40px 0px 40px\",height:\"100%\",id:\"AAlqWX0WD\",layoutId:\"AAlqWX0WD\",variant:\"ieVWz_6sb\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hs9hlk\",\"data-framer-name\":\"experiences\",name:\"experiences\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-170hdj9\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b25g8h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yal4m9\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue34=getLocalizedValue(\"v41\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Anos de Experi\\xeancia\"})}),className:\"framer-h01lht\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k1njh9\",\"data-styles-preset\":\"suCKZ10zu\",children:\"5\"})}),className:\"framer-1r9exp6\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eb8wz3\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue35=getLocalizedValue(\"v42\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Projetos conclu\\xeddos\"})}),className:\"framer-q3t4x1\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k1njh9\",\"data-styles-preset\":\"suCKZ10zu\",children:\"+62\"})}),className:\"framer-oqfhkm\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hxe9ou\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue36=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Satisfa\\xe7\\xe3o dos clientes\"})}),className:\"framer-q6fv61\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k1njh9\",\"data-styles-preset\":\"suCKZ10zu\",children:\"95%\"})}),className:\"framer-1whcbk6\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7oupnt\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue37=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Setores atendidos\"})}),className:\"framer-12xcqf2\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-k1njh9\",\"data-styles-preset\":\"suCKZ10zu\",children:\"+5\"})}),className:\"framer-gx3v29\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-yomn8z\",\"data-framer-name\":\"Results\",id:elementId14,name:\"Results\",ref:ref18,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g40j3f\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68qxi2\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9ant4\",\"data-framer-name\":\"txt\",name:\"txt\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue38=getLocalizedValue(\"v45\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Geramos resultados reais para nossos clientes\"})}),className:\"framer-1m2ybut\",\"data-framer-name\":\"Trusted by a New Generation of Companies\",fonts:[\"Inter\"],name:\"Trusted by a New Generation of Companies\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-63vcw1\",\"data-framer-name\":\"images\",name:\"images\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b6i8qs hidden-14bqag3\",\"data-framer-name\":\"1\",name:\"1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"stretch\",pixelHeight:4e3,pixelWidth:2668,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 40px, 1200px)\",src:\"https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg\",srcSet:\"https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg 2668w\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10020.000000000002),pixelHeight:4e3,pixelWidth:2668,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 112px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg\",srcSet:\"https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg 2668w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10080.800000000001),pixelHeight:4e3,pixelWidth:2668,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 104px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg\",srcSet:\"https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/FJd0FEMKUxUwitMhQWq1DbqpEw.jpg 2668w\"},className:\"framer-19m8ebl\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pw37gp\",\"data-framer-name\":\"BG\",name:\"BG\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:109,src:\"https://framerusercontent.com/images/T10CjY83G4bUThd2hF7kz3sV8k.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10152.000000000002),pixelHeight:24,pixelWidth:109,src:\"https://framerusercontent.com/images/T10CjY83G4bUThd2hF7kz3sV8k.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10212.800000000001),pixelHeight:24,pixelWidth:109,src:\"https://framerusercontent.com/images/T10CjY83G4bUThd2hF7kz3sV8k.svg\"},className:\"framer-qg2r12\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6diuoa\",\"data-framer-name\":\"card-txt\",name:\"card-txt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14a2a4h\",\"data-framer-name\":\"top\",name:\"top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZlcnNvcyBUZXN0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Versos Test SemiBold\", \"Versos Test SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(55, 28, 104)\"},children:\"75%\"})}),className:\"framer-1p66278\",\"data-framer-name\":\"87 %\",fonts:[\"CUSTOM;Versos Test SemiBold\"],name:\"87 %\",verticalAlignment:\"top\",viewBox:\"0 0 215 120\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue39=getLocalizedValue(\"v46\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(55, 28, 104)\"},children:\"Aumento do tr\\xe1fego no novo site ap\\xf3s o redesign\"})}),className:\"framer-1ptwop6\",\"data-framer-name\":\"reduction in hiring costs\",fonts:[\"Inter\"],name:\"reduction in hiring costs\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xc1tdb\",\"data-framer-name\":\"Avatar label group\",name:\"Avatar label group\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bf1iz0\",\"data-framer-name\":\"Templates/Elements/Icons/Quote 02\",layout:\"position\",name:\"Templates/Elements/Icons/Quote 02\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 29\"><g><defs><linearGradient id=\"idss11358644319_1g-1408241612\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, rgb(136, 68, 255)) /* {&quot;name&quot;:&quot;Support-320&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(136, 68, 255, 0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 13.601 9.917 C 13.601 13.895 12.623 17.416 10.666 20.478 C 8.709 23.54 6.085 26.092 2.792 28.133 C 2.649 28.186 2.422 28.094 2.112 27.859 C 1.802 27.623 1.551 27.374 1.36 27.113 C 1.169 26.851 1.002 26.524 0.859 26.131 C 0.716 25.738 0.716 25.49 0.859 25.385 C 2.482 24.181 3.877 22.951 5.047 21.695 C 6.216 20.439 6.8 18.502 6.8 15.884 C 6.8 15.256 6.765 14.811 6.693 14.55 C 6.621 14.288 6.49 14.157 6.299 14.157 C 6.156 14.157 6.001 14.196 5.834 14.275 C 5.667 14.353 5.464 14.393 5.226 14.393 C 3.842 14.393 2.625 13.856 1.575 12.783 C 0.525 11.71 0 10.022 0 7.718 C 0 5.782 0.608 4.015 1.825 2.418 C 3.042 0.822 4.605 0.023 6.514 0.023 C 8.662 0.023 10.38 0.966 11.668 2.85 C 12.957 4.735 13.601 7.09 13.601 9.917 Z M 29.92 9.917 C 29.92 13.895 28.941 17.416 26.985 20.478 C 25.028 23.54 22.403 26.092 19.111 28.133 C 18.967 28.186 18.741 28.094 18.43 27.859 C 18.12 27.623 17.87 27.374 17.679 27.113 C 17.488 26.851 17.321 26.524 17.178 26.131 C 17.035 25.738 17.035 25.49 17.178 25.385 C 18.8 24.181 20.196 22.951 21.365 21.695 C 22.535 20.439 23.119 18.502 23.119 15.884 C 23.119 15.256 23.083 14.811 23.012 14.55 C 22.94 14.288 22.809 14.157 22.618 14.157 C 22.475 14.157 22.32 14.196 22.153 14.275 C 21.986 14.353 21.783 14.393 21.544 14.393 C 20.16 14.393 18.944 13.856 17.894 12.783 C 16.844 11.71 16.319 10.022 16.319 7.718 C 16.319 5.782 16.927 4.015 18.144 2.418 C 19.361 0.822 20.924 0.023 22.833 0.023 C 24.98 0.023 26.698 0.966 27.987 2.85 C 29.275 4.735 29.92 7.09 29.92 9.917 Z\" fill=\"url(#idss11358644319_1g-1408241612)\"></path></g></svg>',svgContentId:11358644319,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1303hyj\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"rgb(55, 28, 104)\"},children:\"Daniel Marques\"})}),className:\"framer-7qmogu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"rgb(55, 28, 104)\"},children:\"CTO, Gennio\"})}),className:\"framer-1m0h82g\",\"data-framer-name\":\"20 Jan 2024\",fonts:[\"Inter\"],name:\"20 Jan 2024\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-32}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ldiahm hidden-14bqag3\",\"data-framer-name\":\"2\",name:\"2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wl4sez\",\"data-framer-name\":\"card-txt\",name:\"card-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfcwmd\",\"data-framer-name\":\"top\",name:\"top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue40=getLocalizedValue(\"v47\",activeLocale))!==null&&_getLocalizedValue40!==void 0?_getLocalizedValue40:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"rgb(79, 39, 147)\"},children:'\"Como desenvolvedor, trabalhar com a Versare me permitiu focar mais na implementa\\xe7\\xe3o, j\\xe1 que o design ficou totalmente alinhado com a viabilidade. \"'})}),className:\"framer-1wxpoii\",\"data-framer-name\":\"Finding, hiring and managing remote tech talent with Athos has never been faster, easier or more flexible.\",fonts:[\"Inter\"],name:\"Finding, hiring and managing remote tech talent with Athos has never been faster, easier or more flexible.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vuat9h\",\"data-framer-name\":\"Avatar label group\",name:\"Avatar label group\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mtyngx\",\"data-framer-name\":\"Templates/Elements/Icons/Quote 02\",layout:\"position\",name:\"Templates/Elements/Icons/Quote 02\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 29\"><g><defs><linearGradient id=\"idss11084367781_1g-2109607478\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(204, 187, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(222, 212, 255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 13.601 9.917 C 13.601 13.895 12.623 17.416 10.666 20.478 C 8.709 23.54 6.085 26.092 2.792 28.133 C 2.649 28.186 2.422 28.094 2.112 27.859 C 1.802 27.623 1.551 27.374 1.36 27.113 C 1.169 26.851 1.002 26.524 0.859 26.131 C 0.716 25.738 0.716 25.49 0.859 25.385 C 2.482 24.181 3.877 22.951 5.047 21.695 C 6.216 20.439 6.8 18.502 6.8 15.884 C 6.8 15.256 6.765 14.811 6.693 14.55 C 6.621 14.288 6.49 14.157 6.299 14.157 C 6.156 14.157 6.001 14.196 5.834 14.275 C 5.667 14.353 5.464 14.393 5.226 14.393 C 3.842 14.393 2.625 13.856 1.575 12.783 C 0.525 11.71 0 10.022 0 7.718 C 0 5.782 0.608 4.015 1.825 2.418 C 3.042 0.822 4.605 0.023 6.514 0.023 C 8.662 0.023 10.38 0.966 11.668 2.85 C 12.957 4.735 13.601 7.09 13.601 9.917 Z M 29.92 9.917 C 29.92 13.895 28.941 17.416 26.985 20.478 C 25.028 23.54 22.403 26.092 19.111 28.133 C 18.967 28.186 18.741 28.094 18.43 27.859 C 18.12 27.623 17.87 27.374 17.679 27.113 C 17.488 26.851 17.321 26.524 17.178 26.131 C 17.035 25.738 17.035 25.49 17.178 25.385 C 18.8 24.181 20.196 22.951 21.365 21.695 C 22.535 20.439 23.119 18.502 23.119 15.884 C 23.119 15.256 23.083 14.811 23.012 14.55 C 22.94 14.288 22.809 14.157 22.618 14.157 C 22.475 14.157 22.32 14.196 22.153 14.275 C 21.986 14.353 21.783 14.393 21.544 14.393 C 20.16 14.393 18.944 13.856 17.894 12.783 C 16.844 11.71 16.319 10.022 16.319 7.718 C 16.319 5.782 16.927 4.015 18.144 2.418 C 19.361 0.822 20.924 0.023 22.833 0.023 C 24.98 0.023 26.698 0.966 27.987 2.85 C 29.275 4.735 29.92 7.09 29.92 9.917 Z\" fill=\"url(#idss11084367781_1g-2109607478)\"></path></g></svg>',svgContentId:11084367781,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-93vtbg\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"rgb(79, 39, 147)\"},children:\"Leandro William\"})}),className:\"framer-4rvszk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"rgb(79, 39, 147)\"},children:\"CEO, docompliance\"})}),className:\"framer-18q65j0\",\"data-framer-name\":\"20 Jan 2024\",fonts:[\"Inter\"],name:\"20 Jan 2024\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"stretch\",pixelHeight:400,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 40px, 1200px)\",src:\"https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp\",srcSet:\"https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp 600w\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10446.000000000002),pixelHeight:400,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 112px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp\",srcSet:\"https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp 600w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10506.800000000001),pixelHeight:400,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 104px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp\",srcSet:\"https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/KV8gbsZHXJM47WJKM120ot71RHY.webp 600w\"},className:\"framer-6cji4k\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1z08lr1\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{background:{alt:\"\",fit:\"fill\",pixelHeight:20,pixelWidth:169,src:\"https://framerusercontent.com/images/qy067MdpoPVBIsQRY8foVkjQ5fU.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10586.000000000002),pixelHeight:20,pixelWidth:169,src:\"https://framerusercontent.com/images/qy067MdpoPVBIsQRY8foVkjQ5fU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10646.800000000001),pixelHeight:20,pixelWidth:169,src:\"https://framerusercontent.com/images/qy067MdpoPVBIsQRY8foVkjQ5fU.svg\"},className:\"framer-71bgh1\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-12x6mx5 hidden-1qd0ceh\",\"data-framer-name\":\"3\",name:\"3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GL7bLe_Dq:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(9601.400000000001),positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 104px, 1200px) - 24px) / 2, 1px)\",src:\"https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png\",srcSet:\"https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png?scale-down-to=1024 950w,https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png 1136w\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10020.000000000002),positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 112px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png\",srcSet:\"https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png?scale-down-to=1024 950w,https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png 1136w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10080.800000000001),positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 104px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png\",srcSet:\"https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png?scale-down-to=1024 950w,https://framerusercontent.com/images/wXTso75pkWvjKNBMxtqSxGsHdKo.png 1136w\"},className:\"framer-1bdnrnz\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ryfbu\",\"data-framer-name\":\"BG\",name:\"BG\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9733.400000000001),pixelHeight:20,pixelWidth:65,src:\"https://framerusercontent.com/images/cc6SdivZKLz5t7P6rYXqItGB4.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10152.000000000002),pixelHeight:20,pixelWidth:65,src:\"https://framerusercontent.com/images/cc6SdivZKLz5t7P6rYXqItGB4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10212.800000000001),pixelHeight:20,pixelWidth:65,src:\"https://framerusercontent.com/images/cc6SdivZKLz5t7P6rYXqItGB4.svg\"},className:\"framer-17tlcou\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g08zyc\",\"data-framer-name\":\"card-txt\",name:\"card-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-156d7ka\",\"data-framer-name\":\"top\",name:\"top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue41=getLocalizedValue(\"v48\",activeLocale))!==null&&_getLocalizedValue41!==void 0?_getLocalizedValue41:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, rgb(255, 255, 255))\"},children:'\"A nova plataforma disponibilizada pela Asimov demonstra todo carinho e aten\\xe7\\xe3o que eles tem pela gente. Fizeram muito do que eu esperava e mais ainda do que nem sonhava com a plataforma.\"'})}),className:\"framer-zhajzz\",\"data-framer-name\":\"Athos has allowed us to deliver on relevant projects on time and strengthened our team.\",fonts:[\"Inter\"],name:\"Athos has allowed us to deliver on relevant projects on time and strengthened our team.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i703yd\",\"data-framer-name\":\"Avatar label group\",name:\"Avatar label group\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vrjo7z\",\"data-framer-name\":\"Templates/Elements/Icons/Quote 02\",layout:\"position\",name:\"Templates/Elements/Icons/Quote 02\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 29\"><g><defs><linearGradient id=\"idss8752567272_1g20030363\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, rgb(136, 68, 255)) /* {&quot;name&quot;:&quot;Support-320&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(113,145,167,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 13.601 9.917 C 13.601 13.895 12.623 17.416 10.666 20.478 C 8.709 23.54 6.085 26.092 2.792 28.133 C 2.649 28.186 2.422 28.094 2.112 27.859 C 1.802 27.623 1.551 27.374 1.36 27.113 C 1.169 26.851 1.002 26.524 0.859 26.131 C 0.716 25.738 0.716 25.49 0.859 25.385 C 2.482 24.181 3.877 22.951 5.047 21.695 C 6.216 20.439 6.8 18.502 6.8 15.884 C 6.8 15.256 6.765 14.811 6.693 14.55 C 6.621 14.288 6.49 14.157 6.299 14.157 C 6.156 14.157 6.001 14.196 5.834 14.275 C 5.667 14.353 5.464 14.393 5.226 14.393 C 3.842 14.393 2.625 13.856 1.575 12.783 C 0.525 11.71 0 10.022 0 7.718 C 0 5.782 0.608 4.015 1.825 2.418 C 3.042 0.822 4.605 0.023 6.514 0.023 C 8.662 0.023 10.38 0.966 11.668 2.85 C 12.957 4.735 13.601 7.09 13.601 9.917 Z M 29.92 9.917 C 29.92 13.895 28.941 17.416 26.985 20.478 C 25.028 23.54 22.403 26.092 19.111 28.133 C 18.967 28.186 18.741 28.094 18.43 27.859 C 18.12 27.623 17.87 27.374 17.679 27.113 C 17.488 26.851 17.321 26.524 17.178 26.131 C 17.035 25.738 17.035 25.49 17.178 25.385 C 18.8 24.181 20.196 22.951 21.365 21.695 C 22.535 20.439 23.119 18.502 23.119 15.884 C 23.119 15.256 23.083 14.811 23.012 14.55 C 22.94 14.288 22.809 14.157 22.618 14.157 C 22.475 14.157 22.32 14.196 22.153 14.275 C 21.986 14.353 21.783 14.393 21.544 14.393 C 20.16 14.393 18.944 13.856 17.894 12.783 C 16.844 11.71 16.319 10.022 16.319 7.718 C 16.319 5.782 16.927 4.015 18.144 2.418 C 19.361 0.822 20.924 0.023 22.833 0.023 C 24.98 0.023 26.698 0.966 27.987 2.85 C 29.275 4.735 29.92 7.09 29.92 9.917 Z\" fill=\"url(#idss8752567272_1g20030363)\"></path></g></svg>',svgContentId:8752567272,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bl99f\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, rgb(255, 255, 255))\"},children:\"Egnom\"})}),className:\"framer-rus528\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue42=getLocalizedValue(\"v49\",activeLocale))!==null&&_getLocalizedValue42!==void 0?_getLocalizedValue42:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, rgb(255, 255, 255))\"},children:\"Aluno da Asimov Academy\"})}),className:\"framer-vfzfc0\",\"data-framer-name\":\"20 Jan 2024\",fonts:[\"Inter\"],name:\"20 Jan 2024\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:250,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-32}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-8kosc3 hidden-1qd0ceh\",\"data-framer-name\":\"4\",name:\"4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ncxhrj\",\"data-framer-name\":\"card-txt\",name:\"card-txt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10icxlt\",\"data-framer-name\":\"top\",name:\"top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue43=getLocalizedValue(\"v50\",activeLocale))!==null&&_getLocalizedValue43!==void 0?_getLocalizedValue43:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ZlcnNvcyBUZXN0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Versos Test SemiBold\", \"Versos Test SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(246, 243, 255)\"},children:\"Novos Leads\"})}),className:\"framer-z3ywes\",\"data-framer-name\":\"7x\",fonts:[\"CUSTOM;Versos Test SemiBold\"],name:\"7x\",verticalAlignment:\"top\",viewBox:(_getLocalizedValue44=getLocalizedValue(\"v51\",activeLocale))!==null&&_getLocalizedValue44!==void 0?_getLocalizedValue44:\"0 0 590 120\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue45=getLocalizedValue(\"v52\",activeLocale))!==null&&_getLocalizedValue45!==void 0?_getLocalizedValue45:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z4gv3n\",\"data-styles-preset\":\"IYNffVmHF\",style:{\"--framer-text-color\":\"rgb(246, 243, 255)\"},children:'\"O novo site da Lanali permitiu a gera\\xe7\\xe3o de novos leads e os clientes t\\xeam elogiado bastante\"'})}),className:\"framer-1c0x0lz\",\"data-framer-name\":\"Faster than traditional hiring\",fonts:[\"Inter\"],name:\"Faster than traditional hiring\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ehtcw\",\"data-framer-name\":\"Avatar label group\",name:\"Avatar label group\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-igemu0\",\"data-framer-name\":\"Templates/Elements/Icons/Quote 02\",layout:\"position\",name:\"Templates/Elements/Icons/Quote 02\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 29\"><g><defs><linearGradient id=\"idss10106073681_1g735391672\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(111, 55, 208)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(79, 39, 147)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 13.601 9.917 C 13.601 13.895 12.623 17.416 10.666 20.478 C 8.709 23.54 6.085 26.092 2.792 28.133 C 2.649 28.186 2.422 28.094 2.112 27.859 C 1.802 27.623 1.551 27.374 1.36 27.113 C 1.169 26.851 1.002 26.524 0.859 26.131 C 0.716 25.738 0.716 25.49 0.859 25.385 C 2.482 24.181 3.877 22.951 5.047 21.695 C 6.216 20.439 6.8 18.502 6.8 15.884 C 6.8 15.256 6.765 14.811 6.693 14.55 C 6.621 14.288 6.49 14.157 6.299 14.157 C 6.156 14.157 6.001 14.196 5.834 14.275 C 5.667 14.353 5.464 14.393 5.226 14.393 C 3.842 14.393 2.625 13.856 1.575 12.783 C 0.525 11.71 0 10.022 0 7.718 C 0 5.782 0.608 4.015 1.825 2.418 C 3.042 0.822 4.605 0.023 6.514 0.023 C 8.662 0.023 10.38 0.966 11.668 2.85 C 12.957 4.735 13.601 7.09 13.601 9.917 Z M 29.92 9.917 C 29.92 13.895 28.941 17.416 26.985 20.478 C 25.028 23.54 22.403 26.092 19.111 28.133 C 18.967 28.186 18.741 28.094 18.43 27.859 C 18.12 27.623 17.87 27.374 17.679 27.113 C 17.488 26.851 17.321 26.524 17.178 26.131 C 17.035 25.738 17.035 25.49 17.178 25.385 C 18.8 24.181 20.196 22.951 21.365 21.695 C 22.535 20.439 23.119 18.502 23.119 15.884 C 23.119 15.256 23.083 14.811 23.012 14.55 C 22.94 14.288 22.809 14.157 22.618 14.157 C 22.475 14.157 22.32 14.196 22.153 14.275 C 21.986 14.353 21.783 14.393 21.544 14.393 C 20.16 14.393 18.944 13.856 17.894 12.783 C 16.844 11.71 16.319 10.022 16.319 7.718 C 16.319 5.782 16.927 4.015 18.144 2.418 C 19.361 0.822 20.924 0.023 22.833 0.023 C 24.98 0.023 26.698 0.966 27.987 2.85 C 29.275 4.735 29.92 7.09 29.92 9.917 Z\" fill=\"url(#idss10106073681_1g735391672)\"></path></g></svg>',svgContentId:10106073681,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2k788\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"rgb(246, 243, 255)\"},children:\"Fabio Sozzo\"})}),className:\"framer-1kgbcmp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ec5sxx\",\"data-styles-preset\":\"sQVd4CZDN\",style:{\"--framer-text-color\":\"rgb(246, 243, 255)\"},children:\"PMO, Lanali\"})}),className:\"framer-1iktfhv\",\"data-framer-name\":\"20 Jan 2024\",fonts:[\"Inter\"],name:\"20 Jan 2024\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10027.400000000001),pixelHeight:600,pixelWidth:900,sizes:\"max((min(100vw - 104px, 1200px) - 24px) / 2, 1px)\",src:\"https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp\",srcSet:\"https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp 900w\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10446.000000000002),pixelHeight:600,pixelWidth:900,sizes:\"max((min(100vw - 112px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp\",srcSet:\"https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp 900w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10506.800000000001),pixelHeight:600,pixelWidth:900,sizes:\"max((min(100vw - 104px, 1200px) - 72px) / 4, 1px)\",src:\"https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp\",srcSet:\"https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LXNytFVx49wDt1rjd8zxymA0pA.webp 900w\"},className:\"framer-11apui7\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1zcah\",\"data-framer-name\":\"BG\",name:\"BG\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GL7bLe_Dq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10159.400000000001),pixelHeight:33,pixelWidth:63,src:\"https://framerusercontent.com/images/NWCjOpuMeSm4pAB1snbwcM9SGpc.svg\"}},Kx9XRHsdd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10578.000000000002),pixelHeight:33,pixelWidth:63,src:\"https://framerusercontent.com/images/NWCjOpuMeSm4pAB1snbwcM9SGpc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10638.800000000001),pixelHeight:33,pixelWidth:63,src:\"https://framerusercontent.com/images/NWCjOpuMeSm4pAB1snbwcM9SGpc.svg\"},className:\"framer-1ft8kvj\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})]})})]})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1duj12t\",\"data-framer-name\":\"FAQ\",id:elementId15,name:\"FAQ\",ref:ref19,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mnw8v\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue46=getLocalizedValue(\"v53\",activeLocale))!==null&&_getLocalizedValue46!==void 0?_getLocalizedValue46:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 17, 17))\"},children:\"Ficou com alguma d\\xfavida?\"})}),className:\"framer-1eo8vum\",\"data-framer-name\":\"Frequently Asked Questions\",fonts:[\"Inter\"],name:\"Frequently Asked Questions\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13c2ty2\",\"data-framer-name\":\"content\",name:\"content\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uhls02\",\"data-framer-name\":\"txt\",name:\"txt\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ans8a\",\"data-border\":true,\"data-framer-name\":\"q&a\",name:\"q&a\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1545rrt\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1200px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 140px, 1200px)\",y:10683.000000000002},Kx9XRHsdd:{y:11141.600000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:\"max(min(100vw - 160px, 1200px), 1px)\",y:11202.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ngsoc6-container\",children:/*#__PURE__*/_jsx(AccordionFAQ,{height:\"100%\",id:\"QsuoyAPW4\",layoutId:\"QsuoyAPW4\",style:{width:\"100%\"},T8rQFvSBR:(_getLocalizedValue47=getLocalizedValue(\"v55\",activeLocale))!==null&&_getLocalizedValue47!==void 0?_getLocalizedValue47:\"Nosso processo \\xe9 dividido em quatro etapas: come\\xe7amos pelo diagn\\xf3stico do seu problema, definimos as melhores solu\\xe7\\xf5es, desenvolvemos o projeto, e finalizamos com a entrega, oferecendo suporte e ajustes, se necess\\xe1rio. Mantemos uma comunica\\xe7\\xe3o constante para garantir que o projeto atenda suas expectativas.\",variant:\"WNg8gfcX6\",W88zB8mIG:(_getLocalizedValue48=getLocalizedValue(\"v54\",activeLocale))!==null&&_getLocalizedValue48!==void 0?_getLocalizedValue48:\"Como funciona o processo de design?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1200px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 140px, 1200px)\",y:10825.000000000002},Kx9XRHsdd:{y:11283.600000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:\"max(min(100vw - 160px, 1200px), 1px)\",y:11344.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohctyb-container\",children:/*#__PURE__*/_jsx(AccordionFAQ,{height:\"100%\",id:\"IeYpPAfT0\",layoutId:\"IeYpPAfT0\",style:{width:\"100%\"},T8rQFvSBR:(_getLocalizedValue49=getLocalizedValue(\"v57\",activeLocale))!==null&&_getLocalizedValue49!==void 0?_getLocalizedValue49:\"O investimento de um projeto varia de acordo com sua complexidade e escopo. Ap\\xf3s entender suas necessidades, fornecemos um or\\xe7amento personalizado, garantindo transpar\\xeancia e o melhor valor para o seu investimento.\",variant:\"WNg8gfcX6\",W88zB8mIG:(_getLocalizedValue50=getLocalizedValue(\"v56\",activeLocale))!==null&&_getLocalizedValue50!==void 0?_getLocalizedValue50:\"Qual \\xe9 o investimento necess\\xe1rio para um projeto?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1200px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 140px, 1200px)\",y:10967.000000000002},Kx9XRHsdd:{y:11425.600000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:\"max(min(100vw - 160px, 1200px), 1px)\",y:11486.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ga4siq-container\",children:/*#__PURE__*/_jsx(AccordionFAQ,{height:\"100%\",id:\"KHVRQuoUx\",layoutId:\"KHVRQuoUx\",style:{width:\"100%\"},T8rQFvSBR:(_getLocalizedValue51=getLocalizedValue(\"v59\",activeLocale))!==null&&_getLocalizedValue51!==void 0?_getLocalizedValue51:\"Desenvolvemos uma ampla gama de projetos, incluindo landing pages, sites institucionais, blogs, e-commerces, aplicativos, web apps, dashboards e design systems. Estamos prontos para atender desde pequenos neg\\xf3cios at\\xe9 grandes empresas com solu\\xe7\\xf5es digitais completas.\",variant:\"WNg8gfcX6\",W88zB8mIG:(_getLocalizedValue52=getLocalizedValue(\"v58\",activeLocale))!==null&&_getLocalizedValue52!==void 0?_getLocalizedValue52:\"Quais tipos de projetos a Versare realiza?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{width:\"min(100vw - 40px, 1200px)\",y:undefined},GL7bLe_Dq:{width:\"min(100vw - 140px, 1200px)\",y:11109.000000000002},Kx9XRHsdd:{y:11567.600000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:\"max(min(100vw - 160px, 1200px), 1px)\",y:11628.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qnlgi-container\",children:/*#__PURE__*/_jsx(AccordionFAQ,{height:\"100%\",id:\"k9ryzcbH2\",layoutId:\"k9ryzcbH2\",style:{width:\"100%\"},T8rQFvSBR:(_getLocalizedValue53=getLocalizedValue(\"v61\",activeLocale))!==null&&_getLocalizedValue53!==void 0?_getLocalizedValue53:\"O prazo de entrega depende da complexidade do projeto. Em geral, pequenos sites ou landing pages podem ser conclu\\xeddos em algumas semanas, enquanto projetos maiores, como web apps ou design systems, podem levar alguns meses. Fornecemos um cronograma detalhado no in\\xedcio do projeto.\",variant:\"WNg8gfcX6\",W88zB8mIG:(_getLocalizedValue54=getLocalizedValue(\"v60\",activeLocale))!==null&&_getLocalizedValue54!==void 0?_getLocalizedValue54:\"Quanto tempo leva para meu projeto ficar pronto?\",width:\"100%\"})})})})]})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{y:undefined},GL7bLe_Dq:{y:11279.000000000002},Kx9XRHsdd:{y:11817.600000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:998,width:\"100vw\",y:11878.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-94v53p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{variant:\"TSeotqQjL\",yEJImY9XY:\"0px 4px 0px 4px\"},GL7bLe_Dq:{variant:\"SH_zxL5Vq\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"pmzxkIh6u\",layoutId:\"pmzxkIh6u\",style:{width:\"100%\"},variant:\"Vobo7pRP3\",width:\"100%\",yEJImY9XY:\"0px 20px 20px 20px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{y:824}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:856,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:64}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yp2ehm-container\",\"data-framer-name\":\"Whatsapp\",layoutScroll:true,name:\"Whatsapp\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonToTop,{height:\"100%\",id:\"Lrqqcus3U\",JFQpAd1Gc:\"WhatsappLogo\",kApYGeqdk:\"fill\",kHPzkx1dE:\"https://wa.me/5547988695555?text=Ol%C3%A1%2C%20vim%20pelo%20site%20da%20Versare%20e%20gostaria%20de%20um%20or%C3%A7amento.\",layoutId:\"Lrqqcus3U\",name:\"Whatsapp\",style:{height:\"100%\"},SY25T4uEi:false,variant:\"c0h6REo9P\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MK8Tvu52t\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MK8Tvu52t\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MK8Tvu52t\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MK8Tvu52t\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{y:896}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:920,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14llqji-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AFxVQMWvA:{kHPzkx1dE:resolvedLinks[3]},GL7bLe_Dq:{kHPzkx1dE:resolvedLinks[2]},Kx9XRHsdd:{kHPzkx1dE:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonToTopWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"c0h6REo9P\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"fgEgs_XDl\",JFQpAd1Gc:\"ArrowUp\",kApYGeqdk:\"regular\",kHPzkx1dE:resolvedLinks[0],layoutId:\"fgEgs_XDl\",style:{height:\"100%\"},SY25T4uEi:true,variant:\"rnMIuNVdt\",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-3X1vO { background: var(--token-c3dd294d-4924-4bd7-80f1-2cfdc6e0e574, rgb(239, 232, 254)) /* {\"name\":\"Light\"} */; }`,\".framer-3X1vO.framer-lux5qc, .framer-3X1vO .framer-lux5qc { display: block; }\",\".framer-3X1vO.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-c3dd294d-4924-4bd7-80f1-2cfdc6e0e574, #efe8fe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1536px; }\",\".framer-3X1vO .framer-1uss9jl-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-3X1vO .framer-1fm1gri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 16px 50px 16px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-9h7oje, .framer-3X1vO .framer-1ggkh98, .framer-3X1vO .framer-cpzg34, .framer-3X1vO .framer-g40j3f { align-content: center; align-items: center; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1udrodj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 24px 30px 24px 30px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1lvl48e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-3X1vO .framer-1ku4a40 { flex: none; height: 49px; overflow: visible; position: relative; text-decoration: none; width: 50px; }\",\".framer-3X1vO .framer-vbroa4 { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-3X1vO .framer-14z88w4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-you2be, .framer-3X1vO .framer-1kpl9ap, .framer-3X1vO .framer-owouwr, .framer-3X1vO .framer-19j7mdl, .framer-3X1vO .framer-hzvxfi { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3X1vO .framer-1krrs80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-1duwu83-container, .framer-3X1vO .framer-7a5397-container, .framer-3X1vO .framer-1g30guu-container, .framer-3X1vO .framer-nqyc1k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3X1vO .framer-1bvitk, .framer-3X1vO .framer-16ysd1g { background-color: rgba(9, 1, 28, 0.9); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-3X1vO .framer-ipirni, .framer-3X1vO .framer-uzmpkt { align-content: flex-end; align-items: flex-end; background-color: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, #f7f4fe); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 32px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 468px; will-change: var(--framer-will-change-override, transform); z-index: 6; }\",\".framer-3X1vO .framer-kjz5f0, .framer-3X1vO .framer-1bboepy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; width: 48px; z-index: 1; }\",\".framer-3X1vO .framer-kax3zt-container, .framer-3X1vO .framer-rdbtoa-container { flex: none; height: 16px; position: relative; width: 16px; z-index: 1; }\",\".framer-3X1vO .framer-aj01w9, .framer-3X1vO .framer-w2zr29 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-138ev6v, .framer-3X1vO .framer-k7i13m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-ww38xh, .framer-3X1vO .framer-ubnmtr, .framer-3X1vO .framer-i6tqcq, .framer-3X1vO .framer-1l61zh9, .framer-3X1vO .framer-10mzg32, .framer-3X1vO .framer-1x3b0au, .framer-3X1vO .framer-1iwr646, .framer-3X1vO .framer-p0tpja, .framer-3X1vO .framer-kva0i0, .framer-3X1vO .framer-11aav9m, .framer-3X1vO .framer-fqaooc, .framer-3X1vO .framer-1r9exp6, .framer-3X1vO .framer-oqfhkm, .framer-3X1vO .framer-1whcbk6, .framer-3X1vO .framer-gx3v29, .framer-3X1vO .framer-7qmogu, .framer-3X1vO .framer-1m0h82g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-3X1vO .framer-18u9yzm, .framer-3X1vO .framer-tbp0qw, .framer-3X1vO .framer-cpp20x, .framer-3X1vO .framer-14dnn3f, .framer-3X1vO .framer-4mxj09, .framer-3X1vO .framer-v8j4gm { --framer-input-background: var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, #ffffff); --framer-input-border-radius-bottom-left: 12px; --framer-input-border-radius-bottom-right: 12px; --framer-input-border-radius-top-left: 12px; --framer-input-border-radius-top-right: 12px; --framer-input-focused-border-color: var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, #8844ff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, #171521); --framer-input-font-family: \"Plus Jakarta Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-text-alignment: left; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 16px; --framer-input-placeholder-color: rgba(18, 17, 18, 0.3); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-3X1vO .framer-6sc4l1, .framer-3X1vO .framer-1n6h6aw, .framer-3X1vO .framer-l19uwn, .framer-3X1vO .framer-128vmzo, .framer-3X1vO .framer-12lkkoz, .framer-3X1vO .framer-m36g3t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-28p7ig, .framer-3X1vO .framer-1c5x5gi, .framer-3X1vO .framer-1sarfev, .framer-3X1vO .framer-atdinm, .framer-3X1vO .framer-125gst8, .framer-3X1vO .framer-hems92, .framer-3X1vO .framer-pv756j, .framer-3X1vO .framer-1euaa5, .framer-3X1vO .framer-1w90xhl, .framer-3X1vO .framer-16imtc0, .framer-3X1vO .framer-1ptwop6, .framer-3X1vO .framer-1wxpoii, .framer-3X1vO .framer-zhajzz, .framer-3X1vO .framer-1c0x0lz, .framer-3X1vO .framer-1eo8vum { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-3X1vO .framer-1l3jl4y, .framer-3X1vO .framer-78i1qx { --framer-input-background: var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, #ffffff); --framer-input-border-radius-bottom-left: 12px; --framer-input-border-radius-bottom-right: 12px; --framer-input-border-radius-top-left: 12px; --framer-input-border-radius-top-right: 12px; --framer-input-focused-border-color: var(--token-9016b06c-fe1b-4910-a61c-9f0b15d19abd, #8844ff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, #171521); --framer-input-font-family: \"Plus Jakarta Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-text-alignment: left; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 16px; --framer-input-placeholder-color: rgba(18, 17, 18, 0.3); --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-3X1vO .framer-1669kan-container, .framer-3X1vO .framer-hkq7rg-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-kajtdf, .framer-3X1vO .framer-1im30qb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1baonek, .framer-3X1vO .framer-lyl0j { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-3X1vO .framer-bctg3o-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-3X1vO .framer-1gvk13z { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-1juqcdc { --border-bottom-width: 1px; --border-color: var(--token-cb5d8fe6-ee10-4b3c-814b-d7c80c24c551, #e3e5e8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1.0077627319085878px 0.6046576391451528px 0px rgba(0, 0, 0, 0), 0px 2.3885756205709185px 1.4331453723425513px 0px rgba(0, 0, 0, 0.00239), 0px 4.357008827588287px 2.614205296552973px 0px rgba(0, 0, 0, 0.00436), 0px 7.2435184293135535px 4.346111057588133px 0px rgba(0, 0, 0, 0.00724), 0px 11.697691633173964px 7.018614979904379px 0px rgba(0, 0, 0, 0.0117), 0px 19.147960564453385px 11.488776338672032px 0px rgba(0, 0, 0, 0.01915), 0px 32.97149505802081px 19.78289703481249px 0px rgba(0, 0, 0, 0.03297), 0px 60px 36.00000000000001px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 300px; }\",\".framer-3X1vO .framer-bl9kfd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-5hnbwt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-p48srt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3X1vO .framer-1symmp, .framer-3X1vO .framer-yh6rw6, .framer-3X1vO .framer-1tjtge3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3X1vO .framer-3vl7rj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3X1vO .framer-1m1bruc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-9v71se, .framer-3X1vO .framer-cwwdic, .framer-3X1vO .framer-bq0nkx, .framer-3X1vO .framer-1jupfnb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3X1vO .framer-nmc74p, .framer-3X1vO .framer-ayknfv, .framer-3X1vO .framer-1a7voqd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 74px; word-break: break-word; word-wrap: break-word; }\",\".framer-3X1vO .framer-1egtspq, .framer-3X1vO .framer-tuiqam, .framer-3X1vO .framer-q2ihzf, .framer-3X1vO .framer-4504as { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-3X1vO .framer-1sa1r91-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-3X1vO .framer-13sf5po { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-q1hik4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-12ohyw2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-ggdf8h, .framer-3X1vO .framer-1s8knn8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1dm04d7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-86s8hq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1t9w2np { --border-bottom-width: 1px; --border-color: var(--token-a8276f5f-592b-424c-a824-c760c9e1c142, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-user-select: none; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; user-select: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3X1vO .framer-19t6a9i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-1it55cl { flex: none; height: 19px; overflow: hidden; position: relative; width: 19px; }\",\".framer-3X1vO .framer-tek5w0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-1ughju { background: linear-gradient(90deg, var(--token-a8276f5f-592b-424c-a824-c760c9e1c142, rgba(255, 255, 255, 0.1)) 0%, var(--token-a8276f5f-592b-424c-a824-c760c9e1c142, rgba(255, 255, 255, 0.1)) 50%, var(--token-a8276f5f-592b-424c-a824-c760c9e1c142, rgba(255, 255, 255, 0.1)) 100%); background-color: var(--token-a8276f5f-592b-424c-a824-c760c9e1c142, rgba(255, 255, 255, 0.1)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 1px; overflow: hidden; position: relative; width: 75%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3X1vO .framer-1d7rqv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-nxspzy { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; opacity: 0.8; position: relative; width: 1px; }\",\".framer-3X1vO .framer-130dvwj { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; user-select: none; width: min-content; }\",\".framer-3X1vO .framer-1kftmyu { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0,0,0,0) 83.17497184684684%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mask: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0,0,0,0) 83.17497184684684%) add; overflow: hidden; padding: 0px; position: absolute; right: -30px; top: -30px; width: min-content; z-index: 0; }\",\".framer-3X1vO .framer-1oy6ayo { flex: none; height: 82px; position: relative; width: 112px; }\",\".framer-3X1vO .framer-1rv91de, .framer-3X1vO .framer-qlt7pl, .framer-3X1vO .framer-1aa1451, .framer-3X1vO .framer-1i9kg2l { flex: none; height: 81px; position: relative; width: 112px; }\",\".framer-3X1vO .framer-5h8kma { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 500px; overflow: visible; position: relative; width: 500px; z-index: 0; }\",\".framer-3X1vO .framer-1sv6mr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1pbrrxy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-bn4e4c { --framer-paragraph-spacing: 16px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-3X1vO .framer-1p98mc3-container { flex: 1 0 0px; height: 72px; position: relative; width: 1px; z-index: 1; }\",\".framer-3X1vO .framer-1apnn4i, .framer-3X1vO .framer-gbadlr, .framer-3X1vO .framer-1vzpxkp, .framer-3X1vO .framer-i1xh3a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-1kr2ibj, .framer-3X1vO .framer-1an1kli, .framer-3X1vO .framer-wzihz, .framer-3X1vO .framer-wm98mt, .framer-3X1vO .framer-f1q2w9 { flex: none; height: 64px; mix-blend-mode: multiply; overflow: visible; position: relative; width: 200px; }\",\".framer-3X1vO .framer-ed085f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-fncard { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-199uzcp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 50px 16px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-42ypqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-at9o4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-c0s7qn { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 630px; word-break: break-word; word-wrap: break-word; }\",\".framer-3X1vO .framer-1s889jx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-18bhdpf-container { flex: none; height: auto; position: sticky; top: 100px; width: 100%; will-change: transform; z-index: 2; }\",\".framer-3X1vO .framer-tt1kng-container { flex: none; height: auto; position: sticky; top: 130px; width: 100%; will-change: transform; z-index: 3; }\",\".framer-3X1vO .framer-17p640p-container { flex: none; height: auto; position: sticky; top: 170px; width: 100%; will-change: transform; z-index: 4; }\",\".framer-3X1vO .framer-1jptgxw-container { flex: none; height: auto; position: sticky; top: 210px; width: 100%; will-change: transform; z-index: 5; }\",\".framer-3X1vO .framer-uy0h6j-container, .framer-3X1vO .framer-1ngsoc6-container, .framer-3X1vO .framer-ohctyb-container, .framer-3X1vO .framer-ga4siq-container, .framer-3X1vO .framer-9qnlgi-container, .framer-3X1vO .framer-94v53p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1awhxet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1645nc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-v2yrs9, .framer-3X1vO .framer-1o9ant4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-tg606c { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 648px; word-break: break-word; word-wrap: break-word; }\",\".framer-3X1vO .framer-4d9we6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1xtek2c { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-11b8gm3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 504px; }\",\".framer-3X1vO .framer-1qwrecd, .framer-3X1vO .framer-1cd3trm, .framer-3X1vO .framer-1dgyyh5, .framer-3X1vO .framer-1v6blyh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-186x49c, .framer-3X1vO .framer-1qgl8m3, .framer-3X1vO .framer-1di5kfh, .framer-3X1vO .framer-1bqu4k6 { --border-bottom-width: 1px; --border-color: var(--token-690aab96-63e4-41b3-aed0-8ac9a2d50b08, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-user-select: none; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; user-select: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3X1vO .framer-toi7wy, .framer-3X1vO .framer-p6ype2, .framer-3X1vO .framer-1op52e4, .framer-3X1vO .framer-15mwcta { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; position: relative; width: 18px; }\",\".framer-3X1vO .framer-1hee3pc, .framer-3X1vO .framer-1j92j7u, .framer-3X1vO .framer-bwxxmc, .framer-3X1vO .framer-1cnt79k { --framer-paragraph-spacing: 16px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-3X1vO .framer-189amn7-container, .framer-3X1vO .framer-1dch73j-container, .framer-3X1vO .framer-90u03z-container, .framer-3X1vO .framer-aoxi2y-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-3X1vO .framer-1q7lb7l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-3X1vO .framer-1o9fhgo-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-3X1vO .framer-fcnuwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-hs9hlk { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 64px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-170hdj9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-b25g8h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-yal4m9 { --border-bottom-width: 1px; --border-color: rgba(17, 16, 17, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-h01lht, .framer-3X1vO .framer-q3t4x1, .framer-3X1vO .framer-q6fv61, .framer-3X1vO .framer-12xcqf2, .framer-3X1vO .framer-18q65j0, .framer-3X1vO .framer-vfzfc0 { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-3X1vO .framer-eb8wz3, .framer-3X1vO .framer-hxe9ou, .framer-3X1vO .framer-7oupnt { --border-bottom-width: 1px; --border-color: rgba(17, 16, 17, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-yomn8z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-68qxi2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 32px 128px 32px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1m2ybut { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-3X1vO .framer-63vcw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 732px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1b6i8qs { align-content: flex-start; align-items: flex-start; background-color: #b89dff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-19m8ebl, .framer-3X1vO .framer-6cji4k, .framer-3X1vO .framer-1bdnrnz, .framer-3X1vO .framer-11apui7 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 306px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3X1vO .framer-1pw37gp { background-color: rgba(234, 29, 158, 0.5); bottom: -1px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-3X1vO .framer-qg2r12 { flex: none; height: 42px; overflow: hidden; position: relative; width: 188px; }\",\".framer-3X1vO .framer-6diuoa { align-content: flex-start; align-items: flex-start; background-color: #b89dff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-14a2a4h { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1p66278, .framer-3X1vO .framer-z3ywes { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-3X1vO .framer-xc1tdb { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-bf1iz0, .framer-3X1vO .framer-1mtyngx, .framer-3X1vO .framer-vrjo7z, .framer-3X1vO .framer-igemu0 { flex: none; height: 29px; position: relative; width: 30px; }\",\".framer-3X1vO .framer-1303hyj, .framer-3X1vO .framer-93vtbg, .framer-3X1vO .framer-1bl99f, .framer-3X1vO .framer-e2k788 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-1ldiahm { align-content: flex-start; align-items: flex-start; background-color: #ded4ff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-wl4sez { align-content: flex-start; align-items: flex-start; background-color: #ded4ff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1xfcwmd, .framer-3X1vO .framer-156d7ka { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1vuat9h, .framer-3X1vO .framer-i703yd, .framer-3X1vO .framer-3ehtcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3X1vO .framer-4rvszk, .framer-3X1vO .framer-rus528, .framer-3X1vO .framer-1kgbcmp { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3X1vO .framer-1z08lr1 { background-color: rgba(24, 84, 236, 0.1); bottom: -1px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-3X1vO .framer-71bgh1 { flex: none; height: 26px; overflow: hidden; position: relative; width: 220px; }\",\".framer-3X1vO .framer-12x6mx5 { align-content: flex-start; align-items: flex-start; background-color: #4f2793; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-2ryfbu { background-color: rgba(0, 0, 0, 0.2); bottom: -1px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-3X1vO .framer-17tlcou { flex: none; height: 42px; overflow: hidden; position: relative; width: 140px; }\",\".framer-3X1vO .framer-g08zyc { align-content: flex-start; align-items: flex-start; background-color: #4f2793; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-8kosc3 { align-content: flex-start; align-items: flex-start; background-color: #371c68; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-ncxhrj { align-content: flex-start; align-items: flex-start; background-color: #371c68; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-10icxlt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1iktfhv { --framer-paragraph-spacing: 14px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-3X1vO .framer-t1zcah { background-color: rgba(173, 43, 52, 0.45); bottom: -1px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-3X1vO .framer-1ft8kvj { flex: none; height: 42px; overflow: hidden; position: relative; width: 80px; }\",\".framer-3X1vO .framer-1duj12t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-15mnw8v { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-13c2ty2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-1uhls02 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-8ans8a { --border-bottom-width: 0px; --border-color: rgba(17, 16, 17, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3X1vO .framer-1545rrt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3X1vO .framer-yp2ehm-container { bottom: 88px; flex: none; height: 56px; position: fixed; right: 24px; width: auto; z-index: 3; }\",\".framer-3X1vO .framer-14llqji-container { bottom: 24px; flex: none; height: 56px; position: fixed; right: 24px; width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3X1vO.framer-72rtr7, .framer-3X1vO .framer-1fm1gri, .framer-3X1vO .framer-9h7oje, .framer-3X1vO .framer-1lvl48e, .framer-3X1vO .framer-14z88w4, .framer-3X1vO .framer-1krrs80, .framer-3X1vO .framer-ipirni, .framer-3X1vO .framer-kjz5f0, .framer-3X1vO .framer-aj01w9, .framer-3X1vO .framer-138ev6v, .framer-3X1vO .framer-6sc4l1, .framer-3X1vO .framer-1n6h6aw, .framer-3X1vO .framer-l19uwn, .framer-3X1vO .framer-kajtdf, .framer-3X1vO .framer-1gvk13z, .framer-3X1vO .framer-1juqcdc, .framer-3X1vO .framer-bl9kfd, .framer-3X1vO .framer-5hnbwt, .framer-3X1vO .framer-p48srt, .framer-3X1vO .framer-1symmp, .framer-3X1vO .framer-3vl7rj, .framer-3X1vO .framer-yh6rw6, .framer-3X1vO .framer-1tjtge3, .framer-3X1vO .framer-1m1bruc, .framer-3X1vO .framer-9v71se, .framer-3X1vO .framer-cwwdic, .framer-3X1vO .framer-bq0nkx, .framer-3X1vO .framer-1jupfnb, .framer-3X1vO .framer-13sf5po, .framer-3X1vO .framer-q1hik4, .framer-3X1vO .framer-12ohyw2, .framer-3X1vO .framer-ggdf8h, .framer-3X1vO .framer-1dm04d7, .framer-3X1vO .framer-86s8hq, .framer-3X1vO .framer-1t9w2np, .framer-3X1vO .framer-19t6a9i, .framer-3X1vO .framer-1s8knn8, .framer-3X1vO .framer-tek5w0, .framer-3X1vO .framer-uzmpkt, .framer-3X1vO .framer-1bboepy, .framer-3X1vO .framer-w2zr29, .framer-3X1vO .framer-k7i13m, .framer-3X1vO .framer-128vmzo, .framer-3X1vO .framer-12lkkoz, .framer-3X1vO .framer-m36g3t, .framer-3X1vO .framer-1im30qb, .framer-3X1vO .framer-1d7rqv3, .framer-3X1vO .framer-130dvwj, .framer-3X1vO .framer-1kftmyu, .framer-3X1vO .framer-1sv6mr3, .framer-3X1vO .framer-1pbrrxy, .framer-3X1vO .framer-1apnn4i, .framer-3X1vO .framer-ed085f, .framer-3X1vO .framer-gbadlr, .framer-3X1vO .framer-1vzpxkp, .framer-3X1vO .framer-i1xh3a, .framer-3X1vO .framer-fncard, .framer-3X1vO .framer-199uzcp, .framer-3X1vO .framer-1ggkh98, .framer-3X1vO .framer-42ypqm, .framer-3X1vO .framer-at9o4p, .framer-3X1vO .framer-1s889jx, .framer-3X1vO .framer-1awhxet, .framer-3X1vO .framer-cpzg34, .framer-3X1vO .framer-1645nc2, .framer-3X1vO .framer-v2yrs9, .framer-3X1vO .framer-4d9we6, .framer-3X1vO .framer-1xtek2c, .framer-3X1vO .framer-11b8gm3, .framer-3X1vO .framer-1qwrecd, .framer-3X1vO .framer-186x49c, .framer-3X1vO .framer-1cd3trm, .framer-3X1vO .framer-1qgl8m3, .framer-3X1vO .framer-1dgyyh5, .framer-3X1vO .framer-1di5kfh, .framer-3X1vO .framer-1v6blyh, .framer-3X1vO .framer-1bqu4k6, .framer-3X1vO .framer-1q7lb7l, .framer-3X1vO .framer-fcnuwj, .framer-3X1vO .framer-hs9hlk, .framer-3X1vO .framer-170hdj9, .framer-3X1vO .framer-b25g8h, .framer-3X1vO .framer-yal4m9, .framer-3X1vO .framer-eb8wz3, .framer-3X1vO .framer-hxe9ou, .framer-3X1vO .framer-7oupnt, .framer-3X1vO .framer-yomn8z, .framer-3X1vO .framer-g40j3f, .framer-3X1vO .framer-68qxi2, .framer-3X1vO .framer-1o9ant4, .framer-3X1vO .framer-63vcw1, .framer-3X1vO .framer-1b6i8qs, .framer-3X1vO .framer-19m8ebl, .framer-3X1vO .framer-14a2a4h, .framer-3X1vO .framer-xc1tdb, .framer-3X1vO .framer-1303hyj, .framer-3X1vO .framer-1ldiahm, .framer-3X1vO .framer-1xfcwmd, .framer-3X1vO .framer-1vuat9h, .framer-3X1vO .framer-93vtbg, .framer-3X1vO .framer-6cji4k, .framer-3X1vO .framer-12x6mx5, .framer-3X1vO .framer-1bdnrnz, .framer-3X1vO .framer-156d7ka, .framer-3X1vO .framer-i703yd, .framer-3X1vO .framer-1bl99f, .framer-3X1vO .framer-8kosc3, .framer-3X1vO .framer-10icxlt, .framer-3X1vO .framer-3ehtcw, .framer-3X1vO .framer-e2k788, .framer-3X1vO .framer-11apui7, .framer-3X1vO .framer-1duj12t, .framer-3X1vO .framer-15mnw8v, .framer-3X1vO .framer-13c2ty2, .framer-3X1vO .framer-1uhls02, .framer-3X1vO .framer-8ans8a, .framer-3X1vO .framer-1545rrt { gap: 0px; } .framer-3X1vO.framer-72rtr7 > *, .framer-3X1vO .framer-fncard > *, .framer-3X1vO .framer-11b8gm3 > *, .framer-3X1vO .framer-fcnuwj > *, .framer-3X1vO .framer-1b6i8qs > *, .framer-3X1vO .framer-14a2a4h > *, .framer-3X1vO .framer-1303hyj > *, .framer-3X1vO .framer-1ldiahm > *, .framer-3X1vO .framer-1xfcwmd > *, .framer-3X1vO .framer-93vtbg > *, .framer-3X1vO .framer-12x6mx5 > *, .framer-3X1vO .framer-156d7ka > *, .framer-3X1vO .framer-1bl99f > *, .framer-3X1vO .framer-8kosc3 > *, .framer-3X1vO .framer-e2k788 > *, .framer-3X1vO .framer-1duj12t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3X1vO.framer-72rtr7 > :first-child, .framer-3X1vO .framer-1fm1gri > :first-child, .framer-3X1vO .framer-9h7oje > :first-child, .framer-3X1vO .framer-ipirni > :first-child, .framer-3X1vO .framer-138ev6v > :first-child, .framer-3X1vO .framer-6sc4l1 > :first-child, .framer-3X1vO .framer-1n6h6aw > :first-child, .framer-3X1vO .framer-l19uwn > :first-child, .framer-3X1vO .framer-kajtdf > :first-child, .framer-3X1vO .framer-1juqcdc > :first-child, .framer-3X1vO .framer-bl9kfd > :first-child, .framer-3X1vO .framer-5hnbwt > :first-child, .framer-3X1vO .framer-3vl7rj > :first-child, .framer-3X1vO .framer-1m1bruc > :first-child, .framer-3X1vO .framer-13sf5po > :first-child, .framer-3X1vO .framer-12ohyw2 > :first-child, .framer-3X1vO .framer-ggdf8h > :first-child, .framer-3X1vO .framer-1dm04d7 > :first-child, .framer-3X1vO .framer-86s8hq > :first-child, .framer-3X1vO .framer-1s8knn8 > :first-child, .framer-3X1vO .framer-uzmpkt > :first-child, .framer-3X1vO .framer-k7i13m > :first-child, .framer-3X1vO .framer-128vmzo > :first-child, .framer-3X1vO .framer-12lkkoz > :first-child, .framer-3X1vO .framer-m36g3t > :first-child, .framer-3X1vO .framer-1im30qb > :first-child, .framer-3X1vO .framer-130dvwj > :first-child, .framer-3X1vO .framer-1kftmyu > :first-child, .framer-3X1vO .framer-fncard > :first-child, .framer-3X1vO .framer-199uzcp > :first-child, .framer-3X1vO .framer-1ggkh98 > :first-child, .framer-3X1vO .framer-42ypqm > :first-child, .framer-3X1vO .framer-at9o4p > :first-child, .framer-3X1vO .framer-1s889jx > :first-child, .framer-3X1vO .framer-1awhxet > :first-child, .framer-3X1vO .framer-cpzg34 > :first-child, .framer-3X1vO .framer-1645nc2 > :first-child, .framer-3X1vO .framer-v2yrs9 > :first-child, .framer-3X1vO .framer-4d9we6 > :first-child, .framer-3X1vO .framer-11b8gm3 > :first-child, .framer-3X1vO .framer-1qwrecd > :first-child, .framer-3X1vO .framer-1cd3trm > :first-child, .framer-3X1vO .framer-1dgyyh5 > :first-child, .framer-3X1vO .framer-1v6blyh > :first-child, .framer-3X1vO .framer-fcnuwj > :first-child, .framer-3X1vO .framer-hs9hlk > :first-child, .framer-3X1vO .framer-b25g8h > :first-child, .framer-3X1vO .framer-yal4m9 > :first-child, .framer-3X1vO .framer-eb8wz3 > :first-child, .framer-3X1vO .framer-hxe9ou > :first-child, .framer-3X1vO .framer-7oupnt > :first-child, .framer-3X1vO .framer-yomn8z > :first-child, .framer-3X1vO .framer-g40j3f > :first-child, .framer-3X1vO .framer-68qxi2 > :first-child, .framer-3X1vO .framer-1o9ant4 > :first-child, .framer-3X1vO .framer-1b6i8qs > :first-child, .framer-3X1vO .framer-14a2a4h > :first-child, .framer-3X1vO .framer-1303hyj > :first-child, .framer-3X1vO .framer-1ldiahm > :first-child, .framer-3X1vO .framer-1xfcwmd > :first-child, .framer-3X1vO .framer-93vtbg > :first-child, .framer-3X1vO .framer-12x6mx5 > :first-child, .framer-3X1vO .framer-156d7ka > :first-child, .framer-3X1vO .framer-1bl99f > :first-child, .framer-3X1vO .framer-8kosc3 > :first-child, .framer-3X1vO .framer-10icxlt > :first-child, .framer-3X1vO .framer-e2k788 > :first-child, .framer-3X1vO .framer-1duj12t > :first-child, .framer-3X1vO .framer-15mnw8v > :first-child, .framer-3X1vO .framer-13c2ty2 > :first-child, .framer-3X1vO .framer-8ans8a > :first-child, .framer-3X1vO .framer-1545rrt > :first-child { margin-top: 0px; } .framer-3X1vO.framer-72rtr7 > :last-child, .framer-3X1vO .framer-1fm1gri > :last-child, .framer-3X1vO .framer-9h7oje > :last-child, .framer-3X1vO .framer-ipirni > :last-child, .framer-3X1vO .framer-138ev6v > :last-child, .framer-3X1vO .framer-6sc4l1 > :last-child, .framer-3X1vO .framer-1n6h6aw > :last-child, .framer-3X1vO .framer-l19uwn > :last-child, .framer-3X1vO .framer-kajtdf > :last-child, .framer-3X1vO .framer-1juqcdc > :last-child, .framer-3X1vO .framer-bl9kfd > :last-child, .framer-3X1vO .framer-5hnbwt > :last-child, .framer-3X1vO .framer-3vl7rj > :last-child, .framer-3X1vO .framer-1m1bruc > :last-child, .framer-3X1vO .framer-13sf5po > :last-child, .framer-3X1vO .framer-12ohyw2 > :last-child, .framer-3X1vO .framer-ggdf8h > :last-child, .framer-3X1vO .framer-1dm04d7 > :last-child, .framer-3X1vO .framer-86s8hq > :last-child, .framer-3X1vO .framer-1s8knn8 > :last-child, .framer-3X1vO .framer-uzmpkt > :last-child, .framer-3X1vO .framer-k7i13m > :last-child, .framer-3X1vO .framer-128vmzo > :last-child, .framer-3X1vO .framer-12lkkoz > :last-child, .framer-3X1vO .framer-m36g3t > :last-child, .framer-3X1vO .framer-1im30qb > :last-child, .framer-3X1vO .framer-130dvwj > :last-child, .framer-3X1vO .framer-1kftmyu > :last-child, .framer-3X1vO .framer-fncard > :last-child, .framer-3X1vO .framer-199uzcp > :last-child, .framer-3X1vO .framer-1ggkh98 > :last-child, .framer-3X1vO .framer-42ypqm > :last-child, .framer-3X1vO .framer-at9o4p > :last-child, .framer-3X1vO .framer-1s889jx > :last-child, .framer-3X1vO .framer-1awhxet > :last-child, .framer-3X1vO .framer-cpzg34 > :last-child, .framer-3X1vO .framer-1645nc2 > :last-child, .framer-3X1vO .framer-v2yrs9 > :last-child, .framer-3X1vO .framer-4d9we6 > :last-child, .framer-3X1vO .framer-11b8gm3 > :last-child, .framer-3X1vO .framer-1qwrecd > :last-child, .framer-3X1vO .framer-1cd3trm > :last-child, .framer-3X1vO .framer-1dgyyh5 > :last-child, .framer-3X1vO .framer-1v6blyh > :last-child, .framer-3X1vO .framer-fcnuwj > :last-child, .framer-3X1vO .framer-hs9hlk > :last-child, .framer-3X1vO .framer-b25g8h > :last-child, .framer-3X1vO .framer-yal4m9 > :last-child, .framer-3X1vO .framer-eb8wz3 > :last-child, .framer-3X1vO .framer-hxe9ou > :last-child, .framer-3X1vO .framer-7oupnt > :last-child, .framer-3X1vO .framer-yomn8z > :last-child, .framer-3X1vO .framer-g40j3f > :last-child, .framer-3X1vO .framer-68qxi2 > :last-child, .framer-3X1vO .framer-1o9ant4 > :last-child, .framer-3X1vO .framer-1b6i8qs > :last-child, .framer-3X1vO .framer-14a2a4h > :last-child, .framer-3X1vO .framer-1303hyj > :last-child, .framer-3X1vO .framer-1ldiahm > :last-child, .framer-3X1vO .framer-1xfcwmd > :last-child, .framer-3X1vO .framer-93vtbg > :last-child, .framer-3X1vO .framer-12x6mx5 > :last-child, .framer-3X1vO .framer-156d7ka > :last-child, .framer-3X1vO .framer-1bl99f > :last-child, .framer-3X1vO .framer-8kosc3 > :last-child, .framer-3X1vO .framer-10icxlt > :last-child, .framer-3X1vO .framer-e2k788 > :last-child, .framer-3X1vO .framer-1duj12t > :last-child, .framer-3X1vO .framer-15mnw8v > :last-child, .framer-3X1vO .framer-13c2ty2 > :last-child, .framer-3X1vO .framer-8ans8a > :last-child, .framer-3X1vO .framer-1545rrt > :last-child { margin-bottom: 0px; } .framer-3X1vO .framer-1fm1gri > *, .framer-3X1vO .framer-138ev6v > *, .framer-3X1vO .framer-6sc4l1 > *, .framer-3X1vO .framer-1n6h6aw > *, .framer-3X1vO .framer-l19uwn > *, .framer-3X1vO .framer-5hnbwt > *, .framer-3X1vO .framer-3vl7rj > *, .framer-3X1vO .framer-1dm04d7 > *, .framer-3X1vO .framer-k7i13m > *, .framer-3X1vO .framer-128vmzo > *, .framer-3X1vO .framer-12lkkoz > *, .framer-3X1vO .framer-m36g3t > *, .framer-3X1vO .framer-1kftmyu > *, .framer-3X1vO .framer-199uzcp > *, .framer-3X1vO .framer-1awhxet > *, .framer-3X1vO .framer-b25g8h > *, .framer-3X1vO .framer-yal4m9 > *, .framer-3X1vO .framer-eb8wz3 > *, .framer-3X1vO .framer-hxe9ou > *, .framer-3X1vO .framer-7oupnt > *, .framer-3X1vO .framer-yomn8z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3X1vO .framer-9h7oje > *, .framer-3X1vO .framer-12ohyw2 > *, .framer-3X1vO .framer-1ggkh98 > *, .framer-3X1vO .framer-cpzg34 > *, .framer-3X1vO .framer-g40j3f > *, .framer-3X1vO .framer-15mnw8v > *, .framer-3X1vO .framer-8ans8a > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-3X1vO .framer-1lvl48e > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-3X1vO .framer-1lvl48e > :first-child, .framer-3X1vO .framer-14z88w4 > :first-child, .framer-3X1vO .framer-1krrs80 > :first-child, .framer-3X1vO .framer-kjz5f0 > :first-child, .framer-3X1vO .framer-aj01w9 > :first-child, .framer-3X1vO .framer-1gvk13z > :first-child, .framer-3X1vO .framer-p48srt > :first-child, .framer-3X1vO .framer-1symmp > :first-child, .framer-3X1vO .framer-yh6rw6 > :first-child, .framer-3X1vO .framer-1tjtge3 > :first-child, .framer-3X1vO .framer-9v71se > :first-child, .framer-3X1vO .framer-cwwdic > :first-child, .framer-3X1vO .framer-bq0nkx > :first-child, .framer-3X1vO .framer-1jupfnb > :first-child, .framer-3X1vO .framer-q1hik4 > :first-child, .framer-3X1vO .framer-1t9w2np > :first-child, .framer-3X1vO .framer-19t6a9i > :first-child, .framer-3X1vO .framer-tek5w0 > :first-child, .framer-3X1vO .framer-1bboepy > :first-child, .framer-3X1vO .framer-w2zr29 > :first-child, .framer-3X1vO .framer-1d7rqv3 > :first-child, .framer-3X1vO .framer-1sv6mr3 > :first-child, .framer-3X1vO .framer-1pbrrxy > :first-child, .framer-3X1vO .framer-1apnn4i > :first-child, .framer-3X1vO .framer-ed085f > :first-child, .framer-3X1vO .framer-gbadlr > :first-child, .framer-3X1vO .framer-1vzpxkp > :first-child, .framer-3X1vO .framer-i1xh3a > :first-child, .framer-3X1vO .framer-1xtek2c > :first-child, .framer-3X1vO .framer-186x49c > :first-child, .framer-3X1vO .framer-1qgl8m3 > :first-child, .framer-3X1vO .framer-1di5kfh > :first-child, .framer-3X1vO .framer-1bqu4k6 > :first-child, .framer-3X1vO .framer-1q7lb7l > :first-child, .framer-3X1vO .framer-170hdj9 > :first-child, .framer-3X1vO .framer-63vcw1 > :first-child, .framer-3X1vO .framer-19m8ebl > :first-child, .framer-3X1vO .framer-xc1tdb > :first-child, .framer-3X1vO .framer-1vuat9h > :first-child, .framer-3X1vO .framer-6cji4k > :first-child, .framer-3X1vO .framer-1bdnrnz > :first-child, .framer-3X1vO .framer-i703yd > :first-child, .framer-3X1vO .framer-3ehtcw > :first-child, .framer-3X1vO .framer-11apui7 > :first-child, .framer-3X1vO .framer-1uhls02 > :first-child { margin-left: 0px; } .framer-3X1vO .framer-1lvl48e > :last-child, .framer-3X1vO .framer-14z88w4 > :last-child, .framer-3X1vO .framer-1krrs80 > :last-child, .framer-3X1vO .framer-kjz5f0 > :last-child, .framer-3X1vO .framer-aj01w9 > :last-child, .framer-3X1vO .framer-1gvk13z > :last-child, .framer-3X1vO .framer-p48srt > :last-child, .framer-3X1vO .framer-1symmp > :last-child, .framer-3X1vO .framer-yh6rw6 > :last-child, .framer-3X1vO .framer-1tjtge3 > :last-child, .framer-3X1vO .framer-9v71se > :last-child, .framer-3X1vO .framer-cwwdic > :last-child, .framer-3X1vO .framer-bq0nkx > :last-child, .framer-3X1vO .framer-1jupfnb > :last-child, .framer-3X1vO .framer-q1hik4 > :last-child, .framer-3X1vO .framer-1t9w2np > :last-child, .framer-3X1vO .framer-19t6a9i > :last-child, .framer-3X1vO .framer-tek5w0 > :last-child, .framer-3X1vO .framer-1bboepy > :last-child, .framer-3X1vO .framer-w2zr29 > :last-child, .framer-3X1vO .framer-1d7rqv3 > :last-child, .framer-3X1vO .framer-1sv6mr3 > :last-child, .framer-3X1vO .framer-1pbrrxy > :last-child, .framer-3X1vO .framer-1apnn4i > :last-child, .framer-3X1vO .framer-ed085f > :last-child, .framer-3X1vO .framer-gbadlr > :last-child, .framer-3X1vO .framer-1vzpxkp > :last-child, .framer-3X1vO .framer-i1xh3a > :last-child, .framer-3X1vO .framer-1xtek2c > :last-child, .framer-3X1vO .framer-186x49c > :last-child, .framer-3X1vO .framer-1qgl8m3 > :last-child, .framer-3X1vO .framer-1di5kfh > :last-child, .framer-3X1vO .framer-1bqu4k6 > :last-child, .framer-3X1vO .framer-1q7lb7l > :last-child, .framer-3X1vO .framer-170hdj9 > :last-child, .framer-3X1vO .framer-63vcw1 > :last-child, .framer-3X1vO .framer-19m8ebl > :last-child, .framer-3X1vO .framer-xc1tdb > :last-child, .framer-3X1vO .framer-1vuat9h > :last-child, .framer-3X1vO .framer-6cji4k > :last-child, .framer-3X1vO .framer-1bdnrnz > :last-child, .framer-3X1vO .framer-i703yd > :last-child, .framer-3X1vO .framer-3ehtcw > :last-child, .framer-3X1vO .framer-11apui7 > :last-child, .framer-3X1vO .framer-1uhls02 > :last-child { margin-right: 0px; } .framer-3X1vO .framer-14z88w4 > *, .framer-3X1vO .framer-q1hik4 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-3X1vO .framer-1krrs80 > *, .framer-3X1vO .framer-9v71se > *, .framer-3X1vO .framer-cwwdic > *, .framer-3X1vO .framer-bq0nkx > *, .framer-3X1vO .framer-1jupfnb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-3X1vO .framer-ipirni > *, .framer-3X1vO .framer-uzmpkt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3X1vO .framer-kjz5f0 > *, .framer-3X1vO .framer-aj01w9 > *, .framer-3X1vO .framer-1gvk13z > *, .framer-3X1vO .framer-p48srt > *, .framer-3X1vO .framer-1symmp > *, .framer-3X1vO .framer-yh6rw6 > *, .framer-3X1vO .framer-1tjtge3 > *, .framer-3X1vO .framer-tek5w0 > *, .framer-3X1vO .framer-1bboepy > *, .framer-3X1vO .framer-w2zr29 > *, .framer-3X1vO .framer-1d7rqv3 > *, .framer-3X1vO .framer-1pbrrxy > *, .framer-3X1vO .framer-1q7lb7l > *, .framer-3X1vO .framer-19m8ebl > *, .framer-3X1vO .framer-6cji4k > *, .framer-3X1vO .framer-1bdnrnz > *, .framer-3X1vO .framer-11apui7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3X1vO .framer-kajtdf > *, .framer-3X1vO .framer-1im30qb > *, .framer-3X1vO .framer-10icxlt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3X1vO .framer-1juqcdc > *, .framer-3X1vO .framer-13sf5po > *, .framer-3X1vO .framer-4d9we6 > *, .framer-3X1vO .framer-hs9hlk > *, .framer-3X1vO .framer-13c2ty2 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-3X1vO .framer-bl9kfd > *, .framer-3X1vO .framer-ggdf8h > *, .framer-3X1vO .framer-1s8knn8 > *, .framer-3X1vO .framer-1s889jx > *, .framer-3X1vO .framer-1645nc2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3X1vO .framer-1m1bruc > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-3X1vO .framer-86s8hq > *, .framer-3X1vO .framer-130dvwj > *, .framer-3X1vO .framer-at9o4p > *, .framer-3X1vO .framer-v2yrs9 > *, .framer-3X1vO .framer-1qwrecd > *, .framer-3X1vO .framer-1cd3trm > *, .framer-3X1vO .framer-1dgyyh5 > *, .framer-3X1vO .framer-1v6blyh > *, .framer-3X1vO .framer-1o9ant4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3X1vO .framer-1t9w2np > *, .framer-3X1vO .framer-186x49c > *, .framer-3X1vO .framer-1qgl8m3 > *, .framer-3X1vO .framer-1di5kfh > *, .framer-3X1vO .framer-1bqu4k6 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3X1vO .framer-19t6a9i > *, .framer-3X1vO .framer-1sv6mr3 > *, .framer-3X1vO .framer-1apnn4i > *, .framer-3X1vO .framer-ed085f > *, .framer-3X1vO .framer-gbadlr > *, .framer-3X1vO .framer-1vzpxkp > *, .framer-3X1vO .framer-i1xh3a > *, .framer-3X1vO .framer-1uhls02 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3X1vO .framer-42ypqm > *, .framer-3X1vO .framer-68qxi2 > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-3X1vO .framer-1xtek2c > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-3X1vO .framer-170hdj9 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-3X1vO .framer-63vcw1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-3X1vO .framer-xc1tdb > *, .framer-3X1vO .framer-1vuat9h > *, .framer-3X1vO .framer-i703yd > *, .framer-3X1vO .framer-3ehtcw > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-3X1vO .framer-1545rrt > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1535px) { .${metadata.bodyClassName}-framer-3X1vO { background: var(--token-c3dd294d-4924-4bd7-80f1-2cfdc6e0e574, rgb(239, 232, 254)) /* {\"name\":\"Light\"} */; } .framer-3X1vO.framer-72rtr7 { width: 1200px; } .framer-3X1vO .framer-9h7oje { gap: 96px; } .framer-3X1vO .framer-13sf5po { padding: 0px 40px 40px 40px; } .framer-3X1vO .framer-12ohyw2 { flex: 3 0 0px; gap: 0px; } .framer-3X1vO .framer-130dvwj { flex: 2 0 0px; width: 1px; } .framer-3X1vO .framer-5h8kma { height: 420px; width: 100%; } .framer-3X1vO .framer-1645nc2 { padding: 80px 0px 0px 0px; } .framer-3X1vO .framer-tg606c { max-width: 640px; width: 100%; } .framer-3X1vO .framer-1xtek2c { order: 0; padding: 0px 36px 0px 36px; } .framer-3X1vO .framer-11b8gm3 { flex: 1 0 0px; gap: 10px; width: 1px; } .framer-3X1vO .framer-1o9fhgo-container { order: 0; } .framer-3X1vO .framer-nqyc1k-container, .framer-3X1vO .framer-xc1tdb, .framer-3X1vO .framer-1vuat9h, .framer-3X1vO .framer-i703yd, .framer-3X1vO .framer-3ehtcw { width: 100%; } .framer-3X1vO .framer-hs9hlk { padding: 64px 36px 32px 36px; } .framer-3X1vO .framer-68qxi2 { padding: 120px 36px 128px 36px; } .framer-3X1vO .framer-63vcw1 { height: min-content; } .framer-3X1vO .framer-1b6i8qs, .framer-3X1vO .framer-1ldiahm, .framer-3X1vO .framer-12x6mx5, .framer-3X1vO .framer-8kosc3 { height: 732px; } .framer-3X1vO .framer-1303hyj, .framer-3X1vO .framer-93vtbg, .framer-3X1vO .framer-1bl99f, .framer-3X1vO .framer-e2k788 { flex: 1 0 0px; width: 1px; } .framer-3X1vO .framer-7qmogu, .framer-3X1vO .framer-1m0h82g, .framer-3X1vO .framer-4rvszk, .framer-3X1vO .framer-18q65j0, .framer-3X1vO .framer-rus528, .framer-3X1vO .framer-vfzfc0, .framer-3X1vO .framer-1kgbcmp, .framer-3X1vO .framer-1iktfhv { 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-3X1vO .framer-9h7oje, .framer-3X1vO .framer-12ohyw2, .framer-3X1vO .framer-11b8gm3 { gap: 0px; } .framer-3X1vO .framer-9h7oje > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-3X1vO .framer-9h7oje > :first-child, .framer-3X1vO .framer-12ohyw2 > :first-child, .framer-3X1vO .framer-11b8gm3 > :first-child { margin-top: 0px; } .framer-3X1vO .framer-9h7oje > :last-child, .framer-3X1vO .framer-12ohyw2 > :last-child, .framer-3X1vO .framer-11b8gm3 > :last-child { margin-bottom: 0px; } .framer-3X1vO .framer-12ohyw2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3X1vO .framer-11b8gm3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-3X1vO { background: var(--token-c3dd294d-4924-4bd7-80f1-2cfdc6e0e574, rgb(239, 232, 254)) /* {\"name\":\"Light\"} */; } .framer-3X1vO.framer-72rtr7 { overflow: hidden; width: 768px; } .framer-3X1vO .framer-1udrodj { padding: 24px 20px 24px 20px; } .framer-3X1vO .framer-1lvl48e { flex: 1 0 0px; order: 0; width: 1px; } .framer-3X1vO .framer-1krrs80 { justify-content: flex-start; order: 2; padding: 0px 16px 0px 0px; } .framer-3X1vO .framer-bctg3o-container { order: 3; } .framer-3X1vO .framer-1gvk13z { gap: 8px; } .framer-3X1vO .framer-1juqcdc { align-content: flex-start; align-items: flex-start; padding: 32px; } .framer-3X1vO .framer-5hnbwt { gap: 0px; width: 100%; } .framer-3X1vO .framer-p48srt, .framer-3X1vO .framer-1symmp, .framer-3X1vO .framer-yh6rw6, .framer-3X1vO .framer-1tjtge3 { gap: 0px; height: 44px; justify-content: flex-start; width: 100%; } .framer-3X1vO .framer-3vl7rj { flex-direction: row; gap: 0px; height: 44px; justify-content: flex-start; width: 100%; } .framer-3X1vO .framer-1m1bruc { gap: 0px; } .framer-3X1vO .framer-9v71se, .framer-3X1vO .framer-cwwdic, .framer-3X1vO .framer-1jupfnb { gap: unset; height: 44px; justify-content: space-between; width: 100%; } .framer-3X1vO .framer-1sa1r91-container, .framer-3X1vO .framer-tg606c, .framer-3X1vO .framer-nqyc1k-container { width: 100%; } .framer-3X1vO .framer-q1hik4 { flex-direction: column; gap: 64px; } .framer-3X1vO .framer-12ohyw2, .framer-3X1vO .framer-8ans8a { flex: none; width: 100%; } .framer-3X1vO .framer-86s8hq, .framer-3X1vO .framer-1s8knn8 { align-content: center; align-items: center; } .framer-3X1vO .framer-1d7rqv3 { justify-content: center; } .framer-3X1vO .framer-5h8kma { height: 548px; width: 548px; } .framer-3X1vO .framer-42ypqm { padding: 80px 40px 80px 40px; } .framer-3X1vO .framer-1s889jx { padding: 0px; } .framer-3X1vO .framer-1645nc2 { padding: 80px 0px 0px 0px; } .framer-3X1vO .framer-v2yrs9 { padding: 0px 60px 0px 60px; } .framer-3X1vO .framer-4d9we6 { gap: 96px; } .framer-3X1vO .framer-1xtek2c { flex-direction: column; gap: 48px; padding: 0px 36px 0px 36px; } .framer-3X1vO .framer-11b8gm3 { gap: 128px; width: 100%; } .framer-3X1vO .framer-1qwrecd, .framer-3X1vO .framer-1cd3trm, .framer-3X1vO .framer-1dgyyh5, .framer-3X1vO .framer-1v6blyh { gap: 32px; height: min-content; } .framer-3X1vO .framer-1qgl8m3 { order: 0; } .framer-3X1vO .framer-1euaa5 { order: 1; } .framer-3X1vO .framer-1dch73j-container { order: 2; } .framer-3X1vO .framer-fcnuwj { padding: 128px 0px 0px 0px; } .framer-3X1vO .framer-170hdj9 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-3X1vO .framer-b25g8h, .framer-3X1vO .framer-eb8wz3, .framer-3X1vO .framer-hxe9ou, .framer-3X1vO .framer-7oupnt { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-3X1vO .framer-15mnw8v { padding: 80px 50px 40px 50px; } .framer-3X1vO .framer-1uhls02 { flex-direction: column; gap: 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3X1vO .framer-1gvk13z, .framer-3X1vO .framer-5hnbwt, .framer-3X1vO .framer-p48srt, .framer-3X1vO .framer-1symmp, .framer-3X1vO .framer-3vl7rj, .framer-3X1vO .framer-yh6rw6, .framer-3X1vO .framer-1tjtge3, .framer-3X1vO .framer-1m1bruc, .framer-3X1vO .framer-9v71se, .framer-3X1vO .framer-cwwdic, .framer-3X1vO .framer-1jupfnb, .framer-3X1vO .framer-q1hik4, .framer-3X1vO .framer-4d9we6, .framer-3X1vO .framer-1xtek2c, .framer-3X1vO .framer-11b8gm3, .framer-3X1vO .framer-1qwrecd, .framer-3X1vO .framer-1cd3trm, .framer-3X1vO .framer-1dgyyh5, .framer-3X1vO .framer-1v6blyh, .framer-3X1vO .framer-170hdj9, .framer-3X1vO .framer-1uhls02 { gap: 0px; } .framer-3X1vO .framer-1gvk13z > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3X1vO .framer-1gvk13z > :first-child, .framer-3X1vO .framer-p48srt > :first-child, .framer-3X1vO .framer-1symmp > :first-child, .framer-3X1vO .framer-3vl7rj > :first-child, .framer-3X1vO .framer-yh6rw6 > :first-child, .framer-3X1vO .framer-1tjtge3 > :first-child { margin-left: 0px; } .framer-3X1vO .framer-1gvk13z > :last-child, .framer-3X1vO .framer-p48srt > :last-child, .framer-3X1vO .framer-1symmp > :last-child, .framer-3X1vO .framer-3vl7rj > :last-child, .framer-3X1vO .framer-yh6rw6 > :last-child, .framer-3X1vO .framer-1tjtge3 > :last-child { margin-right: 0px; } .framer-3X1vO .framer-5hnbwt > *, .framer-3X1vO .framer-1m1bruc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3X1vO .framer-5hnbwt > :first-child, .framer-3X1vO .framer-1m1bruc > :first-child, .framer-3X1vO .framer-q1hik4 > :first-child, .framer-3X1vO .framer-4d9we6 > :first-child, .framer-3X1vO .framer-1xtek2c > :first-child, .framer-3X1vO .framer-11b8gm3 > :first-child, .framer-3X1vO .framer-1qwrecd > :first-child, .framer-3X1vO .framer-1cd3trm > :first-child, .framer-3X1vO .framer-1dgyyh5 > :first-child, .framer-3X1vO .framer-1v6blyh > :first-child, .framer-3X1vO .framer-1uhls02 > :first-child { margin-top: 0px; } .framer-3X1vO .framer-5hnbwt > :last-child, .framer-3X1vO .framer-1m1bruc > :last-child, .framer-3X1vO .framer-q1hik4 > :last-child, .framer-3X1vO .framer-4d9we6 > :last-child, .framer-3X1vO .framer-1xtek2c > :last-child, .framer-3X1vO .framer-11b8gm3 > :last-child, .framer-3X1vO .framer-1qwrecd > :last-child, .framer-3X1vO .framer-1cd3trm > :last-child, .framer-3X1vO .framer-1dgyyh5 > :last-child, .framer-3X1vO .framer-1v6blyh > :last-child, .framer-3X1vO .framer-1uhls02 > :last-child { margin-bottom: 0px; } .framer-3X1vO .framer-p48srt > *, .framer-3X1vO .framer-1symmp > *, .framer-3X1vO .framer-3vl7rj > *, .framer-3X1vO .framer-yh6rw6 > *, .framer-3X1vO .framer-1tjtge3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3X1vO .framer-9v71se > *, .framer-3X1vO .framer-9v71se > :first-child, .framer-3X1vO .framer-9v71se > :last-child, .framer-3X1vO .framer-cwwdic > *, .framer-3X1vO .framer-cwwdic > :first-child, .framer-3X1vO .framer-cwwdic > :last-child, .framer-3X1vO .framer-1jupfnb > *, .framer-3X1vO .framer-1jupfnb > :first-child, .framer-3X1vO .framer-1jupfnb > :last-child, .framer-3X1vO .framer-170hdj9 > *, .framer-3X1vO .framer-170hdj9 > :first-child, .framer-3X1vO .framer-170hdj9 > :last-child { margin: 0px; } .framer-3X1vO .framer-q1hik4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-3X1vO .framer-4d9we6 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-3X1vO .framer-1xtek2c > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-3X1vO .framer-11b8gm3 > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-3X1vO .framer-1qwrecd > *, .framer-3X1vO .framer-1cd3trm > *, .framer-3X1vO .framer-1dgyyh5 > *, .framer-3X1vO .framer-1v6blyh > *, .framer-3X1vO .framer-1uhls02 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-3X1vO { background: var(--token-c3dd294d-4924-4bd7-80f1-2cfdc6e0e574, rgb(239, 232, 254)) /* {\"name\":\"Light\"} */; } .framer-3X1vO.framer-72rtr7 { overflow: hidden; width: 320px; } .framer-3X1vO .framer-1fm1gri { padding: 30px 10px 10px 10px; } .framer-3X1vO .framer-9h7oje { gap: 32px; } .framer-3X1vO .framer-1udrodj { padding: 24px 20px 24px 20px; } .framer-3X1vO .framer-1lvl48e { flex: 1 0 0px; order: 0; width: 1px; } .framer-3X1vO .framer-1krrs80 { justify-content: flex-start; order: 2; padding: 0px 16px 0px 0px; } .framer-3X1vO .framer-bctg3o-container { order: 3; } .framer-3X1vO .framer-1gvk13z { gap: 8px; width: 260px; } .framer-3X1vO .framer-1juqcdc { align-content: flex-start; align-items: flex-start; padding: 32px; width: 100%; } .framer-3X1vO .framer-5hnbwt { gap: 0px; width: 100%; } .framer-3X1vO .framer-p48srt, .framer-3X1vO .framer-1symmp, .framer-3X1vO .framer-yh6rw6, .framer-3X1vO .framer-1tjtge3 { gap: 0px; height: 44px; justify-content: flex-start; width: 100%; } .framer-3X1vO .framer-3vl7rj { flex-direction: row; gap: 0px; height: 44px; justify-content: flex-start; width: 100%; } .framer-3X1vO .framer-1m1bruc { gap: 0px; } .framer-3X1vO .framer-9v71se, .framer-3X1vO .framer-cwwdic, .framer-3X1vO .framer-1jupfnb { gap: unset; height: 44px; justify-content: space-between; width: 100%; } .framer-3X1vO .framer-1sa1r91-container, .framer-3X1vO .framer-1t9w2np, .framer-3X1vO .framer-130dvwj, .framer-3X1vO .framer-c0s7qn, .framer-3X1vO .framer-tg606c, .framer-3X1vO .framer-nqyc1k-container, .framer-3X1vO .framer-1m2ybut, .framer-3X1vO .framer-1vuat9h { width: 100%; } .framer-3X1vO .framer-13sf5po { padding: 0px 20px 40px 20px; } .framer-3X1vO .framer-q1hik4 { flex-direction: column; gap: 48px; } .framer-3X1vO .framer-12ohyw2, .framer-3X1vO .framer-b25g8h, .framer-3X1vO .framer-8ans8a { flex: none; width: 100%; } .framer-3X1vO .framer-ggdf8h, .framer-3X1vO .framer-86s8hq, .framer-3X1vO .framer-1s8knn8 { align-content: center; align-items: center; } .framer-3X1vO .framer-uzmpkt { gap: 24px; padding: 20px; width: 90%; } .framer-3X1vO .framer-14dnn3f, .framer-3X1vO .framer-4mxj09, .framer-3X1vO .framer-v8j4gm, .framer-3X1vO .framer-78i1qx { --framer-input-font-size: 14px; --framer-input-padding: 12px; } .framer-3X1vO .framer-lyl0j, .framer-3X1vO .framer-fqaooc, .framer-3X1vO .framer-4rvszk, .framer-3X1vO .framer-18q65j0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-3X1vO .framer-1ughju { background: linear-gradient(90deg, #eae8e1 0%, rgba(17, 16, 17, 0.2) 49.0990990990991%, rgb(234, 232, 225) 96.84684684684686%); background-color: unset; } .framer-3X1vO .framer-1kftmyu { right: -25px; top: -28px; } .framer-3X1vO .framer-5h8kma { aspect-ratio: 0.9882352941176471 / 1; height: var(--framer-aspect-ratio-supported, 202px); width: 100%; } .framer-3X1vO .framer-bn4e4c { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-3X1vO .framer-199uzcp { padding: 0px 10px 50px 10px; } .framer-3X1vO .framer-42ypqm { gap: 64px; padding: 60px 10px 60px 10px; } .framer-3X1vO .framer-at9o4p, .framer-3X1vO .framer-1o9ant4 { padding: 0px; } .framer-3X1vO .framer-1s889jx { gap: 16px; padding: 0px; } .framer-3X1vO .framer-1awhxet { padding: 40px 10px 20px 10px; } .framer-3X1vO .framer-1645nc2 { gap: 64px; padding: 60px 0px 0px 0px; } .framer-3X1vO .framer-v2yrs9 { padding: 0px 20px 0px 20px; } .framer-3X1vO .framer-4d9we6 { gap: 80px; padding: 0px 10px 0px 10px; } .framer-3X1vO .framer-1xtek2c { flex-direction: column; gap: 32px; padding: 0px; } .framer-3X1vO .framer-11b8gm3 { gap: 64px; width: 100%; } .framer-3X1vO .framer-1qwrecd, .framer-3X1vO .framer-1cd3trm, .framer-3X1vO .framer-1dgyyh5, .framer-3X1vO .framer-1v6blyh { height: min-content; } .framer-3X1vO .framer-189amn7-container, .framer-3X1vO .framer-1dch73j-container, .framer-3X1vO .framer-90u03z-container, .framer-3X1vO .framer-aoxi2y-container { aspect-ratio: 1.1607142857142858 / 1; height: var(--framer-aspect-ratio-supported, 172px); } .framer-3X1vO .framer-fcnuwj { padding: 80px 0px 0px 0px; } .framer-3X1vO .framer-hs9hlk { padding: 40px 0px 32px 0px; } .framer-3X1vO .framer-170hdj9 { flex-direction: column; gap: 32px; padding: 0px 10px 0px 10px; } .framer-3X1vO .framer-yal4m9 { padding: 0px 0px 32px 0px; } .framer-3X1vO .framer-eb8wz3, .framer-3X1vO .framer-hxe9ou, .framer-3X1vO .framer-7oupnt { flex: none; padding: 0px 0px 32px 0px; width: 100%; } .framer-3X1vO .framer-yomn8z { padding: 0px 10px 20px 10px; } .framer-3X1vO .framer-68qxi2 { gap: 48px; padding: 60px 10px 40px 10px; } .framer-3X1vO .framer-63vcw1 { flex-direction: column; height: min-content; } .framer-3X1vO .framer-1b6i8qs, .framer-3X1vO .framer-1ldiahm { flex: none; height: min-content; width: 100%; } .framer-3X1vO .framer-1pw37gp { bottom: unset; top: calc(50.00000000000002% - 100% / 2); } .framer-3X1vO .framer-6diuoa { flex: none; gap: 80px; height: min-content; justify-content: center; } .framer-3X1vO .framer-wl4sez { flex: none; gap: 80px; height: min-content; justify-content: center; order: 1; } .framer-3X1vO .framer-93vtbg { flex: 1 0 0px; width: 1px; } .framer-3X1vO .framer-6cji4k { aspect-ratio: 0.9281045751633987 / 1; height: var(--framer-aspect-ratio-supported, 215px); order: 0; } .framer-3X1vO .framer-1z08lr1 { bottom: 0px; } .framer-3X1vO .framer-1duj12t { padding: 0px 10px 0px 10px; } .framer-3X1vO .framer-15mnw8v { gap: 32px; padding: 60px 10px 40px 10px; } .framer-3X1vO .framer-13c2ty2 { gap: 16px; } .framer-3X1vO .framer-1uhls02 { flex-direction: column; } .framer-3X1vO .framer-yp2ehm-container { bottom: 120px; } .framer-3X1vO .framer-14llqji-container { bottom: 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3X1vO .framer-9h7oje, .framer-3X1vO .framer-1gvk13z, .framer-3X1vO .framer-5hnbwt, .framer-3X1vO .framer-p48srt, .framer-3X1vO .framer-1symmp, .framer-3X1vO .framer-3vl7rj, .framer-3X1vO .framer-yh6rw6, .framer-3X1vO .framer-1tjtge3, .framer-3X1vO .framer-1m1bruc, .framer-3X1vO .framer-9v71se, .framer-3X1vO .framer-cwwdic, .framer-3X1vO .framer-1jupfnb, .framer-3X1vO .framer-q1hik4, .framer-3X1vO .framer-uzmpkt, .framer-3X1vO .framer-42ypqm, .framer-3X1vO .framer-1s889jx, .framer-3X1vO .framer-1645nc2, .framer-3X1vO .framer-4d9we6, .framer-3X1vO .framer-1xtek2c, .framer-3X1vO .framer-11b8gm3, .framer-3X1vO .framer-170hdj9, .framer-3X1vO .framer-68qxi2, .framer-3X1vO .framer-63vcw1, .framer-3X1vO .framer-6diuoa, .framer-3X1vO .framer-wl4sez, .framer-3X1vO .framer-15mnw8v, .framer-3X1vO .framer-13c2ty2, .framer-3X1vO .framer-1uhls02 { gap: 0px; } .framer-3X1vO .framer-9h7oje > *, .framer-3X1vO .framer-1xtek2c > *, .framer-3X1vO .framer-170hdj9 > *, .framer-3X1vO .framer-15mnw8v > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3X1vO .framer-9h7oje > :first-child, .framer-3X1vO .framer-5hnbwt > :first-child, .framer-3X1vO .framer-1m1bruc > :first-child, .framer-3X1vO .framer-q1hik4 > :first-child, .framer-3X1vO .framer-uzmpkt > :first-child, .framer-3X1vO .framer-42ypqm > :first-child, .framer-3X1vO .framer-1s889jx > :first-child, .framer-3X1vO .framer-1645nc2 > :first-child, .framer-3X1vO .framer-4d9we6 > :first-child, .framer-3X1vO .framer-1xtek2c > :first-child, .framer-3X1vO .framer-11b8gm3 > :first-child, .framer-3X1vO .framer-170hdj9 > :first-child, .framer-3X1vO .framer-68qxi2 > :first-child, .framer-3X1vO .framer-63vcw1 > :first-child, .framer-3X1vO .framer-6diuoa > :first-child, .framer-3X1vO .framer-wl4sez > :first-child, .framer-3X1vO .framer-15mnw8v > :first-child, .framer-3X1vO .framer-13c2ty2 > :first-child, .framer-3X1vO .framer-1uhls02 > :first-child { margin-top: 0px; } .framer-3X1vO .framer-9h7oje > :last-child, .framer-3X1vO .framer-5hnbwt > :last-child, .framer-3X1vO .framer-1m1bruc > :last-child, .framer-3X1vO .framer-q1hik4 > :last-child, .framer-3X1vO .framer-uzmpkt > :last-child, .framer-3X1vO .framer-42ypqm > :last-child, .framer-3X1vO .framer-1s889jx > :last-child, .framer-3X1vO .framer-1645nc2 > :last-child, .framer-3X1vO .framer-4d9we6 > :last-child, .framer-3X1vO .framer-1xtek2c > :last-child, .framer-3X1vO .framer-11b8gm3 > :last-child, .framer-3X1vO .framer-170hdj9 > :last-child, .framer-3X1vO .framer-68qxi2 > :last-child, .framer-3X1vO .framer-63vcw1 > :last-child, .framer-3X1vO .framer-6diuoa > :last-child, .framer-3X1vO .framer-wl4sez > :last-child, .framer-3X1vO .framer-15mnw8v > :last-child, .framer-3X1vO .framer-13c2ty2 > :last-child, .framer-3X1vO .framer-1uhls02 > :last-child { margin-bottom: 0px; } .framer-3X1vO .framer-1gvk13z > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3X1vO .framer-1gvk13z > :first-child, .framer-3X1vO .framer-p48srt > :first-child, .framer-3X1vO .framer-1symmp > :first-child, .framer-3X1vO .framer-3vl7rj > :first-child, .framer-3X1vO .framer-yh6rw6 > :first-child, .framer-3X1vO .framer-1tjtge3 > :first-child { margin-left: 0px; } .framer-3X1vO .framer-1gvk13z > :last-child, .framer-3X1vO .framer-p48srt > :last-child, .framer-3X1vO .framer-1symmp > :last-child, .framer-3X1vO .framer-3vl7rj > :last-child, .framer-3X1vO .framer-yh6rw6 > :last-child, .framer-3X1vO .framer-1tjtge3 > :last-child { margin-right: 0px; } .framer-3X1vO .framer-5hnbwt > *, .framer-3X1vO .framer-1m1bruc > *, .framer-3X1vO .framer-1uhls02 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3X1vO .framer-p48srt > *, .framer-3X1vO .framer-1symmp > *, .framer-3X1vO .framer-3vl7rj > *, .framer-3X1vO .framer-yh6rw6 > *, .framer-3X1vO .framer-1tjtge3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3X1vO .framer-9v71se > *, .framer-3X1vO .framer-9v71se > :first-child, .framer-3X1vO .framer-9v71se > :last-child, .framer-3X1vO .framer-cwwdic > *, .framer-3X1vO .framer-cwwdic > :first-child, .framer-3X1vO .framer-cwwdic > :last-child, .framer-3X1vO .framer-1jupfnb > *, .framer-3X1vO .framer-1jupfnb > :first-child, .framer-3X1vO .framer-1jupfnb > :last-child { margin: 0px; } .framer-3X1vO .framer-q1hik4 > *, .framer-3X1vO .framer-68qxi2 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-3X1vO .framer-uzmpkt > *, .framer-3X1vO .framer-63vcw1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3X1vO .framer-42ypqm > *, .framer-3X1vO .framer-1645nc2 > *, .framer-3X1vO .framer-11b8gm3 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-3X1vO .framer-1s889jx > *, .framer-3X1vO .framer-13c2ty2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3X1vO .framer-4d9we6 > *, .framer-3X1vO .framer-6diuoa > *, .framer-3X1vO .framer-wl4sez > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-3X1vO[data-border=\"true\"]::after, .framer-3X1vO [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 12311.5\n * @framerIntrinsicWidth 1536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Kx9XRHsdd\":{\"layout\":[\"fixed\",\"auto\"]},\"GL7bLe_Dq\":{\"layout\":[\"fixed\",\"auto\"]},\"AFxVQMWvA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3X1vO\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12311.5,width:1536};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3U7D2WJULAFN5UCDE2DSKFPDTJNUSRPY/XTZGHUDFURQVBRVTOPX7XHP5YBIQJL2U/FVNNCZHGTHUOM3RCJDOO45QMBIJISVEG.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Versos Test SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/8p8ISyCzNGvnzZGyWMs46znKn5w.woff2\"}]},...SmoothScrollFonts,...LocaleSelectorFonts,...ButtonActionFonts,...PhosphorFonts,...BaseMenuFonts,...ButtonExternalLinkFonts,...TickerFonts,...CardProjectFonts,...SectionTestemonialsFonts,...GalleryProcessFonts,...SectionAboutFonts,...AccordionFAQFonts,...SectionFooterFonts,...ButtonToTopFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kx9XRHsdd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GL7bLe_Dq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AFxVQMWvA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"12311.5\",\"framerIntrinsicWidth\":\"1536\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "clamp", "e", "i", "Animate", "t", "s", "o", "n", "r", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "getLoadingLazyAtYPosition", "css", "FramerJr8mxitIc", "withCSS", "Jr8mxitIc_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapm1rxn2", "args", "onTap185qjak", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerJRsmtx5JF", "withCSS", "JRsmtx5JF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "KLZ7B8iO5_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "__FramerMetadata__", "valuesByLocaleId", "KLZ7B8iO5_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Tt3O3y68S", "TRirHMjNT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcmm6jw", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerVpapRgHsG", "withCSS", "VpapRgHsG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "ButtonExternalLinkFonts", "getFonts", "JKCbhNhnh_default", "MotionDivWithFX", "motion", "BaseTabFonts", "VpapRgHsG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EFarrc8Nu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "TRirHMjNTf7c0o8", "args", "TRirHMjNT1uh9rd3", "TRirHMjNTinvg43", "TRirHMjNT1euq6sf", "TRirHMjNTw1uc3k", "TRirHMjNTsq4vf", "TRirHMjNT12ft2oo", "TRirHMjNT1o4foro", "TRirHMjNT7tsx1g", "TRirHMjNT64e8nh", "TRirHMjNT1d6by6y", "TRirHMjNTcqsua4", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "LayoutGroup", "u", "cx", "Image2", "getLocalizedValue", "ComponentViewportProvider", "SVG", "css", "FramerKLZ7B8iO5", "withCSS", "KLZ7B8iO5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "link", "name1", "smoothScroll", "weight", "width", "props", "_ref", "_humanReadableEnumMap_weight", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kHPzkx1dE", "kApYGeqdk", "JFQpAd1Gc", "SY25T4uEi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "Framerqap46GLHU", "withCSS", "qap46GLHU_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "iconColor", "iconVisible", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "M_GaAsaKn", "PTor2jcXc", "uiSyDaYnE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerdyPL4LF8O", "withCSS", "dyPL4LF8O_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gap", "height", "icon", "id", "title", "visible", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "d8ABvOg7g", "MdehPLSge", "PeF00IUQ5", "mNU1c4o2N", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerxaeyqApXS", "withCSS", "xaeyqApXS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BaseTagFonts", "getFonts", "dyPL4LF8O_default", "ButtonTextFonts", "xaeyqApXS_default", "ButtonTextControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonTitle", "category1", "category2", "category3", "description", "height", "icon", "iconColor", "id", "image1", "image2", "link", "newTab", "title", "visible", "visibleImage", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hwjUzqcQL", "eEqGctvji", "RgNVS01eW", "DvCGzupyt", "JHq9Pqcdq", "Avxp6hVaI", "B29ImcTNf", "WNCMWkDKf", "bUNX1bgUf", "ocahgvNHq", "jipc7f83S", "jEhkoM6zH", "kM6b3z1tp", "MloPiixvQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible1", "visible2", "isDisplayed", "visible3", "visible4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Image2", "css", "FramerWC3X1vL1O", "withCSS", "WC3X1vL1O_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "MotionDivWithFX", "withFX", "motion", "LocaleSelectorFonts", "LocaleSelector_default", "ContainerWithFX", "Container", "ButtonActionFonts", "pwOpoV9LS_default", "PhosphorFonts", "Icon", "BaseMenuFonts", "tzbgq7BTQ_default", "ButtonExternalLinkFonts", "JKCbhNhnh_default", "RichTextWithFX", "RichText2", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "CardProjectFonts", "WC3X1vL1O_default", "SectionTestemonialsFonts", "Nn782Vnb7_default", "GalleryProcessFonts", "Jr8mxitIc_default", "GalleryProcessWithVariantAppearEffect", "withVariantAppearEffect", "SectionAboutFonts", "KLZ7B8iO5_default", "AccordionFAQFonts", "JRsmtx5JF_default", "SectionFooterFonts", "ZPzL4zqtl_default", "ButtonToTopFonts", "qap46GLHU_default", "ButtonToTopWithVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "animation3", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation4", "transition2", "transition3", "animation5", "transition4", "animation6", "transition5", "animation7", "animation8", "animation9", "transition6", "addImageAlt", "image", "alt", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "tyO8KXMmzwelu7j", "overlay", "paginationInfo", "args", "onTap1wvko5h", "dOe6MydoIizu9gt", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "usePreloadLocalizedValues", "isDisplayed1", "ref3", "ref4", "isDisplayed2", "elementId1", "ref5", "ref6", "ref7", "ref8", "elementId2", "ref9", "elementId3", "elementId4", "elementId5", "elementId6", "ref10", "elementId7", "ref11", "elementId8", "ref12", "elementId9", "ref13", "isDisplayed3", "elementId10", "ref14", "elementId11", "ref15", "elementId12", "ref16", "elementId13", "ref17", "elementId14", "ref18", "isDisplayed4", "elementId15", "ref19", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "_getLocalizedValue40", "_getLocalizedValue41", "_getLocalizedValue42", "_getLocalizedValue43", "_getLocalizedValue44", "_getLocalizedValue45", "_getLocalizedValue46", "_getLocalizedValue47", "_getLocalizedValue48", "_getLocalizedValue49", "_getLocalizedValue50", "_getLocalizedValue51", "_getLocalizedValue52", "_getLocalizedValue53", "_getLocalizedValue54", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "getLocalizedValue", "x", "l", "AnimatePresence", "Ga", "FormContainer", "formState", "FormPlainTextInput2", "overlay1", "Floating", "SVG", "overlay2", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
