{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.42/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/Vm91mTl4rZW8DU8fQ4N3/7sTgzlL7lMvSnyWvcFVo/bBLHa_gM7.js", "ssg:https://framerusercontent.com/modules/9ajhXMTvNHa3o84QkAph/ZBplVHhr6ySudJRDhwll/StopScroll.js", "ssg:https://framerusercontent.com/modules/KOTpzJvdhQPdu75yso6J/Wsegnsvy4mcfDaHA5OWB/rO9jerWa9.js", "ssg:https://framerusercontent.com/modules/21p1X1kS8ktvy0CnpAgc/smkI2guvKJh7FE4Auxt5/ka2nfpde_.js", "ssg:https://framerusercontent.com/modules/uuiYsoghbsuUDs7j8e72/NtvplGNyBPMkl7Le8L5v/VD3cSuhXB.js", "ssg:https://framerusercontent.com/modules/4gllqpocJFIDasjDrrpR/1Rsh6rOzEYbphCHndpuF/XUQmsHy7i.js", "ssg:https://framerusercontent.com/modules/qEr0E15uRyESaTovwK5d/YZ73BK3lgTG91kIlHUYo/augiA20Il.js"],
  "sourcesContent": ["function t(e,i,s){return Math.max(e,Math.min(i,s))}class Animate{advance(e){if(!this.isRunning)return;let i=!1;if(this.lerp)this.value=(s=this.value,o=this.to,n=60*this.lerp,r=e,function(e,i,s){return(1-s)*e+s*i}(s,o,1-Math.exp(-n*r))),Math.round(this.value)===this.to&&(this.value=this.to,i=!0);else{this.currentTime+=e;const s=t(0,this.currentTime/this.duration,1);i=s>=1;const o=i?1:this.easing(s);this.value=this.from+(this.to-this.from)*o}var s,o,n,r;this.onUpdate?.(this.value,i),i&&this.stop()}stop(){this.isRunning=!1}fromTo(e,i,{lerp:s=.1,duration:o=1,easing:n=(e=>e),onStart:r,onUpdate:l}){this.from=this.value=e,this.to=i,this.lerp=s,this.duration=o,this.easing=n,this.currentTime=0,this.isRunning=!0,r?.(),this.onUpdate=l}}class Dimensions{constructor({wrapper:e,content:i,autoResize:s=!0,debounce:o=250}={}){this.wrapper=e,this.content=i,s&&(this.debouncedResize=function(e,i){let s;return function(){let o=arguments,n=this;clearTimeout(s),s=setTimeout((function(){e.apply(n,o)}),i)}}(this.resize,o),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(e,...i){let s=this.events[e]||[];for(let e=0,o=s.length;e<o;e++)s[e](...i)}on(e,i){return this.events[e]?.push(i)||(this.events[e]=[i]),()=>{this.events[e]=this.events[e]?.filter((e=>i!==e))}}off(e,i){this.events[e]=this.events[e]?.filter((e=>i!==e))}destroy(){this.events={}}}const e=100/6;class VirtualScroll{constructor(e,{wheelMultiplier:i=1,touchMultiplier:s=1}){this.element=e,this.wheelMultiplier=i,this.touchMultiplier=s,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(e,i){return this.emitter.on(e,i)}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=e=>{const{clientX:i,clientY:s}=e.targetTouches?e.targetTouches[0]:e;this.touchStart.x=i,this.touchStart.y=s,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:e})};onTouchMove=e=>{const{clientX:i,clientY:s}=e.targetTouches?e.targetTouches[0]:e,o=-(i-this.touchStart.x)*this.touchMultiplier,n=-(s-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=i,this.touchStart.y=s,this.lastDelta={x:o,y:n},this.emitter.emit(\"scroll\",{deltaX:o,deltaY:n,event:e})};onTouchEnd=e=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:e})};onWheel=i=>{let{deltaX:s,deltaY:o,deltaMode:n}=i;s*=1===n?e:2===n?this.windowWidth:1,o*=1===n?e:2===n?this.windowHeight:1,s*=this.wheelMultiplier,o*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:i})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:e=window,content:i=document.documentElement,wheelEventsTarget:s=e,eventsTarget:o=s,smoothWheel:n=!0,syncTouch:r=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:h=35,duration:a,easing:c=(e=>Math.min(1,1.001-Math.pow(2,-10*e))),lerp:d=!a&&.1,infinite:p=!1,orientation:u=\"vertical\",gestureOrientation:m=\"vertical\",touchMultiplier:v=1,wheelMultiplier:g=1,autoResize:S=!0,__experimental__naiveDimensions:w=!1}={}){this.__isSmooth=!1,this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:e,deltaY:i,event:s})=>{if(s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const r=0===e&&0===i,l=\"vertical\"===this.options.gestureOrientation&&0===i||\"horizontal\"===this.options.gestureOrientation&&0===e;if(r||l)return;let h=s.composedPath();if(h=h.slice(0,h.indexOf(this.rootElement)),h.find((e=>{var i,s,r,l,h;return(null===(i=e.hasAttribute)||void 0===i?void 0:i.call(e,\"data-lenis-prevent\"))||o&&(null===(s=e.hasAttribute)||void 0===s?void 0:s.call(e,\"data-lenis-prevent-touch\"))||n&&(null===(r=e.hasAttribute)||void 0===r?void 0:r.call(e,\"data-lenis-prevent-wheel\"))||(null===(l=e.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(h=e.classList)||void 0===h?void 0:h.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(this.isSmooth=this.options.syncTouch&&o||this.options.smoothWheel&&n,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();s.preventDefault();let a=i;\"both\"===this.options.gestureOrientation?a=Math.abs(i)>Math.abs(e)?i:e:\"horizontal\"===this.options.gestureOrientation&&(a=e);const c=o&&this.options.syncTouch,d=o&&\"touchend\"===s.type&&Math.abs(a)>5;d&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:d?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const e=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-e),this.emit()}},window.lenisVersion=\"1.0.42\",e!==document.documentElement&&e!==document.body||(e=window),this.options={wrapper:e,content:i,wheelEventsTarget:s,eventsTarget:o,smoothWheel:n,syncTouch:r,syncTouchLerp:l,touchInertiaMultiplier:h,duration:a,easing:c,lerp:d,infinite:p,gestureOrientation:m,orientation:u,touchMultiplier:v,wheelMultiplier:g,autoResize:S,__experimental__naiveDimensions:w},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:e,content:i,autoResize:S}),this.toggleClassName(\"lenis\",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=r||n,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(o,{touchMultiplier:v,wheelMultiplier:g}),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.toggleClassName(\"lenis\",!1),this.toggleClassName(\"lenis-smooth\",!1),this.toggleClassName(\"lenis-scrolling\",!1),this.toggleClassName(\"lenis-stopped\",!1),this.toggleClassName(\"lenis-locked\",!1)}on(e,i){return this.emitter.on(e,i)}off(e,i){return this.emitter.off(e,i)}setScroll(e){this.isHorizontal?this.rootElement.scrollLeft=e:this.rootElement.scrollTop=e}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,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(e){const i=e-(this.time||e);this.time=e,this.animate.advance(.001*i)}scrollTo(e,{offset:i=0,immediate:s=!1,lock:o=!1,duration:n=this.options.duration,easing:r=this.options.easing,lerp:l=!n&&this.options.lerp,onComplete:h,force:a=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(e))e=0;else if([\"bottom\",\"right\",\"end\"].includes(e))e=this.limit;else{let s;if(\"string\"==typeof e?s=document.querySelector(e):(null==e?void 0:e.nodeType)&&(s=e),s){if(this.options.wrapper!==window){const e=this.options.wrapper.getBoundingClientRect();i-=this.isHorizontal?e.left:e.top}const o=s.getBoundingClientRect();e=(this.isHorizontal?o.left:o.top)+this.animatedScroll}}if(\"number\"==typeof e){if(e+=i,e=Math.round(e),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):e=t(0,e,this.limit),s)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));if(!c){if(e===this.targetScroll)return;this.targetScroll=e}this.animate.fromTo(this.animatedScroll,e,{duration:n,easing:r,lerp:l,onStart:()=>{o&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(e,i)=>{this.isScrolling=!0,this.velocity=e-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=e,this.setScroll(this.scroll),c&&(this.targetScroll=e),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.__preventNextScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextScrollEvent})))}})}}}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?(e=this.animatedScroll,i=this.limit,(e%i+i)%i):this.animatedScroll;var e,i}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(e){this.__isSmooth!==e&&(this.__isSmooth=e,this.toggleClassName(\"lenis-smooth\",e))}get isScrolling(){return this.__isScrolling}set isScrolling(e){this.__isScrolling!==e&&(this.__isScrolling=e,this.toggleClassName(\"lenis-scrolling\",e))}get isStopped(){return this.__isStopped}set isStopped(e){this.__isStopped!==e&&(this.__isStopped=e,this.toggleClassName(\"lenis-stopped\",e))}get isLocked(){return this.__isLocked}set isLocked(e){this.__isLocked!==e&&(this.__isLocked=e,this.toggleClassName(\"lenis-locked\",e))}get className(){let e=\"lenis\";return this.isStopped&&(e+=\" lenis-stopped\"),this.isLocked&&(e+=\" lenis-locked\"),this.isScrolling&&(e+=\" lenis-scrolling\"),this.isSmooth&&(e+=\" lenis-smooth\"),e}toggleClassName(e,i){this.rootElement.classList.toggle(e,i),this.emitter.emit(\"className change\",this)}}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\"@studio-freight/lenis\";import{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]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){lenis.current.stop();}else{lenis.current.start();}}else{lenis.current.start();}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{lenis.current.raf(time);requestAnimationFrame(raf);};requestAnimationFrame(raf);return()=>{lenis.current.destroy();lenis.current=null;};},[]);return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"style\",{children:`\n      html.lenis {\n        height: auto;\n      }\n\n      .lenis.lenis-smooth {\n        scroll-behavior: auto !important;\n      }\n\n      .lenis.lenis-smooth [data-lenis-prevent] {\n        overscroll-behavior: contain;\n      }\n\n      .lenis.lenis-stopped {\n        overflow: hidden;\n      }\n\n      .lenis.lenis-scrolling iframe {\n        pointer-events: none;\n      }\n    `})});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={CDI6Rii8d:{hover:true},DyeGGGwwc:{hover:true},FLt_VHeAk:{hover:true},h0izsmXmu:{hover:true},hjocB31iW:{hover:true},Kg2U_C6Wg:{hover:true},OHFMArXbM:{hover:true},OVJ0LuzGs:{hover:true},rfJeUiu7G:{hover:true},W0x9ghm9j:{hover:true},xFFSTRz1B:{hover:true}};const cycleOrder=[\"CDI6Rii8d\",\"Kg2U_C6Wg\",\"W0x9ghm9j\",\"rfJeUiu7G\",\"DyeGGGwwc\",\"xFFSTRz1B\",\"OVJ0LuzGs\",\"hjocB31iW\",\"FLt_VHeAk\",\"h0izsmXmu\",\"OHFMArXbM\"];const serializationHash=\"framer-oQlgs\";const variantClassNames={CDI6Rii8d:\"framer-v-1d9i54t\",DyeGGGwwc:\"framer-v-p00tza\",FLt_VHeAk:\"framer-v-199hjp1\",h0izsmXmu:\"framer-v-7euv2z\",hjocB31iW:\"framer-v-1bg0315\",Kg2U_C6Wg:\"framer-v-w31yfc\",OHFMArXbM:\"framer-v-1tjs0oh\",OVJ0LuzGs:\"framer-v-1778rq5\",rfJeUiu7G:\"framer-v-porwuh\",W0x9ghm9j:\"framer-v-1qkid14\",xFFSTRz1B:\"framer-v-shrlew\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Loftlagsvegv\\xedsar atvinnul\\xedfsins\":\"rfJeUiu7G\",\"Reykjastr\\xe6ti\":\"hjocB31iW\",\"\\xdeaavg\":\"Kg2U_C6Wg\",Advania:\"FLt_VHeAk\",Asembla:\"OVJ0LuzGs\",Card:\"CDI6Rii8d\",Fuglar:\"OHFMArXbM\",Geosalmo:\"W0x9ghm9j\",Nova:\"xFFSTRz1B\",Solar:\"DyeGGGwwc\",Viska:\"h0izsmXmu\"};const getProps=({cursor2,height,id,width,...props})=>{return{...props,moB_MBSwZ:cursor2??props.moB_MBSwZ,variant:humanReadableVariantMap[props.variant]??props.variant??\"CDI6Rii8d\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,moB_MBSwZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CDI6Rii8d\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/shots/24917266-Fuglar-s-transformed-identity-and-enhanced-digital-presence\",motionChild:true,nodeId:\"CDI6Rii8d\",openInNewTab:true,scopeId:\"bBLHa_gM7\",...addPropertyOverrides({DyeGGGwwc:{href:\"https://dribbble.com/shots/26013824-S-lar\"},FLt_VHeAk:{href:\"https://new.advania.com/\"},h0izsmXmu:{href:\"https://www.viska.is/\"},hjocB31iW:{href:\"https://www.reykjastraeti.is/\"},Kg2U_C6Wg:{href:\"https://dribbble.com/shots/17249212-https-tharfalltafadveragrin-is\"},OVJ0LuzGs:{href:\"https://www.asembla.is/\"},rfJeUiu7G:{href:\"https://dribbble.com/shots/23258953-LVA\"},W0x9ghm9j:{href:\"https://dribbble.com/shots/23259052-GeoSalmo\"},xFFSTRz1B:{href:\"https://dribbble.com/shots/23258839-NOVA\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1d9i54t\",className,classNames)} framer-66emye`,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"CDI6Rii8d\",ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,filter:\"brightness(1) saturate(1)\",WebkitFilter:\"brightness(1) saturate(1)\",...style},variants:{\"CDI6Rii8d-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"DyeGGGwwc-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"FLt_VHeAk-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"h0izsmXmu-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"hjocB31iW-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"Kg2U_C6Wg-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"OHFMArXbM-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"OVJ0LuzGs-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"rfJeUiu7G-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"W0x9ghm9j-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"xFFSTRz1B-hover\":{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({\"CDI6Rii8d-hover\":{\"data-framer-name\":undefined},\"DyeGGGwwc-hover\":{\"data-framer-name\":undefined},\"FLt_VHeAk-hover\":{\"data-framer-name\":undefined},\"h0izsmXmu-hover\":{\"data-framer-name\":undefined},\"hjocB31iW-hover\":{\"data-framer-name\":undefined},\"Kg2U_C6Wg-hover\":{\"data-framer-name\":undefined},\"OHFMArXbM-hover\":{\"data-framer-name\":undefined},\"OVJ0LuzGs-hover\":{\"data-framer-name\":undefined},\"rfJeUiu7G-hover\":{\"data-framer-name\":undefined},\"W0x9ghm9j-hover\":{\"data-framer-name\":undefined},\"xFFSTRz1B-hover\":{\"data-framer-name\":undefined},DyeGGGwwc:{\"data-framer-name\":\"Solar\"},FLt_VHeAk:{\"data-framer-name\":\"Advania\"},h0izsmXmu:{\"data-framer-name\":\"Viska\"},hjocB31iW:{\"data-framer-name\":\"Reykjastr\\xe6ti\"},Kg2U_C6Wg:{\"data-framer-name\":\"\\xdeaavg\"},OHFMArXbM:{\"data-framer-name\":\"Fuglar\"},OVJ0LuzGs:{\"data-framer-name\":\"Asembla\"},rfJeUiu7G:{\"data-framer-name\":\"Loftlagsvegv\\xedsar atvinnul\\xedfsins\"},W0x9ghm9j:{\"data-framer-name\":\"Geosalmo\"},xFFSTRz1B:{\"data-framer-cursor\":moB_MBSwZ,\"data-framer-name\":\"Nova\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mzda68\",layoutDependency:layoutDependency,layoutId:\"Uc0CJCRrZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1qi0poh\",layoutDependency:layoutDependency,layoutId:\"e1DEovHMK\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"CDI6Rii8d-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"Kg2U_C6Wg-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},DyeGGGwwc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},FLt_VHeAk:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},h0izsmXmu:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},hjocB31iW:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Kg2U_C6Wg:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},OHFMArXbM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},OVJ0LuzGs:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},rfJeUiu7G:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},W0x9ghm9j:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},xFFSTRz1B:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},whileHover:animation,...addPropertyOverrides({\"CDI6Rii8d-hover\":{whileHover:undefined},\"DyeGGGwwc-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3796,pixelWidth:5060,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png\",srcSet:\"https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png 5060w\"}},\"FLt_VHeAk-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:550,pixelWidth:900,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ieoj1wABJTr53yi6Qk2iCwWtekg.webp\",srcSet:\"https://framerusercontent.com/images/ieoj1wABJTr53yi6Qk2iCwWtekg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ieoj1wABJTr53yi6Qk2iCwWtekg.webp 900w\"}},\"h0izsmXmu-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3840,pixelWidth:4154,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png\",srcSet:\"https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png 4154w\"}},\"hjocB31iW-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:2710,pixelWidth:4612,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png\",srcSet:\"https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=512 512w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png 4612w\"}},\"Kg2U_C6Wg-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:1536,pixelWidth:2048,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp\",srcSet:\"https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp 2048w\"}},\"OHFMArXbM-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3796,pixelWidth:5060,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png\",srcSet:\"https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png 5060w\"}},\"OVJ0LuzGs-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3246,pixelWidth:3824,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png\",srcSet:\"https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png 3824w\"}},\"rfJeUiu7G-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:1152,pixelWidth:2048,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp\",srcSet:\"https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp 2048w\"}},\"W0x9ghm9j-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:1536,pixelWidth:2048,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp\",srcSet:\"https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp 2048w\"}},\"xFFSTRz1B-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||480)-0-(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||480)-0-35.2)/1)*1,(componentViewport?.height||480)*.5926)-0)*.6336999999999999)/2)),pixelHeight:783,pixelWidth:1317,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png\",srcSet:\"https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png 1317w\"}},DyeGGGwwc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3796,pixelWidth:5060,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png\",srcSet:\"https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/dJ8vXvLEAzxfm8JVrToufQ5DZ0k.png 5060w\"}},FLt_VHeAk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:550,pixelWidth:900,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ieoj1wABJTr53yi6Qk2iCwWtekg.webp\",srcSet:\"https://framerusercontent.com/images/ieoj1wABJTr53yi6Qk2iCwWtekg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ieoj1wABJTr53yi6Qk2iCwWtekg.webp 900w\"}},h0izsmXmu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3840,pixelWidth:4154,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png\",srcSet:\"https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/RE7ZFRyimcSqvIvYNBLnGl5T5I.png 4154w\"}},hjocB31iW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:2710,pixelWidth:4612,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png\",srcSet:\"https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=512 512w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/o60eHJI0vzUUHKr7Wy8DSOJUJM.png 4612w\"}},Kg2U_C6Wg:{\"data-border\":true,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:1536,pixelWidth:2048,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp\",srcSet:\"https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TktF8pT3HuB37wYx9RpdmEjTBH4.webp 2048w\"}},OHFMArXbM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3796,pixelWidth:5060,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png\",srcSet:\"https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/XogqwBIP7LxGzTl4pqm3WDR1k.png 5060w\"}},OVJ0LuzGs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:3246,pixelWidth:3824,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png\",srcSet:\"https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/j7Ni6nslDyH2Y44kdC6e19NjQoM.png 3824w\"}},rfJeUiu7G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:1152,pixelWidth:2048,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp\",srcSet:\"https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/K5wVstvwA2o4VFoAozSj3k5c.webp 2048w\"}},W0x9ghm9j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:1536,pixelWidth:2048,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp\",srcSet:\"https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/abUCm0z0z252mfFyWPz4FxWPpA.webp 2048w\"}},xFFSTRz1B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1+19.2+16))/2+0+0)+(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)*.5000000000000002-Math.max((Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*1,(Math.max(Math.max(0,((componentViewport?.height||540)-0-35.2)/1)*1,(componentViewport?.height||540)*.5926)-0)*.6336999999999999)/2)),pixelHeight:783,pixelWidth:1317,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png\",srcSet:\"https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/meLrvXzj5NZaiEcvNqd1ETIaFU4.png 1317w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10eau8m\",layoutDependency:layoutDependency,layoutId:\"yq06nE71l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Project name\"})}),className:\"framer-1wlsmzd\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"CxeFbeyuv\",style:{\"--extracted-r6o4lv\":\"rgb(0, 23, 46)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DyeGGGwwc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"S\\xf3lars clean - up\"})})},FLt_VHeAk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Advania refreshed\"})})},h0izsmXmu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Smart search for Viska\"})})},hjocB31iW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Reykjastr\\xe6ti\"})})},Kg2U_C6Wg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"\\xdearf Alltaf A\\xf0 Vera Gr\\xedn\"})})},OHFMArXbM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Fuglar\u2019s enhanced digital presence\"})})},OVJ0LuzGs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Asembla\"})})},rfJeUiu7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Loftlagsvegv\\xedsar Atvinnul\\xedfsins\"})})},W0x9ghm9j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"GeoSalmo\"})})},xFFSTRz1B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:\"Signup experience at Nova\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"\\xb7\"})}),className:\"framer-zolfgp\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"g8xmHRvPa\",style:{\"--extracted-r6o4lv\":\"rgb(158, 158, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Project type\"})}),className:\"framer-xatbko\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eXpTcSBA_\",style:{\"--extracted-r6o4lv\":\"rgb(158, 158, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DyeGGGwwc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},FLt_VHeAk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},h0izsmXmu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},hjocB31iW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Branding\"})})},Kg2U_C6Wg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},OHFMArXbM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},OVJ0LuzGs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},rfJeUiu7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},W0x9ghm9j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})},xFFSTRz1B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(158, 158, 158))\"},children:\"Web\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oQlgs.framer-66emye, .framer-oQlgs .framer-66emye { display: block; }\",\".framer-oQlgs.framer-1d9i54t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 540px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 540px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oQlgs .framer-mzda68 { flex: 1 0 0px; height: 1px; min-height: 59%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oQlgs .framer-1qi0poh { flex: none; gap: 10px; height: 100%; left: calc(50.00000000000002% - 100% / 2); min-height: 63%; overflow: hidden; position: absolute; top: calc(50.00000000000002% - max(63.37%, 100%) / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oQlgs .framer-10eau8m { 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-oQlgs .framer-1wlsmzd, .framer-oQlgs .framer-zolfgp, .framer-oQlgs .framer-xatbko { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oQlgs.framer-v-1d9i54t.hover .framer-1qi0poh { will-change: var(--framer-will-change-override, transform); }\",\".framer-oQlgs.framer-v-w31yfc.hover.framer-1d9i54t, .framer-oQlgs.framer-v-1qkid14.hover.framer-1d9i54t, .framer-oQlgs.framer-v-porwuh.hover.framer-1d9i54t, .framer-oQlgs.framer-v-p00tza.hover.framer-1d9i54t, .framer-oQlgs.framer-v-shrlew.hover.framer-1d9i54t, .framer-oQlgs.framer-v-1778rq5.hover.framer-1d9i54t, .framer-oQlgs.framer-v-1bg0315.hover.framer-1d9i54t, .framer-oQlgs.framer-v-199hjp1.hover.framer-1d9i54t, .framer-oQlgs.framer-v-7euv2z.hover.framer-1d9i54t, .framer-oQlgs.framer-v-1tjs0oh.hover.framer-1d9i54t { height: 480px; }\",'.framer-oQlgs[data-border=\"true\"]::after, .framer-oQlgs [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 540\n * @framerIntrinsicWidth 540\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kg2U_C6Wg\":{\"layout\":[\"fixed\",\"fixed\"]},\"W0x9ghm9j\":{\"layout\":[\"fixed\",\"fixed\"]},\"rfJeUiu7G\":{\"layout\":[\"fixed\",\"fixed\"]},\"DyeGGGwwc\":{\"layout\":[\"fixed\",\"fixed\"]},\"xFFSTRz1B\":{\"layout\":[\"fixed\",\"fixed\"]},\"OVJ0LuzGs\":{\"layout\":[\"fixed\",\"fixed\"]},\"hjocB31iW\":{\"layout\":[\"fixed\",\"fixed\"]},\"FLt_VHeAk\":{\"layout\":[\"fixed\",\"fixed\"]},\"h0izsmXmu\":{\"layout\":[\"fixed\",\"fixed\"]},\"OHFMArXbM\":{\"layout\":[\"fixed\",\"fixed\"]},\"LSTk0mQ9P\":{\"layout\":[\"fixed\",\"fixed\"]},\"wJw3jzfuF\":{\"layout\":[\"fixed\",\"fixed\"]},\"m8ppqGnc7\":{\"layout\":[\"fixed\",\"fixed\"]},\"n8hMOzVO6\":{\"layout\":[\"fixed\",\"fixed\"]},\"WtgaRmVbD\":{\"layout\":[\"fixed\",\"fixed\"]},\"ihgHaDpGc\":{\"layout\":[\"fixed\",\"fixed\"]},\"nv3Uic0cO\":{\"layout\":[\"fixed\",\"fixed\"]},\"fxxhKhear\":{\"layout\":[\"fixed\",\"fixed\"]},\"Civ674bf7\":{\"layout\":[\"fixed\",\"fixed\"]},\"fni0bjuz9\":{\"layout\":[\"fixed\",\"fixed\"]},\"HTC02Tizl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"moB_MBSwZ\":\"cursor2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbBLHa_gM7=withCSS(Component,css,\"framer-oQlgs\");export default FramerbBLHa_gM7;FramerbBLHa_gM7.displayName=\"Card\";FramerbBLHa_gM7.defaultProps={height:540,width:540};addPropertyControls(FramerbBLHa_gM7,{variant:{options:[\"CDI6Rii8d\",\"Kg2U_C6Wg\",\"W0x9ghm9j\",\"rfJeUiu7G\",\"DyeGGGwwc\",\"xFFSTRz1B\",\"OVJ0LuzGs\",\"hjocB31iW\",\"FLt_VHeAk\",\"h0izsmXmu\",\"OHFMArXbM\"],optionTitles:[\"Card\",\"\\xdeaavg\",\"Geosalmo\",\"Loftlagsvegv\\xedsar atvinnul\\xedfsins\",\"Solar\",\"Nova\",\"Asembla\",\"Reykjastr\\xe6ti\",\"Advania\",\"Viska\",\"Fuglar\"],title:\"Variant\",type:ControlType.Enum},moB_MBSwZ:{title:\"Cursor 2\",type:ControlType.CustomCursor}});addFonts(FramerbBLHa_gM7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbBLHa_gM7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"540\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"moB_MBSwZ\\\":\\\"cursor2\\\"}\",\"framerIntrinsicHeight\":\"540\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kg2U_C6Wg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W0x9ghm9j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rfJeUiu7G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DyeGGGwwc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xFFSTRz1B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OVJ0LuzGs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hjocB31iW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FLt_VHeAk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h0izsmXmu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OHFMArXbM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LSTk0mQ9P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wJw3jzfuF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m8ppqGnc7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n8hMOzVO6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WtgaRmVbD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ihgHaDpGc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nv3Uic0cO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fxxhKhear\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Civ674bf7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fni0bjuz9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HTC02Tizl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bBLHa_gM7.map", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect}from\"react\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function Component(props){const{toggle}=props;useEffect(()=>{if(toggle)document.body.style.overflow=\"hidden\";return()=>{document.body.style.overflow=\"\";};},[!toggle]);return /*#__PURE__*/_jsx(_Fragment,{});}Component.displayName=\"Stop Scroll\";addPropertyControls(Component,{toggle:{type:ControlType.Boolean,title:\"Block Scroll\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Component\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StopScroll.map", "// Generated by Framer (128ce9c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-s5yQx .framer-styles-preset-5z1sjt:not(.rich-text-wrapper), .framer-s5yQx .framer-styles-preset-5z1sjt.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: none; --framer-link-text-color: #000000; --framer-link-text-decoration: none; }\"];export const className=\"framer-s5yQx\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import StopScroll from\"https://framerusercontent.com/modules/9ajhXMTvNHa3o84QkAph/ZBplVHhr6ySudJRDhwll/StopScroll.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KOTpzJvdhQPdu75yso6J/Wsegnsvy4mcfDaHA5OWB/rO9jerWa9.js\";const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const StopScrollFonts=getFonts(StopScroll);const MotionNavWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.nav));const cycleOrder=[\"oU7dYPbuY\",\"ZSAs8li14\",\"cCr51UggL\"];const serializationHash=\"framer-7vLhc\";const variantClassNames={cCr51UggL:\"framer-v-gt0aie\",oU7dYPbuY:\"framer-v-1lebkq3\",ZSAs8li14:\"framer-v-rm0rtm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:2.4,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition2={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition4};const transition5={delay:0,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone default\":\"cCr51UggL\",\"Phone Open\":\"ZSAs8li14\",Desktop:\"oU7dYPbuY\"};const getProps=({click,cursor,height,id,width,...props})=>{return{...props,d7_GscovX:click??props.d7_GscovX,PHq2vJPHf:cursor??props.PHq2vJPHf,variant:humanReadableVariantMap[props.variant]??props.variant??\"oU7dYPbuY\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,d7_GscovX,PHq2vJPHf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oU7dYPbuY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap25pmev=activeVariantCallback(async(...args)=>{if(d7_GscovX){const res=await d7_GscovX(...args);if(res===false)return false;}setVariant(\"cCr51UggL\");});const onTaptesdw6=activeVariantCallback(async(...args)=>{setVariant(\"ZSAs8li14\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ZSAs8li14\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ZSAs8li14\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"cCr51UggL\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"cCr51UggL\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({cCr51UggL:{value:transition3},ZSAs8li14:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionNavWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1lebkq3\",className,classNames),\"data-framer-appear-id\":\"1lebkq3\",\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"oU7dYPbuY\",optimized:true,ref:refBinding,style:{backdropFilter:\"blur(4px)\",backgroundColor:\"rgba(250, 250, 250, 0.48)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(4px)\",...style},...addPropertyOverrides({cCr51UggL:{\"data-framer-name\":\"Phone default\"},ZSAs8li14:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-163dagb\",layoutDependency:layoutDependency,layoutId:\"I7_wey0p4\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"AEsxHs8P3\",scopeId:\"ka2nfpde_\",...addPropertyOverrides({cCr51UggL:{href:undefined},ZSAs8li14:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-32r4uz framer-ws4vwm\",\"data-framer-appear-id\":\"32r4uz\",\"data-framer-cursor\":PHq2vJPHf,\"data-framer-name\":\"Top\",initial:animation4,layoutDependency:layoutDependency,layoutId:\"AEsxHs8P3\",optimized:true,whileHover:animation2,...addPropertyOverrides({cCr51UggL:{whileHover:undefined},ZSAs8li14:{whileHover:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h9htbt\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GObksNL5u\",onTap:onTap25pmev,children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1a64fg\",\"data-framer-name\":\"Line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rqDv9QDxB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 218 9\"><path d=\"M 2.963 2.555 C 38.988 2.555 74.947 4.015 110.938 5.438 C 145.672 6.811 180.519 6.093 215.278 6.093\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10860545196,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bl4bhy\",\"data-framer-name\":\"Line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vdNEBmsIS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 11\"><path d=\"M 2.963 3.555 C 9.411 3.555 15.847 3.947 22.288 4.329 C 28.505 4.698 34.742 4.505 40.963 4.505\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9817158758,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qsh4nc\",\"data-framer-name\":\"X\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yucjPj0wz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 44\"><path d=\"M 3 14.685 C 8.448 19.757 13.876 24.746 18.954 30.239 C 22.374 33.939 25.448 38.149 29.514 41.199\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.044 38.503 C 8.78 29.249 15.944 20.188 22.224 13.586 C 26.31 9.292 31.38 6.251 36.256 3\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11999558577,withExternalLayout:true,...addPropertyOverrides({ZSAs8li14:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 44\"><path d=\"M 3 14.685 C 8.448 19.757 13.876 24.746 18.954 30.239 C 22.374 33.939 25.448 38.149 29.514 41.199\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.044 38.503 C 8.78 29.249 15.944 20.188 22.224 13.586 C 26.31 9.292 31.38 6.251 36.256 3\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11554216150}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5l2rc2\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Xt2fwhZbI\",onTap:onTaptesdw6,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9esa36\",\"data-framer-name\":\"Line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JSLyDHOoY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 11\"><path d=\"M 2.963 3.555 C 9.411 3.555 15.847 3.947 22.288 4.329 C 28.505 4.698 34.742 4.505 40.963 4.505\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10721819511,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6ivxxs\",\"data-framer-name\":\"Line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Em6lCoSDU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 11\"><path d=\"M 2.963 3.555 C 9.411 3.555 15.847 3.947 22.288 4.329 C 28.505 4.698 34.742 4.505 40.963 4.505\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12750291927,withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"TP3HsMDHh\",scopeId:\"ka2nfpde_\",...addPropertyOverrides({cCr51UggL:{href:{webPageId:\"augiA20Il\"}},ZSAs8li14:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gnjf6q framer-ws4vwm\",\"data-framer-name\":\"Anton-logo\",fill:\"rgb(0, 23, 46)\",intrinsicHeight:203,intrinsicWidth:171,layoutDependency:layoutDependency,layoutId:\"TP3HsMDHh\",svg:'<svg width=\"171\" height=\"203\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M92.889 114.303c2.815 1.056 5.981 2.552 9.5 4.488-5.278-19.007-9.324-35.198-12.139-48.572-6.861 13.726-15.921 30.445-27.18 50.156-.88 1.935-2.376 4.663-4.487 8.183 7.037-10.911 15.042-16.367 24.014-16.367 3.519 0 6.95.704 10.292 2.112Zm42.222-37.485c7.213 24.462 15.745 47.252 25.597 68.371l2.903 5.807c2.463 4.224 4.31 7.831 5.542 10.823 1.231 2.816 1.847 5.72 1.847 8.712 0 4.575-1.935 9.327-5.806 14.254-3.87 4.752-8.092 8.272-12.666 10.56-2.815 1.583-5.806 2.375-8.972 2.375-5.278 0-10.556-1.583-15.834-4.751-5.102-3.344-11.259-8.096-18.472-14.255-5.102-4.224-8.972-7.216-11.611-8.975-1.76-1.232-5.454-3.168-11.083-5.808-9.852-4.928-17.505-9.327-22.959-13.199-5.278-3.872-7.916-8.447-7.916-13.727 0-1.408.615-3.52 1.847-6.335-3.343 5.983-8.005 15.135-13.986 27.454-7.39 14.958-11.611 23.318-12.667 25.078-2.111 3.871-5.542 8.183-10.292 12.935C15.833 200.712 11.435 203 7.39 203c-2.111 0-3.958-.792-5.542-2.376C.616 199.392 0 197.456 0 194.817c0-7.392 5.63-20.503 16.889-39.333.704-1.408 1.847-3.432 3.43-6.072l5.806-11.087c11.963-22.526 20.671-39.509 26.125-50.948 3.167-6.687 7.74-16.719 13.722-30.093l9.5-21.383c3.87-8.271 7.741-15.135 11.611-20.59 3.87-5.632 8.709-9.943 14.514-12.935C104.588.792 107.403 0 110.042 0c3.518 0 6.069 1.672 7.652 5.016 1.584 3.167 2.991 7.919 4.223 14.254 3.166 18.127 7.564 37.31 13.194 57.548Z\" fill=\"#222\"/></svg>',withExternalLayout:true,...addPropertyOverrides({cCr51UggL:{as:\"a\"},ZSAs8li14:{as:\"a\"}},baseVariant,gestureVariant)})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nw1pou\",\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"qOd1VSL1X\",transformTemplate:transformTemplate1,...addPropertyOverrides({ZSAs8li14:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dodipl\",layoutDependency:layoutDependency,layoutId:\"VGVLl6N3C\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":H8Z7Gu6eZ\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"XX0dQZ__A\",openInNewTab:false,preserveParams:false,scopeId:\"ka2nfpde_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5z1sjt\",\"data-styles-preset\":\"rO9jerWa9\",children:\"About\"})})})}),className:\"framer-skm5jj\",\"data-framer-appear-id\":\"skm5jj\",\"data-framer-cursor\":PHq2vJPHf,fonts:[\"Inter-SemiBold\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"XX0dQZ__A\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(0, 23, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation2,withExternalLayout:true,...addPropertyOverrides({ZSAs8li14:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":H8Z7Gu6eZ\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"XX0dQZ__A\",openInNewTab:false,preserveParams:false,scopeId:\"ka2nfpde_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5z1sjt\",\"data-styles-preset\":\"rO9jerWa9\",children:\"About\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":nEKnsp32S\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"WT6nc7o50\",openInNewTab:false,preserveParams:false,scopeId:\"ka2nfpde_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5z1sjt\",\"data-styles-preset\":\"rO9jerWa9\",children:\"Projects\"})})})}),className:\"framer-ymfx2k\",\"data-framer-appear-id\":\"ymfx2k\",\"data-framer-cursor\":PHq2vJPHf,fonts:[\"Inter-SemiBold\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"WT6nc7o50\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(0, 23, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation2,withExternalLayout:true,...addPropertyOverrides({ZSAs8li14:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":nEKnsp32S\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"WT6nc7o50\",openInNewTab:false,preserveParams:false,scopeId:\"ka2nfpde_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5z1sjt\",\"data-styles-preset\":\"rO9jerWa9\",children:\"Projects\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":rWPcyWR4o\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"lMGqyvgnx\",openInNewTab:false,preserveParams:false,scopeId:\"ka2nfpde_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5z1sjt\",\"data-styles-preset\":\"rO9jerWa9\",children:\"Contact\"})})})}),className:\"framer-1ys049e\",\"data-framer-appear-id\":\"1ys049e\",\"data-framer-cursor\":PHq2vJPHf,fonts:[\"Inter-SemiBold\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"lMGqyvgnx\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(0, 23, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation2,withExternalLayout:true,...addPropertyOverrides({ZSAs8li14:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 23, 46))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":rWPcyWR4o\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"lMGqyvgnx\",openInNewTab:false,preserveParams:false,scopeId:\"ka2nfpde_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5z1sjt\",\"data-styles-preset\":\"rO9jerWa9\",children:\"Contact\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19hre96-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PGwpL99sK-container\",nodeId:\"PGwpL99sK\",rendersWithMotion:true,scopeId:\"ka2nfpde_\",style:{opacity:0},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(StopScroll,{height:\"100%\",id:\"PGwpL99sK\",layoutId:\"PGwpL99sK\",toggle:true,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7vLhc.framer-ws4vwm, .framer-7vLhc .framer-ws4vwm { display: block; }\",\".framer-7vLhc.framer-1lebkq3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 72px; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7vLhc .framer-163dagb { flex: 1 0 0px; height: 49px; overflow: visible; position: relative; width: 1px; }\",\".framer-7vLhc .framer-32r4uz { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 10px; position: absolute; text-decoration: none; top: 0px; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7vLhc .framer-h9htbt { cursor: pointer; flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-7vLhc .framer-1a64fg { flex: none; height: 9px; left: 0px; position: absolute; top: 0px; width: 218px; }\",\".framer-7vLhc .framer-1bl4bhy, .framer-7vLhc .framer-9esa36 { flex: none; height: 11px; left: calc(50.00000000000002% - 44px / 2); position: absolute; top: 13px; width: 44px; }\",\".framer-7vLhc .framer-qsh4nc { flex: none; height: 44px; left: calc(50.00000000000002% - 39px / 2); position: absolute; top: calc(55.00000000000003% - 44px / 2); width: 39px; }\",\".framer-7vLhc .framer-5l2rc2 { cursor: pointer; flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-7vLhc .framer-6ivxxs { bottom: 9px; flex: none; height: 11px; left: calc(50.00000000000002% - 44px / 2); position: absolute; width: 44px; }\",\".framer-7vLhc .framer-gnjf6q { aspect-ratio: 0.8423645320197044 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 24px; }\",\".framer-7vLhc .framer-1nw1pou { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 49%; width: min-content; }\",\".framer-7vLhc .framer-1dodipl { 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-7vLhc .framer-skm5jj, .framer-7vLhc .framer-ymfx2k, .framer-7vLhc .framer-1ys049e { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7vLhc .framer-19hre96-container { flex: none; height: auto; left: 50%; position: absolute; top: 48px; width: auto; z-index: 1; }\",\".framer-7vLhc.framer-v-rm0rtm.framer-1lebkq3 { flex-direction: column; height: min-content; justify-content: flex-start; padding: 0px 16px 48px 16px; width: min-content; }\",\".framer-7vLhc.framer-v-rm0rtm .framer-163dagb { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; width: auto; z-index: 10; }\",\".framer-7vLhc.framer-v-rm0rtm .framer-32r4uz, .framer-7vLhc.framer-v-gt0aie .framer-32r4uz { gap: unset; justify-content: space-between; left: unset; position: relative; top: unset; width: 100%; will-change: unset; }\",\".framer-7vLhc.framer-v-rm0rtm .framer-h9htbt { height: 44px; order: 2; width: 44px; }\",\".framer-7vLhc.framer-v-rm0rtm .framer-qsh4nc { top: calc(50.00000000000002% - 44px / 2); }\",\".framer-7vLhc.framer-v-rm0rtm .framer-gnjf6q, .framer-7vLhc.framer-v-gt0aie .framer-gnjf6q { height: var(--framer-aspect-ratio-supported, 28px); order: 0; text-decoration: none; }\",\".framer-7vLhc.framer-v-rm0rtm .framer-1nw1pou { flex-direction: column; gap: 0px; overflow: hidden; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-7vLhc.framer-v-rm0rtm .framer-1dodipl { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-7vLhc.framer-v-gt0aie.framer-1lebkq3 { gap: unset; height: min-content; justify-content: space-between; padding: 0px 16px 0px 16px; width: 464px; }\",\".framer-7vLhc.framer-v-gt0aie .framer-163dagb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; }\",\".framer-7vLhc.framer-v-gt0aie .framer-5l2rc2 { order: 1; }\",...sharedStyle.css,'.framer-7vLhc[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-7vLhc [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-7vLhc[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-7vLhc [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-7vLhc[data-hide-scrollbars=\"true\"], .framer-7vLhc [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZSAs8li14\":{\"layout\":[\"auto\",\"auto\"]},\"cCr51UggL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"d7_GscovX\":\"click\",\"PHq2vJPHf\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerka2nfpde_=withCSS(Component,css,\"framer-7vLhc\");export default Framerka2nfpde_;Framerka2nfpde_.displayName=\"Navigation\";Framerka2nfpde_.defaultProps={height:72,width:1200};addPropertyControls(Framerka2nfpde_,{variant:{options:[\"oU7dYPbuY\",\"ZSAs8li14\",\"cCr51UggL\"],optionTitles:[\"Desktop\",\"Phone Open\",\"Phone default\"],title:\"Variant\",type:ControlType.Enum},d7_GscovX:{title:\"Click\",type:ControlType.EventHandler},PHq2vJPHf:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(Framerka2nfpde_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v8/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"}]},...StopScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerka2nfpde_\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZSAs8li14\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cCr51UggL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"d7_GscovX\\\":\\\"click\\\",\\\"PHq2vJPHf\\\":\\\"cursor\\\"}\",\"framerIntrinsicHeight\":\"72\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ka2nfpde_.map", "// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={e5PwEDZ_0:{hover:true,pressed:true}};const cycleOrder=[\"e5PwEDZ_0\",\"UAgLg76lH\",\"Yc1GBNe_e\",\"HAjQomeCD\",\"eknqNqkG2\"];const serializationHash=\"framer-IQC2A\";const variantClassNames={e5PwEDZ_0:\"framer-v-1axz5py\",eknqNqkG2:\"framer-v-zfcnfa\",HAjQomeCD:\"framer-v-1xzlto7\",UAgLg76lH:\"framer-v-q7owqw\",Yc1GBNe_e:\"framer-v-n6j1cd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"e5PwEDZ_0\",Disabled:\"Yc1GBNe_e\",Error:\"eknqNqkG2\",Loading:\"UAgLg76lH\",Success:\"HAjQomeCD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"e5PwEDZ_0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e5PwEDZ_0\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"UAgLg76lH\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"UAgLg76lH\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1axz5py\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"e5PwEDZ_0\",ref:refBinding,style:{backgroundColor:\"rgb(0, 23, 46)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"e5PwEDZ_0-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\",opacity:1},\"e5PwEDZ_0-pressed\":{backgroundColor:\"rgb(51, 51, 51)\",opacity:1},eknqNqkG2:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},HAjQomeCD:{opacity:1},Yc1GBNe_e:{opacity:.5}},...addPropertyOverrides({\"e5PwEDZ_0-hover\":{\"data-framer-name\":undefined},\"e5PwEDZ_0-pressed\":{\"data-framer-name\":undefined},eknqNqkG2:{\"data-framer-name\":\"Error\"},HAjQomeCD:{\"data-framer-name\":\"Success\"},UAgLg76lH:{\"data-framer-name\":\"Loading\"},Yc1GBNe_e:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send\"})}),className:\"framer-1uprulz\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"CFRXek5T3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{eknqNqkG2:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eknqNqkG2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})},HAjQomeCD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z5q2e9\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"vwy9ov6Mo\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dpvu8j\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"j6BjjJ_zF\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{UAgLg76lH:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wpz13n\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"AD0wKhDjq\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IQC2A.framer-qcv482, .framer-IQC2A .framer-qcv482 { display: block; }\",\".framer-IQC2A.framer-1axz5py { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-IQC2A .framer-1uprulz { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-IQC2A .framer-z5q2e9 { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-IQC2A .framer-1dpvu8j { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-IQC2A .framer-1wpz13n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-IQC2A.framer-v-q7owqw.framer-1axz5py, .framer-IQC2A.framer-v-n6j1cd.framer-1axz5py, .framer-IQC2A.framer-v-1xzlto7.framer-1axz5py, .framer-IQC2A.framer-v-zfcnfa.framer-1axz5py { cursor: unset; }\",\".framer-IQC2A.framer-v-q7owqw .framer-1dpvu8j { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UAgLg76lH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yc1GBNe_e\":{\"layout\":[\"fixed\",\"fixed\"]},\"HAjQomeCD\":{\"layout\":[\"fixed\",\"fixed\"]},\"eknqNqkG2\":{\"layout\":[\"fixed\",\"fixed\"]},\"L0HBTiumt\":{\"layout\":[\"fixed\",\"fixed\"]},\"rDtTv9Ti4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVD3cSuhXB=withCSS(Component,css,\"framer-IQC2A\");export default FramerVD3cSuhXB;FramerVD3cSuhXB.displayName=\"Button\";FramerVD3cSuhXB.defaultProps={height:40,width:240};addPropertyControls(FramerVD3cSuhXB,{variant:{options:[\"e5PwEDZ_0\",\"UAgLg76lH\",\"Yc1GBNe_e\",\"HAjQomeCD\",\"eknqNqkG2\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVD3cSuhXB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVD3cSuhXB\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UAgLg76lH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yc1GBNe_e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HAjQomeCD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eknqNqkG2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L0HBTiumt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rDtTv9Ti4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VD3cSuhXB.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"vgxhz_xJe\",\"Y7g4FDwpY\"];const serializationHash=\"framer-YaASI\";const variantClassNames={vgxhz_xJe:\"framer-v-103x12d\",Y7g4FDwpY:\"framer-v-1pqw7ip\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Cursor:\"vgxhz_xJe\",Hover:\"Y7g4FDwpY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vgxhz_xJe\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,h52W4QgVM,ameWmUaDq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vgxhz_xJe\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap120dhmk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"vgxhz_xJe\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Y7g4FDwpY\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Y7g4FDwpY\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Y7g4FDwpY:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-103x12d\",className,classNames),\"data-framer-cursor\":h52W4QgVM,\"data-framer-name\":\"Cursor\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vgxhz_xJe\",onTap:onTap120dhmk,ref:refBinding,style:{rotate:-213,...style},...addPropertyOverrides({Y7g4FDwpY:{\"data-framer-cursor\":ameWmUaDq,\"data-framer-name\":\"Hover\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1jvygt8\",layoutDependency:layoutDependency,layoutId:\"nA26OWTvq\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.48 7.067\" overflow=\"visible\"><path d=\"M 0.995 3.092 C 0.995 4.559 0.572 7.067 2.736 7.067 C 4.202 7.067 6.383 5.112 6.467 3.589 C 6.557 1.989 6.233 0.11 4.228 0.11 C 3.146 0.11 0.478 -0.349 0 0.607\" fill=\"transparent\" stroke-width=\"7.22\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b3hp32\",layoutDependency:layoutDependency,layoutId:\"OnPG5sWnW\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.48 7.067\" overflow=\"visible\"><path d=\"M 0.995 3.092 C 0.995 4.559 0.572 7.067 2.736 7.067 C 4.202 7.067 6.383 5.112 6.467 3.589 C 6.557 1.989 6.233 0.11 4.228 0.11 C 3.146 0.11 0.478 -0.349 0 0.607\" fill=\"transparent\" stroke-width=\"7.22\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qd6vsb\",\"data-framer-name\":\"Arrow Down\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rC9Y4NxqW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 31\"><path d=\"M 11.314 2.657 C 11.314 10.995 11.472 19.448 11.472 27.731\" fill=\"transparent\" stroke-width=\"4.45\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 2.61 16.535 C 3.905 17.826 5.897 19.05 6.759 20.704 C 7.435 22 8.17 23.406 8.659 24.77 C 8.822 25.226 10.396 28.501 10.909 28.501 C 11.124 28.501 11.207 27.731 11.278 27.573 C 11.58 26.906 11.764 26.391 12.281 25.83 C 13.386 24.629 14.443 23.387 15.516 22.159 C 16.336 21.222 17.324 20.405 18.031 19.373 C 18.634 18.492 19.491 17.699 20.018 16.78 C 20.251 16.375 20.764 16.151 20.968 15.746\" fill=\"transparent\" stroke-width=\"4.45\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12276275288,withExternalLayout:true,...addPropertyOverrides({Y7g4FDwpY:{svgContentId:11287558904}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YaASI.framer-fq6ik1, .framer-YaASI .framer-fq6ik1 { display: block; }\",\".framer-YaASI.framer-103x12d { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-YaASI .framer-1jvygt8 { height: 7px; position: relative; width: 7px; }\",\".framer-YaASI .framer-1b3hp32 { height: 7px; left: 0px; position: absolute; top: 0px; width: 7px; }\",\".framer-YaASI .framer-1qd6vsb { flex: none; height: 31px; position: relative; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7\n * @framerIntrinsicWidth 7\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Y7g4FDwpY\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXUQmsHy7i=withCSS(Component,css,\"framer-YaASI\");export default FramerXUQmsHy7i;FramerXUQmsHy7i.displayName=\"Cursor\";FramerXUQmsHy7i.defaultProps={height:7,width:7};addPropertyControls(FramerXUQmsHy7i,{variant:{options:[\"vgxhz_xJe\",\"Y7g4FDwpY\"],optionTitles:[\"Cursor\",\"Hover\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXUQmsHy7i,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXUQmsHy7i\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y7g4FDwpY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"7\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"7\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XUQmsHy7i.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import Card from\"#framer/local/canvasComponent/bBLHa_gM7/bBLHa_gM7.js\";import Navigation from\"#framer/local/canvasComponent/ka2nfpde_/ka2nfpde_.js\";import Button from\"#framer/local/canvasComponent/VD3cSuhXB/VD3cSuhXB.js\";import Cursor from\"#framer/local/canvasComponent/XUQmsHy7i/XUQmsHy7i.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CardFonts=getFonts(Card);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const FormContainerWithFX=withFX(FormContainer);const CursorFonts=getFonts(Cursor);const breakpoints={ghVJPF1h6:\"(max-width: 439px)\",RbL2EEZTd:\"(min-width: 440px) and (max-width: 809px)\",TIZuwm4IG:\"(min-width: 810px) and (max-width: 1199px)\",UPEP4Zgm7:\"(min-width: 2160px)\",WiQwHsf4c:\"(min-width: 1366px) and (max-width: 2159px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1365px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-A34Ko\";const variantClassNames={ghVJPF1h6:\"framer-v-vur99p\",RbL2EEZTd:\"framer-v-1mewv7l\",TIZuwm4IG:\"framer-v-1n82fwg\",UPEP4Zgm7:\"framer-v-1n5gx0t\",WiQwHsf4c:\"framer-v-1jio736\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation1,startDelay:.3,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={damping:30,delay:2,mass:1,stiffness:113,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition4={delay:.4,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:16};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};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,transition:transition5,x:0,y:16};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transition6={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"1200\":\"WQLkyLRf1\",\"1366\":\"WiQwHsf4c\",\"2160px\":\"UPEP4Zgm7\",\"390\":\"ghVJPF1h6\",\"440\":\"RbL2EEZTd\",\"810\":\"TIZuwm4IG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition7={bounce:.2,delay:0,duration:.3,type:\"spring\"};const cursor={component:Cursor,transition:transition7,variant:\"vgxhz_xJe\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"H8Z7Gu6eZ\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"nEKnsp32S\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"CjZpH95Nt\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"y9CV8R99j\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"ZgtxAYLvg\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"gpjtIyvjD\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"rWPcyWR4o\");const ref7=React.useRef(null);useCustomCursors({gab9ja:cursor,s33dfx:{...cursor,variant:\"Y7g4FDwpY\"}});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(250, 250, 250); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"gab9ja\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ip2e9d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"n4lOsgdtp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"n4lOsgdtp\",intensity:10,layoutId:\"n4lOsgdtp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"90vw\",y:24,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gkjbsg-container\",layoutScroll:true,nodeId:\"tKP5Pd4Xh\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{variant:\"cCr51UggL\"},RbL2EEZTd:{variant:\"cCr51UggL\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"tKP5Pd4Xh\",layoutId:\"tKP5Pd4Xh\",style:{width:\"100%\"},variant:\"oU7dYPbuY\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ngqiu\",\"data-framer-name\":\"About\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 163, 163)\"},children:\"I'm Anton\"})}),className:\"framer-3b9817\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative UI designer \uD83E\uDDD1\uD83C\uDFFC\u200D\uD83D\uDCBB with a passion for crafting intuitive and visually \uD83D\uDC40engaging digital experiences\"})})})},RbL2EEZTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative UI designer \uD83E\uDDD1\uD83C\uDFFC\u200D\uD83D\uDCBB with a passion for crafting intuitive and visually \uD83D\uDC40 engaging digital experiences\"})})})},TIZuwm4IG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative UI designer \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83D\uDCBB\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"with a passion for \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"crafting intuitive and visually \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC40  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"engaging \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"digital experiences\"})})]})})},UPEP4Zgm7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative UI designer \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83D\uDCBB\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" with a passion for crafting intuitive \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"and visually \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC40  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"engaging digital experiences\"})})]})})},WiQwHsf4c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative UI designer \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83D\uDCBB\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" with a passion for \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"crafting intuitive and visually \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC40  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"engaging \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"digital experiences\"})})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative UI designer \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83D\uDCBB\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" with a passion \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"for crafting intuitive and visually \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC40\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"engaging digital experiences\"})})]})}),className:\"framer-1r22211\",\"data-framer-appear-id\":\"1r22211\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],initial:animation3,optimized:true,verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-gnpcv2\",\"data-framer-appear-id\":\"gnpcv2\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kxi7b\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 33\"><path d=\"M 13.047 1.473 C 12.572 1.591 12.865 4.022 12.865 4.311 L 12.865 31.544\" fill=\"transparent\" stroke-width=\"2.62\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.798 13.248 C 5.066 13.248 8.361 13.097 11.605 13.56 C 16.074 14.197 20.317 15.505 24.718 16.408 C 26.729 16.821 28.593 17.233 30.644 17.233\" fill=\"transparent\" stroke-width=\"2.62\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 5.427 2.741 C 5.518 3.561 6.402 4.456 6.818 5.116 C 8.726 8.146 10.706 11.128 12.684 14.113 C 15.107 17.771 16.951 21.629 19.134 25.405 C 19.939 26.797 20.524 28.432 21.392 29.732\" fill=\"transparent\" stroke-width=\"2.62\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.794 24.479 C 3.997 23.128 5.604 21.654 6.374 20.595 C 9.338 16.523 12.325 12.283 15.848 8.669 C 17.727 6.741 19.651 4.603 21.754 2.922\" fill=\"transparent\" stroke-width=\"2.62\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12756110724,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-msvz4j\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12dwfsd\",\"data-framer-name\":\"Fuglar&nova\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tplznr-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"oifKbmNVK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"oifKbmNVK\",layoutId:\"oifKbmNVK\",style:{height:\"100%\",width:\"100%\"},variant:\"OHFMArXbM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1np559u-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"X6vfY_ve_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"X6vfY_ve_\",layoutId:\"X6vfY_ve_\",style:{height:\"100%\",width:\"100%\"},variant:\"xFFSTRz1B\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s6zxi5\",\"data-framer-name\":\"advania&viska\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e0qiu8-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"kIXPzJLrd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"kIXPzJLrd\",layoutId:\"kIXPzJLrd\",style:{height:\"100%\",width:\"100%\"},variant:\"FLt_VHeAk\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-afd9yh-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"c0qlmadbt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"c0qlmadbt\",layoutId:\"c0qlmadbt\",style:{height:\"100%\",width:\"100%\"},variant:\"h0izsmXmu\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xn7z0h\",\"data-framer-name\":\"solar&geosalmo\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-glky5k-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"u7wXYLNmS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"u7wXYLNmS\",layoutId:\"u7wXYLNmS\",style:{height:\"100%\",width:\"100%\"},variant:\"DyeGGGwwc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jic251-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"B_aKbWmMW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"B_aKbWmMW\",layoutId:\"B_aKbWmMW\",style:{height:\"100%\",width:\"100%\"},variant:\"W0x9ghm9j\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pdu9c3\",\"data-framer-name\":\"asembla&reykjastraeti\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b34l9q-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"vIxqOYDCK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"vIxqOYDCK\",layoutId:\"vIxqOYDCK\",style:{height:\"100%\",width:\"100%\"},variant:\"OVJ0LuzGs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ne85jh-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"lAhu6HfUs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"lAhu6HfUs\",layoutId:\"lAhu6HfUs\",style:{height:\"100%\",width:\"100%\"},variant:\"hjocB31iW\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zm4oep\",\"data-framer-name\":\"lla&thaavg\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gdudtb-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"IA7VfvMpi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"IA7VfvMpi\",layoutId:\"IA7VfvMpi\",style:{height:\"100%\",width:\"100%\"},variant:\"rfJeUiu7G\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{height:420,width:\"342px\"},RbL2EEZTd:{height:420,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},UPEP4Zgm7:{height:720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kz7eh4-container\",\"data-framer-cursor\":\"s33dfx\",nodeId:\"pzdPwsf_t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"pzdPwsf_t\",layoutId:\"pzdPwsf_t\",style:{height:\"100%\",width:\"100%\"},variant:\"Kg2U_C6Wg\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-129q1h4\",\"data-framer-name\":\"Contact\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(FormContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,action:\"https://api.framer.com/forms/v1/forms/07de35de-e2a5-4fc2-af35-d34fe31fea46/submit\",className:\"framer-jvsiht\",nodeId:\"InL5mnqHN\",redirectUrl:\"/\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m1fzis\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:\"Have a project?\"})})},RbL2EEZTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:\"Have a project?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 23, 46)\"},children:\"Have a project?\"})}),className:\"framer-1gkm3tv\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-kvb8b\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-694aig\",inputName:\"Name\",placeholder:\"Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-164obm7\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-ji0gst\",inputName:\"Email\",placeholder:\"Email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1ktinmt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UPEP4Zgm7:{placeholder:\"Describe the project\"},WiQwHsf4c:{placeholder:\"Describe the project\"}},children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-q8pi9e\",inputName:\"About\",placeholder:\"What is this about?\",required:true,type:\"textarea\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},RbL2EEZTd:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"436px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dq4z90-container\",nodeId:\"FqGlO8T8l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"FqGlO8T8l\",layoutId:\"FqGlO8T8l\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"eknqNqkG2\",pending:\"UAgLg76lH\",success:\"HAjQomeCD\"},\"e5PwEDZ_0\"),width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hda8ee\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4s6bym\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14m8j6a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ant\"})})},RbL2EEZTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ant\"})})},TIZuwm4IG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"133px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.61px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ant\"})})},UPEP4Zgm7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"239px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4.68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ant\"})})},WiQwHsf4c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"239px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4.68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ant\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"194px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ant\"})}),className:\"framer-99plym\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.37 74.67\"><path d=\"M 25.514 59.78 C 23.68 59.78 23.362 58.377 22.06 57.19 C 18.058 53.537 14.649 48.486 11.888 43.717 C 8.11 37.192 4.543 30 2.94 22.474 C 2.29 19.415 2.308 14.465 2.829 11.392 C 3.589 6.905 6.297 11.839 7.469 12.828 C 12.136 16.764 15.287 25.479 16.863 31.401 C 17.452 33.614 18.831 35.114 18.831 31.641 C 18.831 25.627 20.125 21.322 22.692 16.016 C 24.049 13.211 31.858 -2.625 35.39 4.537 C 37.36 8.535 36.875 13.076 36.875 17.81 C 36.875 27.77 32.925 37.129 30.155 46.547 C 28.431 52.407 26.62 58.53 24.177 64.085 C 23.501 65.621 22.597 71.389 21.504 71.977\" fill=\"transparent\" stroke-width=\"4.88\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:8930412351},RbL2EEZTd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39.37 74.67\"><path d=\"M 25.514 59.78 C 23.68 59.78 23.362 58.377 22.06 57.19 C 18.058 53.537 14.649 48.486 11.888 43.717 C 8.11 37.192 4.543 30 2.94 22.474 C 2.29 19.415 2.308 14.465 2.829 11.392 C 3.589 6.905 6.297 11.839 7.469 12.828 C 12.136 16.764 15.287 25.479 16.863 31.401 C 17.452 33.614 18.831 35.114 18.831 31.641 C 18.831 25.627 20.125 21.322 22.692 16.016 C 24.049 13.211 31.858 -2.625 35.39 4.537 C 37.36 8.535 36.875 13.076 36.875 17.81 C 36.875 27.77 32.925 37.129 30.155 46.547 C 28.431 52.407 26.62 58.53 24.177 64.085 C 23.501 65.621 22.597 71.389 21.504 71.977\" fill=\"transparent\" stroke-width=\"4.88\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:8930412351},TIZuwm4IG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.79 151.33\"><path d=\"M 51.708 121.154 C 47.992 121.154 47.347 118.311 44.709 115.905 C 36.598 108.502 29.688 98.265 24.093 88.6 C 16.435 75.375 9.207 60.801 5.958 45.548 C 4.64 39.348 4.678 29.316 5.733 23.088 C 7.274 13.994 12.761 23.993 15.137 25.998 C 24.596 33.976 30.982 51.637 34.176 63.639 C 35.368 68.124 38.164 71.165 38.164 64.125 C 38.164 51.937 40.788 43.212 45.989 32.459 C 48.739 26.774 64.565 -5.32 71.723 9.194 C 75.717 17.297 74.732 26.501 74.732 36.095 C 74.732 56.282 66.727 75.248 61.115 94.335 C 57.62 106.212 53.95 118.62 48.998 129.879 C 47.629 132.992 45.798 144.682 43.581 145.873\" fill=\"transparent\" stroke-width=\"9.88\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12307745879},UPEP4Zgm7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 154.31 288.89\"><path d=\"M 92.781 217.39 C 86.114 217.39 84.956 212.29 80.223 207.972 C 65.67 194.688 53.27 176.32 43.231 158.978 C 29.49 135.249 16.521 109.097 10.691 81.728 C 8.327 70.603 8.395 52.603 10.286 41.428 C 13.052 25.11 22.898 43.052 27.162 46.649 C 44.133 60.964 55.591 92.654 61.324 114.19 C 63.463 122.237 68.479 127.694 68.479 115.062 C 68.479 93.193 73.187 77.538 82.52 58.243 C 87.454 48.041 115.851 -9.546 128.696 16.497 C 135.861 31.036 134.095 47.552 134.095 64.766 C 134.095 100.988 119.731 135.02 109.66 169.269 C 103.39 190.58 96.805 212.844 87.919 233.046 C 85.462 238.631 82.176 259.609 78.199 261.744\" fill=\"transparent\" stroke-width=\"17.73\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10566113117},WiQwHsf4c:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 154.31 288.89\"><path d=\"M 92.781 217.39 C 86.114 217.39 84.956 212.29 80.223 207.972 C 65.67 194.688 53.27 176.32 43.231 158.978 C 29.49 135.249 16.521 109.097 10.691 81.728 C 8.327 70.603 8.395 52.603 10.286 41.428 C 13.052 25.11 22.898 43.052 27.162 46.649 C 44.133 60.964 55.591 92.654 61.324 114.19 C 63.463 122.237 68.479 127.694 68.479 115.062 C 68.479 93.193 73.187 77.538 82.52 58.243 C 87.454 48.041 115.851 -9.546 128.696 16.497 C 135.861 31.036 134.095 47.552 134.095 64.766 C 134.095 100.988 119.731 135.02 109.66 169.269 C 103.39 190.58 96.805 212.844 87.919 233.046 C 85.462 238.631 82.176 259.609 78.199 261.744\" fill=\"transparent\" stroke-width=\"17.73\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10566113117}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3r9kyn\",\"data-framer-name\":\"Heart\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 220\"><path d=\"M 75.17 176.126 C 69.768 176.126 68.83 171.993 64.996 168.495 C 53.205 157.733 43.158 142.851 35.025 128.801 C 23.893 109.576 13.385 88.388 8.662 66.214 C 6.746 57.202 6.801 42.618 8.334 33.564 C 10.575 20.343 18.552 34.88 22.006 37.794 C 35.756 49.392 45.039 75.067 49.684 92.515 C 51.417 99.034 55.48 103.456 55.48 93.221 C 55.48 75.503 59.295 62.82 66.856 47.187 C 70.853 38.922 93.861 -7.734 104.267 13.366 C 110.073 25.145 108.641 38.526 108.641 52.472 C 108.641 81.819 97.004 109.391 88.845 137.139 C 83.765 154.404 78.43 172.442 71.231 188.81 C 69.239 193.335 66.578 210.33 63.356 212.061\" fill=\"transparent\" stroke-width=\"14.37\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10366502765,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\"})})},RbL2EEZTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\"})})},TIZuwm4IG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"133px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.61px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\"})})},UPEP4Zgm7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"239px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4.68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\"})})},WiQwHsf4c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"239px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4.68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"194px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\"})}),className:\"framer-1r9tyhv\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qz8f5m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.83 51.25\"><path d=\"M 16.093 25.333 C 16.093 25.678 15.994 26.267 16.503 26.267 C 16.847 26.267 17.359 25.808 17.379 25.45 C 17.4 25.074 17.324 24.633 16.853 24.633 C 16.599 24.633 15.972 24.525 15.86 24.75 M 27.901 24.282 C 27.901 25.038 27.802 25.564 28.771 25.307 C 29.468 25.123 30.356 24.561 30.356 23.757 C 30.356 22.817 29.563 22.881 28.836 22.881 C 28.134 22.881 28.368 23.745 28.368 24.282 M 10.365 32.106 C 12.45 34 14.35 35.993 17.042 37.05 C 18.81 37.745 20.807 37.595 22.666 37.595 C 24.83 37.595 26.639 36.97 28.498 35.869 C 31.906 33.851 35.549 30.965 37.513 27.448 C 38.352 25.946 38.564 24.507 38.89 22.881\" fill=\"transparent\" stroke-width=\"3.74\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 18.018 15.247 C 14.109 15.247 11.689 15.986 8.774 18.88 C 5.423 22.209 3.661 26.286 3.133 30.893 C 2.629 35.291 2.732 39.274 5.861 42.641 C 10.81 47.966 19.272 49.145 26.175 48.501 C 32.21 47.938 38.375 44.216 41.246 38.729 C 44.514 32.481 44.734 23.92 42.278 17.395 C 40.923 13.794 38.548 10.709 35.657 8.194 C 32.492 5.439 28.607 4.462 24.52 3.95 C 18.948 3.253 12.995 3.454 8.006 6.178\" fill=\"transparent\" stroke-width=\"3.74\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10580820117},RbL2EEZTd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.83 51.25\"><path d=\"M 16.093 25.333 C 16.093 25.678 15.994 26.267 16.503 26.267 C 16.847 26.267 17.359 25.808 17.379 25.45 C 17.4 25.074 17.324 24.633 16.853 24.633 C 16.599 24.633 15.972 24.525 15.86 24.75 M 27.901 24.282 C 27.901 25.038 27.802 25.564 28.771 25.307 C 29.468 25.123 30.356 24.561 30.356 23.757 C 30.356 22.817 29.563 22.881 28.836 22.881 C 28.134 22.881 28.368 23.745 28.368 24.282 M 10.365 32.106 C 12.45 34 14.35 35.993 17.042 37.05 C 18.81 37.745 20.807 37.595 22.666 37.595 C 24.83 37.595 26.639 36.97 28.498 35.869 C 31.906 33.851 35.549 30.965 37.513 27.448 C 38.352 25.946 38.564 24.507 38.89 22.881\" fill=\"transparent\" stroke-width=\"3.74\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 18.018 15.247 C 14.109 15.247 11.689 15.986 8.774 18.88 C 5.423 22.209 3.661 26.286 3.133 30.893 C 2.629 35.291 2.732 39.274 5.861 42.641 C 10.81 47.966 19.272 49.145 26.175 48.501 C 32.21 47.938 38.375 44.216 41.246 38.729 C 44.514 32.481 44.734 23.92 42.278 17.395 C 40.923 13.794 38.548 10.709 35.657 8.194 C 32.492 5.439 28.607 4.462 24.52 3.95 C 18.948 3.253 12.995 3.454 8.006 6.178\" fill=\"transparent\" stroke-width=\"3.74\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10580820117},TIZuwm4IG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94.93 103.87\"><path d=\"M 32.616 51.342 C 32.616 52.041 32.414 53.235 33.445 53.235 C 34.143 53.235 35.182 52.304 35.222 51.579 C 35.264 50.817 35.11 49.922 34.156 49.922 C 33.64 49.922 32.37 49.704 32.142 50.159 M 56.546 49.212 C 56.546 50.744 56.346 51.809 58.309 51.289 C 59.722 50.916 61.521 49.778 61.521 48.147 C 61.521 46.242 59.915 46.372 58.441 46.372 C 57.018 46.372 57.493 48.124 57.493 49.212 M 21.006 65.069 C 25.233 68.907 29.082 72.946 34.538 75.088 C 38.122 76.496 42.168 76.192 45.936 76.192 C 50.323 76.192 53.988 74.926 57.756 72.695 C 64.664 68.605 72.046 62.755 76.026 55.629 C 77.727 52.584 78.157 49.667 78.817 46.372\" fill=\"transparent\" stroke-width=\"7.57\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 36.516 30.901 C 28.595 30.901 23.689 32.399 17.782 38.264 C 10.99 45.01 7.42 53.273 6.349 62.61 C 5.328 71.523 5.537 79.595 11.878 86.418 C 21.909 97.212 39.059 99.601 53.049 98.295 C 65.278 97.154 77.774 89.611 83.591 78.491 C 90.216 65.828 90.661 48.479 85.684 35.255 C 82.938 27.955 78.124 21.703 72.265 16.606 C 65.85 11.023 57.977 9.043 49.694 8.006 C 38.402 6.593 26.336 7 16.225 12.521\" fill=\"transparent\" stroke-width=\"7.57\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12422071420},UPEP4Zgm7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 170.34 186.38\"><path d=\"M 58.524 92.125 C 58.524 93.379 58.162 95.522 60.012 95.522 C 61.264 95.522 63.128 93.851 63.2 92.55 C 63.276 91.183 63 89.577 61.287 89.577 C 60.362 89.577 58.082 89.185 57.674 90.002 M 101.462 88.303 C 101.462 91.051 101.104 92.962 104.627 92.03 C 107.161 91.361 110.39 89.318 110.39 86.392 C 110.39 82.974 107.507 83.207 104.863 83.207 C 102.31 83.207 103.162 86.351 103.162 88.303 M 37.692 116.755 C 45.276 123.642 52.183 130.889 61.972 134.733 C 68.404 137.259 75.663 136.715 82.425 136.715 C 90.296 136.715 96.873 134.443 103.634 130.439 C 116.029 123.1 129.274 112.604 136.417 99.817 C 139.468 94.353 140.24 89.12 141.424 83.207\" fill=\"transparent\" stroke-width=\"13.58\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 65.521 55.447 C 51.309 55.447 42.506 58.134 31.907 68.659 C 19.719 80.762 13.313 95.589 11.392 112.343 C 9.559 128.337 9.935 142.819 21.313 155.063 C 39.312 174.431 70.084 178.717 95.187 176.375 C 117.131 174.327 139.552 160.792 149.99 140.839 C 161.878 118.117 162.676 86.987 153.747 63.258 C 148.819 50.161 140.181 38.943 129.668 29.796 C 118.156 19.78 104.031 16.226 89.167 14.366 C 68.906 11.831 47.255 12.56 29.114 22.467\" fill=\"transparent\" stroke-width=\"13.58\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12163140694},WiQwHsf4c:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 170.34 186.38\"><path d=\"M 58.524 92.125 C 58.524 93.379 58.162 95.522 60.012 95.522 C 61.264 95.522 63.128 93.851 63.2 92.55 C 63.276 91.183 63 89.577 61.287 89.577 C 60.362 89.577 58.082 89.185 57.674 90.002 M 101.462 88.303 C 101.462 91.051 101.104 92.962 104.627 92.03 C 107.161 91.361 110.39 89.318 110.39 86.392 C 110.39 82.974 107.507 83.207 104.863 83.207 C 102.31 83.207 103.162 86.351 103.162 88.303 M 37.692 116.755 C 45.276 123.642 52.183 130.889 61.972 134.733 C 68.404 137.259 75.663 136.715 82.425 136.715 C 90.296 136.715 96.873 134.443 103.634 130.439 C 116.029 123.1 129.274 112.604 136.417 99.817 C 139.468 94.353 140.24 89.12 141.424 83.207\" fill=\"transparent\" stroke-width=\"13.58\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 65.521 55.447 C 51.309 55.447 42.506 58.134 31.907 68.659 C 19.719 80.762 13.313 95.589 11.392 112.343 C 9.559 128.337 9.935 142.819 21.313 155.063 C 39.312 174.431 70.084 178.717 95.187 176.375 C 117.131 174.327 139.552 160.792 149.99 140.839 C 161.878 118.117 162.676 86.987 153.747 63.258 C 148.819 50.161 140.181 38.943 129.668 29.796 C 118.156 19.78 104.031 16.226 89.167 14.366 C 68.906 11.831 47.255 12.56 29.114 22.467\" fill=\"transparent\" stroke-width=\"13.58\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11165707775}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d6y8aq\",\"data-framer-name\":\"Smile\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 138 151\"><path d=\"M 47.415 74.638 C 47.415 75.654 47.122 77.39 48.621 77.39 C 49.635 77.39 51.145 76.037 51.203 74.982 C 51.265 73.875 51.041 72.574 49.654 72.574 C 48.904 72.574 47.057 72.256 46.726 72.918 M 82.202 71.541 C 82.202 73.768 81.913 75.317 84.767 74.561 C 86.82 74.019 89.436 72.364 89.436 69.993 C 89.436 67.224 87.101 67.413 84.958 67.413 C 82.889 67.413 83.58 69.96 83.58 71.541 M 30.537 94.593 C 36.682 100.172 42.278 106.044 50.209 109.158 C 55.42 111.205 61.301 110.764 66.779 110.764 C 73.156 110.764 78.485 108.923 83.963 105.68 C 94.004 99.734 104.735 91.23 110.522 80.87 C 112.994 76.444 113.62 72.203 114.579 67.413\" fill=\"transparent\" stroke-width=\"11\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 53.084 44.922 C 41.57 44.922 34.438 47.099 25.85 55.626 C 15.976 65.432 10.786 77.445 9.23 91.019 C 7.745 103.976 8.049 115.71 17.267 125.63 C 31.85 141.321 56.781 144.794 77.119 142.896 C 94.897 141.236 113.063 130.271 121.52 114.105 C 131.151 95.696 131.797 70.476 124.563 51.251 C 120.57 40.64 113.572 31.551 105.055 24.14 C 95.728 16.025 84.284 13.146 72.241 11.639 C 55.826 9.585 38.285 10.176 23.588 18.202\" fill=\"transparent\" stroke-width=\"11\" stroke=\"rgb(0, 23, 46)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10035714146,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghVJPF1h6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"rn\"})})},RbL2EEZTd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"66px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.29px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"rn\"})})},TIZuwm4IG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"133px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.61px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"rn\"})})},UPEP4Zgm7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"239px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4.68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"rn\"})})},WiQwHsf4c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"239px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4.68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"rn\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"194px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 23, 46)\",\"--framer-text-transform\":\"uppercase\"},children:\"rn\"})}),className:\"framer-1pjko56\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A34Ko.framer-lux5qc, .framer-A34Ko .framer-lux5qc { display: block; }\",\".framer-A34Ko.framer-72rtr7 { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 220px 24px 24px 24px; position: relative; width: 1200px; }\",\".framer-A34Ko .framer-1ip2e9d-container { flex: none; height: auto; left: 50%; position: absolute; top: 24px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-A34Ko .framer-gkjbsg-container { flex: none; height: auto; left: 50%; position: fixed; top: 24px; transform: translateX(-50%); width: 90%; z-index: 5; }\",\".framer-A34Ko .framer-19ngqiu { align-content: center; align-items: center; aspect-ratio: 2.704225352112676 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 426px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-A34Ko .framer-3b9817 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-A34Ko .framer-1r22211 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1152px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-A34Ko .framer-gnpcv2 { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-A34Ko .framer-1kxi7b { flex: none; height: 33px; position: relative; width: 32px; }\",\".framer-A34Ko .framer-msvz4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-A34Ko .framer-12dwfsd, .framer-A34Ko .framer-1s6zxi5, .framer-A34Ko .framer-1xn7z0h, .framer-A34Ko .framer-1pdu9c3, .framer-A34Ko .framer-zm4oep { background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 480px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-A34Ko .framer-tplznr-container, .framer-A34Ko .framer-1np559u-container, .framer-A34Ko .framer-1e0qiu8-container, .framer-A34Ko .framer-afd9yh-container, .framer-A34Ko .framer-glky5k-container, .framer-A34Ko .framer-1jic251-container, .framer-A34Ko .framer-b34l9q-container, .framer-A34Ko .framer-1ne85jh-container, .framer-A34Ko .framer-gdudtb-container, .framer-A34Ko .framer-1kz7eh4-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-A34Ko .framer-129q1h4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-A34Ko .framer-jvsiht { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 476px; }\",\".framer-A34Ko .framer-m1fzis { 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-A34Ko .framer-1gkm3tv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-A34Ko .framer-kvb8b, .framer-A34Ko .framer-164obm7, .framer-A34Ko .framer-1ktinmt { 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-A34Ko .framer-694aig, .framer-A34Ko .framer-ji0gst { --framer-input-background: rgba(255, 255, 255, 0.15); --framer-input-border-bottom-width: 1.6px; --framer-input-border-color: #ebebeb; --framer-input-border-left-width: 1.6px; --framer-input-border-radius-bottom-left: 6px; --framer-input-border-radius-bottom-right: 6px; --framer-input-border-radius-top-left: 6px; --framer-input-border-radius-top-right: 6px; --framer-input-border-right-width: 1.6px; --framer-input-border-style: solid; --framer-input-border-top-width: 1.6px; --framer-input-focused-border-color: #000000; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1.6px; --framer-input-font-color: #000000; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-A34Ko .framer-q8pi9e { --framer-input-background: rgba(255, 255, 255, 0.15); --framer-input-border-bottom-width: 1.6px; --framer-input-border-color: #ebebeb; --framer-input-border-left-width: 1.6px; --framer-input-border-radius-bottom-left: 6px; --framer-input-border-radius-bottom-right: 6px; --framer-input-border-radius-top-left: 6px; --framer-input-border-radius-top-right: 6px; --framer-input-border-right-width: 1.6px; --framer-input-border-style: solid; --framer-input-border-top-width: 1.6px; --framer-input-focused-border-color: #000000; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1.6px; --framer-input-font-color: #000000; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-A34Ko .framer-dq4z90-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-A34Ko .framer-hda8ee { align-content: flex-end; align-items: flex-end; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 226px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A34Ko .framer-4s6bym { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: 226px; justify-content: center; max-width: 100%; overflow: visible; padding: 136px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-A34Ko .framer-14m8j6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 226px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-A34Ko .framer-99plym, .framer-A34Ko .framer-1r9tyhv, .framer-A34Ko .framer-1pjko56 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-A34Ko .framer-3r9kyn { flex: none; height: 220px; position: relative; width: 116px; }\",\".framer-A34Ko .framer-1qz8f5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 226px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-A34Ko .framer-1d6y8aq { flex: none; height: 151px; position: relative; width: 138px; }\",\"@media (max-width: 439px) { .framer-A34Ko.framer-72rtr7 { padding: 220px 24px 0px 24px; width: 390px; } .framer-A34Ko .framer-19ngqiu { aspect-ratio: unset; height: min-content; } .framer-A34Ko .framer-1r22211 { width: 100%; } .framer-A34Ko .framer-msvz4j { gap: 24px; justify-content: flex-start; } .framer-A34Ko .framer-12dwfsd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px 0px; height: min-content; padding: 0px; width: 342px; z-index: 1; } .framer-A34Ko .framer-tplznr-container, .framer-A34Ko .framer-1np559u-container, .framer-A34Ko .framer-1e0qiu8-container, .framer-A34Ko .framer-afd9yh-container, .framer-A34Ko .framer-glky5k-container, .framer-A34Ko .framer-1jic251-container, .framer-A34Ko .framer-b34l9q-container, .framer-A34Ko .framer-1ne85jh-container, .framer-A34Ko .framer-gdudtb-container, .framer-A34Ko .framer-1kz7eh4-container { align-self: unset; height: 420px; } .framer-A34Ko .framer-1s6zxi5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px 0px; height: min-content; padding: 0px; width: 342px; } .framer-A34Ko .framer-1xn7z0h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; padding: 0px; width: 342px; } .framer-A34Ko .framer-1pdu9c3, .framer-A34Ko .framer-zm4oep { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; height: min-content; padding: 0px; width: 342px; } .framer-A34Ko .framer-129q1h4 { gap: 0px; padding: 0px; } .framer-A34Ko .framer-jvsiht { padding: 0px; width: 100%; } .framer-A34Ko .framer-hda8ee { flex-direction: column; height: 120px; } .framer-A34Ko .framer-4s6bym { flex: none; gap: 24px; height: min-content; padding: 58px 0px 0px 0px; width: 100%; } .framer-A34Ko .framer-14m8j6a { gap: 1.36px; height: 77px; } .framer-A34Ko .framer-3r9kyn { height: 75px; width: 39px; } .framer-A34Ko .framer-1qz8f5m { height: 77px; } .framer-A34Ko .framer-1d6y8aq { height: 51px; width: 47px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-A34Ko.framer-72rtr7 { width: 810px; } .framer-A34Ko .framer-19ngqiu { aspect-ratio: unset; height: min-content; } .framer-A34Ko .framer-1r22211 { width: 100%; } .framer-A34Ko .framer-hda8ee { height: 140px; } .framer-A34Ko .framer-4s6bym { padding: 176px 0px 0px 0px; } .framer-A34Ko .framer-14m8j6a { gap: 2.75px; height: 155px; } .framer-A34Ko .framer-3r9kyn { height: 151px; width: 80px; } .framer-A34Ko .framer-1qz8f5m { height: 155px; } .framer-A34Ko .framer-1d6y8aq { height: 104px; width: 95px; }}\",\"@media (min-width: 1366px) and (max-width: 2159px) { .framer-A34Ko.framer-72rtr7 { width: 1366px; } .framer-A34Ko .framer-gkjbsg-container { z-index: 1; } .framer-A34Ko .framer-19ngqiu { aspect-ratio: unset; height: min-content; } .framer-A34Ko .framer-1r22211 { width: 100%; } .framer-A34Ko .framer-hda8ee { height: 140px; } .framer-A34Ko .framer-4s6bym { padding: 101px 0px 0px 0px; } .framer-A34Ko .framer-14m8j6a { gap: 4.93px; height: 310px; } .framer-A34Ko .framer-3r9kyn { height: 289px; width: 154px; } .framer-A34Ko .framer-1qz8f5m { height: 310px; } .framer-A34Ko .framer-1d6y8aq { height: 186px; width: 170px; }}\",\"@media (min-width: 2160px) { .framer-A34Ko.framer-72rtr7 { width: 2160px; } .framer-A34Ko .framer-gkjbsg-container { z-index: 1; } .framer-A34Ko .framer-19ngqiu { aspect-ratio: unset; height: min-content; } .framer-A34Ko .framer-1r22211 { width: 100%; } .framer-A34Ko .framer-12dwfsd, .framer-A34Ko .framer-1s6zxi5, .framer-A34Ko .framer-1xn7z0h, .framer-A34Ko .framer-1pdu9c3, .framer-A34Ko .framer-zm4oep { height: 720px; } .framer-A34Ko .framer-hda8ee { height: 140px; } .framer-A34Ko .framer-4s6bym { padding: 101px 0px 0px 0px; } .framer-A34Ko .framer-14m8j6a { gap: 4.93px; height: 310px; } .framer-A34Ko .framer-3r9kyn { height: 289px; width: 154px; } .framer-A34Ko .framer-1qz8f5m { height: 310px; } .framer-A34Ko .framer-1d6y8aq { height: 186px; width: 170px; }}\",\"@media (min-width: 440px) and (max-width: 809px) { .framer-A34Ko.framer-72rtr7 { padding: 220px 24px 0px 24px; width: 440px; } .framer-A34Ko .framer-19ngqiu { aspect-ratio: unset; height: min-content; } .framer-A34Ko .framer-1r22211 { width: 100%; } .framer-A34Ko .framer-msvz4j { gap: 24px; justify-content: flex-start; } .framer-A34Ko .framer-12dwfsd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px 0px; height: min-content; padding: 0px; z-index: 1; } .framer-A34Ko .framer-tplznr-container, .framer-A34Ko .framer-1np559u-container, .framer-A34Ko .framer-1e0qiu8-container, .framer-A34Ko .framer-afd9yh-container, .framer-A34Ko .framer-b34l9q-container, .framer-A34Ko .framer-1ne85jh-container, .framer-A34Ko .framer-gdudtb-container, .framer-A34Ko .framer-1kz7eh4-container { align-self: unset; height: 420px; } .framer-A34Ko .framer-1s6zxi5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px 0px; height: min-content; padding: 0px; } .framer-A34Ko .framer-1xn7z0h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; height: 864px; padding: 0px; } .framer-A34Ko .framer-glky5k-container, .framer-A34Ko .framer-1jic251-container { align-self: unset; flex: 1 0 0px; height: 1px; } .framer-A34Ko .framer-1pdu9c3, .framer-A34Ko .framer-zm4oep { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; height: min-content; padding: 0px; } .framer-A34Ko .framer-129q1h4 { gap: 0px; padding: 0px; } .framer-A34Ko .framer-jvsiht { padding: 0px; width: 100%; } .framer-A34Ko .framer-hda8ee { flex-direction: column; height: 120px; } .framer-A34Ko .framer-4s6bym { flex: none; gap: 24px; height: min-content; padding: 58px 0px 0px 0px; width: 100%; } .framer-A34Ko .framer-14m8j6a { gap: 1.36px; height: 77px; } .framer-A34Ko .framer-3r9kyn { height: 75px; width: 39px; } .framer-A34Ko .framer-1qz8f5m { height: 77px; } .framer-A34Ko .framer-1d6y8aq { height: 51px; width: 47px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4305\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ghVJPF1h6\":{\"layout\":[\"fixed\",\"auto\"]},\"TIZuwm4IG\":{\"layout\":[\"fixed\",\"auto\"]},\"WiQwHsf4c\":{\"layout\":[\"fixed\",\"auto\"]},\"UPEP4Zgm7\":{\"layout\":[\"fixed\",\"auto\"]},\"RbL2EEZTd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"H8Z7Gu6eZ\":{\"pattern\":\":H8Z7Gu6eZ\",\"name\":\"about\"},\"nEKnsp32S\":{\"pattern\":\":nEKnsp32S\",\"name\":\"projects\"},\"CjZpH95Nt\":{\"pattern\":\":CjZpH95Nt\",\"name\":\"projects\"},\"y9CV8R99j\":{\"pattern\":\":y9CV8R99j\",\"name\":\"projects\"},\"ZgtxAYLvg\":{\"pattern\":\":ZgtxAYLvg\",\"name\":\"projects\"},\"gpjtIyvjD\":{\"pattern\":\":gpjtIyvjD\",\"name\":\"projects\"},\"rWPcyWR4o\":{\"pattern\":\":rWPcyWR4o\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-A34Ko\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4305,width:1200};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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SmoothScrollFonts,...NavigationFonts,...CardFonts,...ButtonFonts,...CursorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4305\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ghVJPF1h6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TIZuwm4IG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WiQwHsf4c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UPEP4Zgm7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RbL2EEZTd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"H8Z7Gu6eZ\\\":{\\\"pattern\\\":\\\":H8Z7Gu6eZ\\\",\\\"name\\\":\\\"about\\\"},\\\"nEKnsp32S\\\":{\\\"pattern\\\":\\\":nEKnsp32S\\\",\\\"name\\\":\\\"projects\\\"},\\\"CjZpH95Nt\\\":{\\\"pattern\\\":\\\":CjZpH95Nt\\\",\\\"name\\\":\\\"projects\\\"},\\\"y9CV8R99j\\\":{\\\"pattern\\\":\\\":y9CV8R99j\\\",\\\"name\\\":\\\"projects\\\"},\\\"ZgtxAYLvg\\\":{\\\"pattern\\\":\\\":ZgtxAYLvg\\\",\\\"name\\\":\\\"projects\\\"},\\\"gpjtIyvjD\\\":{\\\"pattern\\\":\\\":gpjtIyvjD\\\",\\\"name\\\":\\\"projects\\\"},\\\"rWPcyWR4o\\\":{\\\"pattern\\\":\\\":rWPcyWR4o\\\",\\\"name\\\":\\\"contact\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["t", "e", "i", "s", "Animate", "o", "n", "r", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "h", "a", "c", "d", "p", "u", "v", "g", "S", "w", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "Lenis", "raf", "time", "p", "l", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor2", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "moB_MBSwZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerbBLHa_gM7", "withCSS", "bBLHa_gM7_default", "addPropertyControls", "ControlType", "addFonts", "Component", "props", "toggle", "ue", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "MotionAWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "RichText", "StopScrollFonts", "getFonts", "Component", "MotionNavWithFXWithOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transition3", "transition4", "animation2", "transition5", "animation3", "animation4", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "cursor", "height", "id", "width", "props", "createLayoutDependency", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "d7_GscovX", "PHq2vJPHf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap25pmev", "args", "onTaptesdw6", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerka2nfpde_", "withCSS", "ka2nfpde_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "css", "FramerVD3cSuhXB", "withCSS", "VD3cSuhXB_default", "addPropertyControls", "ControlType", "addFonts", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "h52W4QgVM", "ameWmUaDq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap120dhmk", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "SVG", "css", "FramerXUQmsHy7i", "withCSS", "XUQmsHy7i_default", "addPropertyControls", "ControlType", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "ka2nfpde_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "MotionDivWithOptimizedAppearEffect", "motion", "CardFonts", "bBLHa_gM7_default", "MotionDivWithFX", "ButtonFonts", "VD3cSuhXB_default", "FormContainerWithFX", "FormContainer", "CursorFonts", "XUQmsHy7i_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "transition2", "textEffect", "transition3", "animation2", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "formVariants", "form", "variants", "currentVariant", "transition6", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition7", "cursor", "XUQmsHy7i_default", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "ContainerWithFX", "PropertyOverrides2", "ka2nfpde_default", "RichText", "x", "RichTextWithOptimizedAppearEffect", "MotionDivWithOptimizedAppearEffect", "SVG", "MotionDivWithFX", "bBLHa_gM7_default", "FormContainerWithFX", "formState", "l", "FormPlainTextInput2", "VD3cSuhXB_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SmoothScrollFonts", "NavigationFonts", "CardFonts", "ButtonFonts", "CursorFonts", "__FramerMetadata__"]
}
