{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.42/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/4y7L7Kvtx221wnfaMf29/2R9D8M7ghpuNGFB75IVn/LbPf_wt6I.js", "ssg:https://framerusercontent.com/modules/YN8hM0bS7tR3SZOc8HSy/a7cQ8mjYrgpbBL5QDCim/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/3Yard41FjJGsc4NSEtFk/UorcSMziVIRNaDOYE2C5/koSWBfFur.js", "ssg:https://framerusercontent.com/modules/2O3pYHZxIOUb6IRa0uyE/U1IQfdmYC9dSWUIDqJtB/WaaeJQaHq.js", "ssg:https://framerusercontent.com/modules/77gQMXdaag96v873xUvo/lqkR40i28KuozSdmQ73n/XQGA9idcb.js", "ssg:https://framerusercontent.com/modules/TEEIMpfUJ0Ew6rxw3BlP/NkgH51pQ5UiewoYQjUeb/rszUpMGbW.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){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);return /*#__PURE__*/_jsx(_Fragment,{});}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", "import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-UXOjp .framer-styles-preset-2vgca9:not(.rich-text-wrapper), .framer-UXOjp .framer-styles-preset-2vgca9.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, #000000) /* {\"name\":\"Black\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, #000000); --framer-link-text-decoration: none; }'];export const className=\"framer-UXOjp\";\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\"}}}", "import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-4eme1 .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-4eme1 .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, #706a61) /* {\"name\":\"Dark beige\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-1e443ed0-3e32-434f-a8d5-6f31e7970b95, #dbff00) /* {\"name\":\"Ultra Lime\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, #706a61); --framer-link-text-decoration: none; }'];export const className=\"framer-4eme1\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,resolveLink,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4y7L7Kvtx221wnfaMf29/2R9D8M7ghpuNGFB75IVn/LbPf_wt6I.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/YN8hM0bS7tR3SZOc8HSy/a7cQ8mjYrgpbBL5QDCim/ro7OPezbn.js\";import ButtonCTA from\"https://framerusercontent.com/modules/lXVod6Y5LCk5EmSnjK15/mrwGrwc14qkrMCSDLnX6/i5jPegS41.js\";const ButtonCTAFonts=getFonts(ButtonCTA);const cycleOrder=[\"sbsBzXnE7\",\"mMfcSplr3\",\"sy5NAfQnC\"];const serializationHash=\"framer-oj3MG\";const variantClassNames={mMfcSplr3:\"framer-v-15gf2mf\",sbsBzXnE7:\"framer-v-zjgqc5\",sy5NAfQnC:\"framer-v-4cxv90\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Phone Open\":\"sy5NAfQnC\",Desktop:\"sbsBzXnE7\",Phone:\"mMfcSplr3\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"sbsBzXnE7\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"sbsBzXnE7\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15v6144=activeVariantCallback(async(...args)=>{setVariant(\"sy5NAfQnC\");});const onTapj4c25s=activeVariantCallback(async(...args)=>{setVariant(\"mMfcSplr3\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"mMfcSplr3\",\"sy5NAfQnC\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"mMfcSplr3\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"sy5NAfQnC\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"sy5NAfQnC\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-oj3MG\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,className:cx(\"framer-zjgqc5\",className),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sbsBzXnE7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{sy5NAfQnC:{backgroundColor:\"var(--token-1e443ed0-3e32-434f-a8d5-6f31e7970b95, rgb(219, 255, 0))\"}},...addPropertyOverrides({mMfcSplr3:{\"data-framer-name\":\"Phone\"},sy5NAfQnC:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q290bj\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"h_pA1C9SE\",...addPropertyOverrides({mMfcSplr3:{\"data-highlight\":true,onTap:onTap15v6144},sy5NAfQnC:{\"data-highlight\":true,onTap:onTapj4c25s}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-19c2voq framer-1ogoyb9\",\"data-framer-name\":\"Logo_Tekst_DbW_white\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Q226YeJSk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 43\"><path d=\"M 7.399 8.919 C 8.242 9.349 8.893 9.966 9.352 10.768 C 9.812 11.572 10.042 12.509 10.042 13.58 C 10.042 14.652 9.812 15.581 9.352 16.369 C 8.893 17.157 8.242 17.761 7.399 18.18 C 6.555 18.599 5.573 18.809 4.452 18.809 L 1.013 18.809 L 1.013 8.275 L 4.451 8.275 C 5.573 8.275 6.555 8.489 7.399 8.919 Z M 7.285 16.399 C 7.941 15.732 8.27 14.793 8.27 13.58 C 8.27 12.357 7.941 11.402 7.285 10.715 C 6.628 10.028 5.683 9.684 4.451 9.684 L 2.74 9.684 L 2.74 17.4 L 4.451 17.4 C 5.684 17.4 6.629 17.066 7.285 16.399 Z M 19.343 15.278 L 12.965 15.278 C 13.016 15.945 13.263 16.481 13.708 16.885 C 14.152 17.289 14.698 17.491 15.344 17.491 C 16.273 17.491 16.93 17.102 17.314 16.324 L 19.177 16.324 C 18.925 17.093 18.468 17.721 17.806 18.211 C 17.145 18.702 16.323 18.946 15.344 18.946 C 14.547 18.946 13.832 18.767 13.201 18.409 C 12.569 18.05 12.074 17.544 11.716 16.893 C 11.358 16.241 11.179 15.485 11.179 14.626 C 11.179 13.767 11.353 13.011 11.702 12.36 C 12.05 11.708 12.54 11.206 13.171 10.852 C 13.802 10.498 14.527 10.321 15.344 10.321 C 16.132 10.321 16.834 10.493 17.45 10.836 C 18.066 11.18 18.546 11.663 18.89 12.284 C 19.232 12.905 19.404 13.621 19.404 14.429 C 19.403 14.742 19.383 15.025 19.343 15.278 Z M 17.601 13.883 C 17.591 13.247 17.364 12.736 16.919 12.352 C 16.475 11.969 15.924 11.777 15.268 11.777 C 14.672 11.777 14.162 11.966 13.739 12.345 C 13.315 12.724 13.062 13.237 12.982 13.884 L 17.601 13.884 Z M 22.365 18.59 C 21.845 18.353 21.433 18.029 21.13 17.619 C 20.827 17.21 20.665 16.753 20.645 16.247 L 22.433 16.247 C 22.464 16.601 22.632 16.896 22.94 17.134 C 23.248 17.371 23.634 17.491 24.099 17.491 C 24.584 17.491 24.96 17.398 25.228 17.21 C 25.496 17.024 25.63 16.783 25.63 16.491 C 25.63 16.178 25.48 15.945 25.183 15.794 C 24.885 15.643 24.413 15.475 23.766 15.293 C 23.14 15.121 22.63 14.955 22.237 14.793 C 21.843 14.632 21.502 14.384 21.214 14.05 C 20.927 13.717 20.783 13.277 20.783 12.731 C 20.783 12.286 20.914 11.88 21.176 11.511 C 21.439 11.142 21.815 10.852 22.305 10.639 C 22.795 10.427 23.358 10.32 23.994 10.32 C 24.943 10.32 25.708 10.56 26.289 11.04 C 26.87 11.52 27.18 12.174 27.221 13.003 L 25.494 13.003 C 25.463 12.629 25.312 12.332 25.04 12.109 C 24.768 11.887 24.399 11.776 23.934 11.776 C 23.48 11.776 23.131 11.862 22.889 12.034 C 22.646 12.206 22.525 12.433 22.525 12.716 C 22.525 12.939 22.606 13.125 22.768 13.278 C 22.929 13.43 23.126 13.548 23.358 13.634 C 23.591 13.72 23.934 13.829 24.389 13.96 C 24.995 14.122 25.492 14.286 25.881 14.452 C 26.27 14.619 26.606 14.864 26.889 15.187 C 27.171 15.51 27.318 15.94 27.328 16.475 C 27.328 16.951 27.197 17.375 26.935 17.749 C 26.673 18.123 26.301 18.416 25.821 18.628 C 25.342 18.84 24.778 18.946 24.133 18.946 C 23.473 18.946 22.885 18.827 22.365 18.59 Z M 29.281 9.032 C 29.069 8.821 28.962 8.557 28.962 8.244 C 28.962 7.931 29.068 7.668 29.281 7.456 C 29.492 7.244 29.755 7.137 30.068 7.137 C 30.372 7.137 30.629 7.243 30.841 7.456 C 31.053 7.667 31.159 7.931 31.159 8.244 C 31.159 8.557 31.054 8.82 30.841 9.032 C 30.629 9.244 30.372 9.351 30.068 9.351 C 29.755 9.351 29.492 9.245 29.281 9.032 Z M 30.916 10.457 L 30.916 18.809 L 29.189 18.809 L 29.189 10.457 Z M 38.271 10.708 C 38.772 10.966 39.162 11.286 39.445 11.67 L 39.445 10.457 L 41.188 10.457 L 41.188 18.946 C 41.188 19.713 41.026 20.398 40.703 20.999 C 40.38 21.6 39.912 22.073 39.302 22.417 C 38.69 22.76 37.961 22.932 37.113 22.932 C 35.982 22.932 35.042 22.667 34.295 22.136 C 33.548 21.606 33.123 20.885 33.022 19.976 L 34.733 19.976 C 34.865 20.411 35.145 20.762 35.574 21.03 C 36.003 21.298 36.515 21.432 37.112 21.432 C 37.808 21.432 38.372 21.22 38.8 20.796 C 39.229 20.371 39.445 19.755 39.445 18.946 L 39.445 17.552 C 39.151 17.945 38.755 18.277 38.255 18.545 C 37.755 18.812 37.187 18.946 36.551 18.946 C 35.823 18.946 35.16 18.762 34.559 18.393 C 33.958 18.025 33.483 17.509 33.135 16.847 C 32.787 16.186 32.612 15.435 32.612 14.596 C 32.612 13.757 32.787 13.015 33.135 12.368 C 33.483 11.722 33.958 11.218 34.559 10.86 C 35.16 10.501 35.823 10.322 36.551 10.322 C 37.198 10.321 37.771 10.45 38.271 10.708 Z M 39.089 13.125 C 38.852 12.701 38.541 12.378 38.157 12.155 C 37.774 11.933 37.359 11.822 36.915 11.822 C 36.471 11.822 36.057 11.931 35.673 12.148 C 35.29 12.365 34.979 12.684 34.742 13.103 C 34.505 13.522 34.385 14.02 34.385 14.595 C 34.385 15.171 34.504 15.677 34.742 16.112 C 34.979 16.546 35.292 16.877 35.681 17.104 C 36.07 17.332 36.481 17.446 36.915 17.446 C 37.359 17.446 37.774 17.334 38.157 17.113 C 38.541 16.891 38.851 16.565 39.089 16.135 C 39.326 15.706 39.445 15.203 39.445 14.627 C 39.445 14.05 39.326 13.55 39.089 13.125 Z M 49.435 10.73 C 49.955 11.003 50.361 11.407 50.654 11.943 C 50.947 12.479 51.094 13.125 51.094 13.884 L 51.094 18.811 L 49.382 18.811 L 49.382 14.142 C 49.382 13.394 49.195 12.82 48.822 12.421 C 48.448 12.022 47.938 11.822 47.292 11.822 C 46.645 11.822 46.133 12.022 45.754 12.421 C 45.375 12.82 45.186 13.394 45.186 14.142 L 45.186 18.811 L 43.459 18.811 L 43.459 10.459 L 45.186 10.459 L 45.186 11.414 C 45.468 11.071 45.83 10.803 46.269 10.61 C 46.708 10.418 47.175 10.322 47.67 10.322 C 48.327 10.321 48.915 10.457 49.435 10.73 Z M 60.16 10.708 C 60.67 10.45 61.238 10.321 61.864 10.321 C 62.601 10.321 63.268 10.498 63.864 10.852 C 64.46 11.206 64.93 11.708 65.272 12.36 C 65.615 13.011 65.787 13.757 65.787 14.595 C 65.787 15.434 65.615 16.185 65.272 16.846 C 64.929 17.508 64.456 18.024 63.856 18.392 C 63.255 18.762 62.591 18.946 61.864 18.946 C 61.217 18.946 60.645 18.819 60.144 18.566 C 59.644 18.314 59.248 17.991 58.955 17.596 L 58.955 18.809 L 57.228 18.809 L 57.228 7.592 L 58.955 7.592 L 58.955 11.7 C 59.249 11.296 59.65 10.965 60.16 10.708 Z M 63.675 13.103 C 63.438 12.684 63.124 12.365 62.736 12.148 C 62.347 11.931 61.931 11.822 61.486 11.822 C 61.052 11.822 60.64 11.933 60.251 12.155 C 59.862 12.378 59.549 12.701 59.312 13.125 C 59.075 13.55 58.956 14.051 58.956 14.626 C 58.956 15.202 59.074 15.705 59.312 16.134 C 59.549 16.564 59.862 16.89 60.251 17.112 C 60.64 17.334 61.052 17.445 61.486 17.445 C 61.93 17.445 62.347 17.331 62.736 17.104 C 63.125 16.876 63.438 16.545 63.675 16.111 C 63.912 15.676 64.03 15.171 64.03 14.594 C 64.03 14.018 63.912 13.522 63.675 13.103 Z M 75.013 10.457 L 69.893 22.734 L 68.106 22.734 L 69.803 18.672 L 66.515 10.457 L 68.439 10.457 L 70.788 16.823 L 73.226 10.457 Z M 15.572 26.465 L 12.451 36.999 L 10.497 36.999 L 8.285 29.026 L 5.937 36.999 L 3.997 37.015 L 1.013 26.465 L 2.846 26.465 L 5.027 35.043 L 7.391 26.465 L 9.33 26.465 L 11.526 34.998 L 13.723 26.465 Z M 17.086 27.222 C 16.874 27.01 16.767 26.747 16.767 26.434 C 16.767 26.121 16.873 25.858 17.086 25.645 C 17.297 25.434 17.561 25.327 17.874 25.327 C 18.177 25.327 18.435 25.433 18.646 25.645 C 18.858 25.857 18.965 26.121 18.965 26.434 C 18.965 26.747 18.859 27.009 18.646 27.222 C 18.435 27.434 18.177 27.541 17.874 27.541 C 17.561 27.54 17.298 27.434 17.086 27.222 Z M 18.722 28.647 L 18.722 36.999 L 16.995 36.999 L 16.995 28.647 Z M 22.721 25.782 L 22.721 36.999 L 20.995 36.999 L 20.995 25.782 Z M 26.258 36.779 C 25.738 36.541 25.327 36.217 25.024 35.808 C 24.721 35.399 24.559 34.942 24.539 34.437 L 26.326 34.437 C 26.357 34.791 26.525 35.086 26.834 35.324 C 27.141 35.562 27.527 35.681 27.992 35.681 C 28.477 35.681 28.854 35.587 29.121 35.4 C 29.389 35.214 29.523 34.974 29.523 34.68 C 29.523 34.367 29.374 34.135 29.076 33.984 C 28.779 33.832 28.306 33.665 27.66 33.483 C 27.034 33.311 26.523 33.144 26.13 32.982 C 25.736 32.821 25.395 32.573 25.108 32.24 C 24.82 31.907 24.676 31.467 24.676 30.921 C 24.676 30.477 24.807 30.071 25.07 29.701 C 25.332 29.333 25.708 29.041 26.199 28.83 C 26.688 28.618 27.252 28.511 27.888 28.511 C 28.836 28.511 29.602 28.751 30.182 29.231 C 30.763 29.71 31.073 30.365 31.114 31.194 L 29.387 31.194 C 29.357 30.82 29.206 30.522 28.933 30.3 C 28.661 30.078 28.292 29.967 27.828 29.967 C 27.374 29.967 27.025 30.052 26.782 30.224 C 26.54 30.396 26.418 30.624 26.418 30.907 C 26.418 31.13 26.499 31.316 26.661 31.468 C 26.823 31.62 27.019 31.739 27.252 31.825 C 27.484 31.911 27.827 32.019 28.282 32.151 C 28.888 32.313 29.386 32.476 29.774 32.643 C 30.163 32.81 30.499 33.055 30.782 33.378 C 31.064 33.701 31.211 34.131 31.222 34.666 C 31.222 35.141 31.091 35.566 30.828 35.94 C 30.566 36.313 30.194 36.607 29.715 36.818 C 29.235 37.03 28.672 37.137 28.026 37.137 C 27.366 37.135 26.778 37.017 26.258 36.779 Z M 34.567 36.597 C 33.931 36.238 33.431 35.732 33.067 35.081 C 32.704 34.429 32.522 33.673 32.522 32.814 C 32.522 31.965 32.708 31.213 33.083 30.556 C 33.456 29.899 33.966 29.394 34.612 29.04 C 35.258 28.686 35.981 28.509 36.779 28.509 C 37.577 28.509 38.298 28.686 38.945 29.04 C 39.591 29.394 40.101 29.899 40.475 30.556 C 40.848 31.213 41.036 31.965 41.036 32.814 C 41.036 33.663 40.844 34.416 40.46 35.072 C 40.077 35.73 39.554 36.237 38.893 36.596 C 38.231 36.954 37.501 37.133 36.704 37.133 C 35.915 37.135 35.203 36.956 34.567 36.597 Z M 37.953 35.316 C 38.342 35.104 38.658 34.785 38.9 34.361 C 39.142 33.936 39.264 33.421 39.264 32.815 C 39.264 32.209 39.147 31.696 38.915 31.276 C 38.683 30.857 38.375 30.541 37.992 30.329 C 37.608 30.117 37.194 30.01 36.75 30.01 C 36.306 30.01 35.894 30.116 35.515 30.329 C 35.136 30.54 34.836 30.857 34.614 31.276 C 34.392 31.695 34.281 32.209 34.281 32.815 C 34.281 33.715 34.511 34.409 34.97 34.9 C 35.43 35.39 36.008 35.635 36.705 35.635 C 37.147 35.635 37.564 35.529 37.953 35.316 Z M 48.723 28.919 C 49.243 29.192 49.649 29.596 49.942 30.132 C 50.235 30.668 50.382 31.314 50.382 32.072 L 50.382 36.999 L 48.67 36.999 L 48.67 32.33 C 48.67 31.582 48.483 31.008 48.11 30.609 C 47.736 30.21 47.226 30.011 46.58 30.011 C 45.933 30.011 45.421 30.211 45.042 30.609 C 44.663 31.008 44.474 31.582 44.474 32.33 L 44.474 36.999 L 42.747 36.999 L 42.747 28.647 L 44.474 28.647 L 44.474 29.602 C 44.756 29.259 45.118 28.991 45.557 28.798 C 45.997 28.606 46.463 28.51 46.958 28.51 C 47.615 28.51 48.203 28.647 48.723 28.919 Z M 57.229 34.773 L 75.013 34.773 L 75.013 37.135 L 57.229 37.135 Z\" fill=\"var(--token-4a123c48-8848-47f6-a584-151fdb66230f, rgb(210, 203, 199)) /* {&quot;name&quot;:&quot;Light beige&quot;} */\"></path></svg>',svgContentId:25641331,withExternalLayout:true,...addPropertyOverrides({sy5NAfQnC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 43\"><path d=\"M 7.399 8.919 C 8.242 9.349 8.893 9.966 9.352 10.768 C 9.812 11.572 10.042 12.509 10.042 13.58 C 10.042 14.652 9.812 15.581 9.352 16.369 C 8.893 17.157 8.242 17.761 7.399 18.18 C 6.555 18.599 5.573 18.809 4.452 18.809 L 1.013 18.809 L 1.013 8.275 L 4.451 8.275 C 5.573 8.275 6.555 8.489 7.399 8.919 Z M 7.285 16.399 C 7.941 15.732 8.27 14.793 8.27 13.58 C 8.27 12.357 7.941 11.402 7.285 10.715 C 6.628 10.028 5.683 9.684 4.451 9.684 L 2.74 9.684 L 2.74 17.4 L 4.451 17.4 C 5.684 17.4 6.629 17.066 7.285 16.399 Z M 19.343 15.278 L 12.965 15.278 C 13.016 15.945 13.263 16.481 13.708 16.885 C 14.152 17.289 14.698 17.491 15.344 17.491 C 16.273 17.491 16.93 17.102 17.314 16.324 L 19.177 16.324 C 18.925 17.093 18.468 17.721 17.806 18.211 C 17.145 18.702 16.323 18.946 15.344 18.946 C 14.547 18.946 13.832 18.767 13.201 18.409 C 12.569 18.05 12.074 17.544 11.716 16.893 C 11.358 16.241 11.179 15.485 11.179 14.626 C 11.179 13.767 11.353 13.011 11.702 12.36 C 12.05 11.708 12.54 11.206 13.171 10.852 C 13.802 10.498 14.527 10.321 15.344 10.321 C 16.132 10.321 16.834 10.493 17.45 10.836 C 18.066 11.18 18.546 11.663 18.89 12.284 C 19.232 12.905 19.404 13.621 19.404 14.429 C 19.403 14.742 19.383 15.025 19.343 15.278 Z M 17.601 13.883 C 17.591 13.247 17.364 12.736 16.919 12.352 C 16.475 11.969 15.924 11.777 15.268 11.777 C 14.672 11.777 14.162 11.966 13.739 12.345 C 13.315 12.724 13.062 13.237 12.982 13.884 L 17.601 13.884 Z M 22.365 18.59 C 21.845 18.353 21.433 18.029 21.13 17.619 C 20.827 17.21 20.665 16.753 20.645 16.247 L 22.433 16.247 C 22.464 16.601 22.632 16.896 22.94 17.134 C 23.248 17.371 23.634 17.491 24.099 17.491 C 24.584 17.491 24.96 17.398 25.228 17.21 C 25.496 17.024 25.63 16.783 25.63 16.491 C 25.63 16.178 25.48 15.945 25.183 15.794 C 24.885 15.643 24.413 15.475 23.766 15.293 C 23.14 15.121 22.63 14.955 22.237 14.793 C 21.843 14.632 21.502 14.384 21.214 14.05 C 20.927 13.717 20.783 13.277 20.783 12.731 C 20.783 12.286 20.914 11.88 21.176 11.511 C 21.439 11.142 21.815 10.852 22.305 10.639 C 22.795 10.427 23.358 10.32 23.994 10.32 C 24.943 10.32 25.708 10.56 26.289 11.04 C 26.87 11.52 27.18 12.174 27.221 13.003 L 25.494 13.003 C 25.463 12.629 25.312 12.332 25.04 12.109 C 24.768 11.887 24.399 11.776 23.934 11.776 C 23.48 11.776 23.131 11.862 22.889 12.034 C 22.646 12.206 22.525 12.433 22.525 12.716 C 22.525 12.939 22.606 13.125 22.768 13.278 C 22.929 13.43 23.126 13.548 23.358 13.634 C 23.591 13.72 23.934 13.829 24.389 13.96 C 24.995 14.122 25.492 14.286 25.881 14.452 C 26.27 14.619 26.606 14.864 26.889 15.187 C 27.171 15.51 27.318 15.94 27.328 16.475 C 27.328 16.951 27.197 17.375 26.935 17.749 C 26.673 18.123 26.301 18.416 25.821 18.628 C 25.342 18.84 24.778 18.946 24.133 18.946 C 23.473 18.946 22.885 18.827 22.365 18.59 Z M 29.281 9.032 C 29.069 8.821 28.962 8.557 28.962 8.244 C 28.962 7.931 29.068 7.668 29.281 7.456 C 29.492 7.244 29.755 7.137 30.068 7.137 C 30.372 7.137 30.629 7.243 30.841 7.456 C 31.053 7.667 31.159 7.931 31.159 8.244 C 31.159 8.557 31.054 8.82 30.841 9.032 C 30.629 9.244 30.372 9.351 30.068 9.351 C 29.755 9.351 29.492 9.245 29.281 9.032 Z M 30.916 10.457 L 30.916 18.809 L 29.189 18.809 L 29.189 10.457 Z M 38.271 10.708 C 38.772 10.966 39.162 11.286 39.445 11.67 L 39.445 10.457 L 41.188 10.457 L 41.188 18.946 C 41.188 19.713 41.026 20.398 40.703 20.999 C 40.38 21.6 39.912 22.073 39.302 22.417 C 38.69 22.76 37.961 22.932 37.113 22.932 C 35.982 22.932 35.042 22.667 34.295 22.136 C 33.548 21.606 33.123 20.885 33.022 19.976 L 34.733 19.976 C 34.865 20.411 35.145 20.762 35.574 21.03 C 36.003 21.298 36.515 21.432 37.112 21.432 C 37.808 21.432 38.372 21.22 38.8 20.796 C 39.229 20.371 39.445 19.755 39.445 18.946 L 39.445 17.552 C 39.151 17.945 38.755 18.277 38.255 18.545 C 37.755 18.812 37.187 18.946 36.551 18.946 C 35.823 18.946 35.16 18.762 34.559 18.393 C 33.958 18.025 33.483 17.509 33.135 16.847 C 32.787 16.186 32.612 15.435 32.612 14.596 C 32.612 13.757 32.787 13.015 33.135 12.368 C 33.483 11.722 33.958 11.218 34.559 10.86 C 35.16 10.501 35.823 10.322 36.551 10.322 C 37.198 10.321 37.771 10.45 38.271 10.708 Z M 39.089 13.125 C 38.852 12.701 38.541 12.378 38.157 12.155 C 37.774 11.933 37.359 11.822 36.915 11.822 C 36.471 11.822 36.057 11.931 35.673 12.148 C 35.29 12.365 34.979 12.684 34.742 13.103 C 34.505 13.522 34.385 14.02 34.385 14.595 C 34.385 15.171 34.504 15.677 34.742 16.112 C 34.979 16.546 35.292 16.877 35.681 17.104 C 36.07 17.332 36.481 17.446 36.915 17.446 C 37.359 17.446 37.774 17.334 38.157 17.113 C 38.541 16.891 38.851 16.565 39.089 16.135 C 39.326 15.706 39.445 15.203 39.445 14.627 C 39.445 14.05 39.326 13.55 39.089 13.125 Z M 49.435 10.73 C 49.955 11.003 50.361 11.407 50.654 11.943 C 50.947 12.479 51.094 13.125 51.094 13.884 L 51.094 18.811 L 49.382 18.811 L 49.382 14.142 C 49.382 13.394 49.195 12.82 48.822 12.421 C 48.448 12.022 47.938 11.822 47.292 11.822 C 46.645 11.822 46.133 12.022 45.754 12.421 C 45.375 12.82 45.186 13.394 45.186 14.142 L 45.186 18.811 L 43.459 18.811 L 43.459 10.459 L 45.186 10.459 L 45.186 11.414 C 45.468 11.071 45.83 10.803 46.269 10.61 C 46.708 10.418 47.175 10.322 47.67 10.322 C 48.327 10.321 48.915 10.457 49.435 10.73 Z M 60.16 10.708 C 60.67 10.45 61.238 10.321 61.864 10.321 C 62.601 10.321 63.268 10.498 63.864 10.852 C 64.46 11.206 64.93 11.708 65.272 12.36 C 65.615 13.011 65.787 13.757 65.787 14.595 C 65.787 15.434 65.615 16.185 65.272 16.846 C 64.929 17.508 64.456 18.024 63.856 18.392 C 63.255 18.762 62.591 18.946 61.864 18.946 C 61.217 18.946 60.645 18.819 60.144 18.566 C 59.644 18.314 59.248 17.991 58.955 17.596 L 58.955 18.809 L 57.228 18.809 L 57.228 7.592 L 58.955 7.592 L 58.955 11.7 C 59.249 11.296 59.65 10.965 60.16 10.708 Z M 63.675 13.103 C 63.438 12.684 63.124 12.365 62.736 12.148 C 62.347 11.931 61.931 11.822 61.486 11.822 C 61.052 11.822 60.64 11.933 60.251 12.155 C 59.862 12.378 59.549 12.701 59.312 13.125 C 59.075 13.55 58.956 14.051 58.956 14.626 C 58.956 15.202 59.074 15.705 59.312 16.134 C 59.549 16.564 59.862 16.89 60.251 17.112 C 60.64 17.334 61.052 17.445 61.486 17.445 C 61.93 17.445 62.347 17.331 62.736 17.104 C 63.125 16.876 63.438 16.545 63.675 16.111 C 63.912 15.676 64.03 15.171 64.03 14.594 C 64.03 14.018 63.912 13.522 63.675 13.103 Z M 75.013 10.457 L 69.893 22.734 L 68.106 22.734 L 69.803 18.672 L 66.515 10.457 L 68.439 10.457 L 70.788 16.823 L 73.226 10.457 Z M 15.572 26.465 L 12.451 36.999 L 10.497 36.999 L 8.285 29.026 L 5.937 36.999 L 3.997 37.015 L 1.013 26.465 L 2.846 26.465 L 5.027 35.043 L 7.391 26.465 L 9.33 26.465 L 11.526 34.998 L 13.723 26.465 Z M 17.086 27.222 C 16.874 27.01 16.767 26.747 16.767 26.434 C 16.767 26.121 16.873 25.858 17.086 25.645 C 17.297 25.434 17.561 25.327 17.874 25.327 C 18.177 25.327 18.435 25.433 18.646 25.645 C 18.858 25.857 18.965 26.121 18.965 26.434 C 18.965 26.747 18.859 27.009 18.646 27.222 C 18.435 27.434 18.177 27.541 17.874 27.541 C 17.561 27.54 17.298 27.434 17.086 27.222 Z M 18.722 28.647 L 18.722 36.999 L 16.995 36.999 L 16.995 28.647 Z M 22.721 25.782 L 22.721 36.999 L 20.995 36.999 L 20.995 25.782 Z M 26.258 36.779 C 25.738 36.541 25.327 36.217 25.024 35.808 C 24.721 35.399 24.559 34.942 24.539 34.437 L 26.326 34.437 C 26.357 34.791 26.525 35.086 26.834 35.324 C 27.141 35.562 27.527 35.681 27.992 35.681 C 28.477 35.681 28.854 35.587 29.121 35.4 C 29.389 35.214 29.523 34.974 29.523 34.68 C 29.523 34.367 29.374 34.135 29.076 33.984 C 28.779 33.832 28.306 33.665 27.66 33.483 C 27.034 33.311 26.523 33.144 26.13 32.982 C 25.736 32.821 25.395 32.573 25.108 32.24 C 24.82 31.907 24.676 31.467 24.676 30.921 C 24.676 30.477 24.807 30.071 25.07 29.701 C 25.332 29.333 25.708 29.041 26.199 28.83 C 26.688 28.618 27.252 28.511 27.888 28.511 C 28.836 28.511 29.602 28.751 30.182 29.231 C 30.763 29.71 31.073 30.365 31.114 31.194 L 29.387 31.194 C 29.357 30.82 29.206 30.522 28.933 30.3 C 28.661 30.078 28.292 29.967 27.828 29.967 C 27.374 29.967 27.025 30.052 26.782 30.224 C 26.54 30.396 26.418 30.624 26.418 30.907 C 26.418 31.13 26.499 31.316 26.661 31.468 C 26.823 31.62 27.019 31.739 27.252 31.825 C 27.484 31.911 27.827 32.019 28.282 32.151 C 28.888 32.313 29.386 32.476 29.774 32.643 C 30.163 32.81 30.499 33.055 30.782 33.378 C 31.064 33.701 31.211 34.131 31.222 34.666 C 31.222 35.141 31.091 35.566 30.828 35.94 C 30.566 36.313 30.194 36.607 29.715 36.818 C 29.235 37.03 28.672 37.137 28.026 37.137 C 27.366 37.135 26.778 37.017 26.258 36.779 Z M 34.567 36.597 C 33.931 36.238 33.431 35.732 33.067 35.081 C 32.704 34.429 32.522 33.673 32.522 32.814 C 32.522 31.965 32.708 31.213 33.083 30.556 C 33.456 29.899 33.966 29.394 34.612 29.04 C 35.258 28.686 35.981 28.509 36.779 28.509 C 37.577 28.509 38.298 28.686 38.945 29.04 C 39.591 29.394 40.101 29.899 40.475 30.556 C 40.848 31.213 41.036 31.965 41.036 32.814 C 41.036 33.663 40.844 34.416 40.46 35.072 C 40.077 35.73 39.554 36.237 38.893 36.596 C 38.231 36.954 37.501 37.133 36.704 37.133 C 35.915 37.135 35.203 36.956 34.567 36.597 Z M 37.953 35.316 C 38.342 35.104 38.658 34.785 38.9 34.361 C 39.142 33.936 39.264 33.421 39.264 32.815 C 39.264 32.209 39.147 31.696 38.915 31.276 C 38.683 30.857 38.375 30.541 37.992 30.329 C 37.608 30.117 37.194 30.01 36.75 30.01 C 36.306 30.01 35.894 30.116 35.515 30.329 C 35.136 30.54 34.836 30.857 34.614 31.276 C 34.392 31.695 34.281 32.209 34.281 32.815 C 34.281 33.715 34.511 34.409 34.97 34.9 C 35.43 35.39 36.008 35.635 36.705 35.635 C 37.147 35.635 37.564 35.529 37.953 35.316 Z M 48.723 28.919 C 49.243 29.192 49.649 29.596 49.942 30.132 C 50.235 30.668 50.382 31.314 50.382 32.072 L 50.382 36.999 L 48.67 36.999 L 48.67 32.33 C 48.67 31.582 48.483 31.008 48.11 30.609 C 47.736 30.21 47.226 30.011 46.58 30.011 C 45.933 30.011 45.421 30.211 45.042 30.609 C 44.663 31.008 44.474 31.582 44.474 32.33 L 44.474 36.999 L 42.747 36.999 L 42.747 28.647 L 44.474 28.647 L 44.474 29.602 C 44.756 29.259 45.118 28.991 45.557 28.798 C 45.997 28.606 46.463 28.51 46.958 28.51 C 47.615 28.51 48.203 28.647 48.723 28.919 Z M 57.229 34.773 L 75.013 34.773 L 75.013 37.135 L 57.229 37.135 Z\" fill=\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:1841444114}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rc6xwx\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"wQtyH51Lv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16q5ilf\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"Rb0ZWvpGA\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{mMfcSplr3:{backgroundColor:\"var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153))\"},sy5NAfQnC:{backgroundColor:\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\",rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w7732j\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"ph8s30jTF\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{mMfcSplr3:{backgroundColor:\"var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153))\"},sy5NAfQnC:{backgroundColor:\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\",rotate:45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mqv33u\",layoutDependency:layoutDependency,layoutId:\"IUVevG482\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-131xefa\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"T40O5w9Qf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},variants:{sy5NAfQnC:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OSwAwDP1q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"About\"})})})}),className:\"framer-qpjrqs\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"s2lu5oDeF\",style:{\"--extracted-r6o4lv\":\"var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{sy5NAfQnC:{\"--extracted-r6o4lv\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sy5NAfQnC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OSwAwDP1q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"About\"})})})}),className:\"framer-v8qpi8\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"WXxtNkWZn\",style:{\"--extracted-r6o4lv\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CkV5Zw1Qe\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Cases\"})})})}),className:\"framer-1pxjy2\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"ByhFww9MG\",style:{\"--extracted-r6o4lv\":\"var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{sy5NAfQnC:{\"--extracted-r6o4lv\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sy5NAfQnC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CkV5Zw1Qe\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"Cases\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TVXCpXPvE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Contact\"})})})}),className:\"framer-177jdr0\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"PSZcXEYSP\",style:{\"--extracted-r6o4lv\":\"var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, rgb(183, 171, 153))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{sy5NAfQnC:{\"--extracted-r6o4lv\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sy5NAfQnC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TVXCpXPvE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1762bcm-container\",layoutDependency:layoutDependency,layoutId:\"PDGvPxKv1-container\",children:/*#__PURE__*/_jsx(ButtonCTA,{height:\"100%\",id:\"PDGvPxKv1\",ij4s1wMxJ:\"Get in touch\",l6cixB5wk:resolveLink({webPageId:\"TVXCpXPvE\"},router),layoutId:\"PDGvPxKv1\",style:{height:\"100%\"},variant:\"RtgXJS7_q\",width:\"100%\"})})]})]})})})});});const css=['.framer-oj3MG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oj3MG .framer-1ogoyb9 { display: block; }\",\".framer-oj3MG .framer-zjgqc5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-oj3MG .framer-q290bj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 10px; position: relative; width: min-content; }\",\".framer-oj3MG .framer-19c2voq { flex: none; height: 43px; position: relative; text-decoration: none; width: 76px; }\",\".framer-oj3MG .framer-1rc6xwx { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-oj3MG .framer-16q5ilf { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oj3MG .framer-w7732j { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oj3MG .framer-mqv33u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oj3MG .framer-131xefa { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 18px 30px 18px 30px; position: relative; width: 262px; }\",\".framer-oj3MG .framer-qpjrqs, .framer-oj3MG .framer-v8qpi8, .framer-oj3MG .framer-1pxjy2, .framer-oj3MG .framer-177jdr0 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-oj3MG .framer-1762bcm-container { cursor: pointer; flex: none; height: 60px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oj3MG .framer-q290bj, .framer-oj3MG .framer-mqv33u, .framer-oj3MG .framer-131xefa { gap: 0px; } .framer-oj3MG .framer-q290bj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oj3MG .framer-q290bj > :first-child, .framer-oj3MG .framer-mqv33u > :first-child, .framer-oj3MG .framer-131xefa > :first-child { margin-left: 0px; } .framer-oj3MG .framer-q290bj > :last-child, .framer-oj3MG .framer-mqv33u > :last-child, .framer-oj3MG .framer-131xefa > :last-child { margin-right: 0px; } .framer-oj3MG .framer-mqv33u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oj3MG .framer-131xefa > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-oj3MG.framer-v-15gf2mf .framer-zjgqc5 { flex-direction: column; gap: 0px; justify-content: center; width: 390px; }\",\".framer-oj3MG.framer-v-15gf2mf .framer-q290bj { cursor: pointer; gap: unset; justify-content: space-between; padding: 30px 30px 30px 30px; width: 100%; }\",\".framer-oj3MG.framer-v-15gf2mf .framer-1rc6xwx, .framer-oj3MG.framer-v-4cxv90 .framer-1rc6xwx { height: 44px; width: 44px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oj3MG.framer-v-15gf2mf .framer-zjgqc5, .framer-oj3MG.framer-v-15gf2mf .framer-q290bj { gap: 0px; } .framer-oj3MG.framer-v-15gf2mf .framer-zjgqc5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oj3MG.framer-v-15gf2mf .framer-zjgqc5 > :first-child { margin-top: 0px; } .framer-oj3MG.framer-v-15gf2mf .framer-zjgqc5 > :last-child { margin-bottom: 0px; } .framer-oj3MG.framer-v-15gf2mf .framer-q290bj > *, .framer-oj3MG.framer-v-15gf2mf .framer-q290bj > :first-child, .framer-oj3MG.framer-v-15gf2mf .framer-q290bj > :last-child { margin: 0px; } }\",\".framer-oj3MG.framer-v-4cxv90 .framer-zjgqc5 { align-content: start; align-items: start; flex-direction: column; gap: 40px; height: 700px; justify-content: flex-start; overflow: auto; overscroll-behavior: contain; padding: 30px 30px 120px 30px; width: 390px; }\",\".framer-oj3MG.framer-v-4cxv90 .framer-q290bj { cursor: pointer; gap: unset; justify-content: space-between; order: 0; padding: 0px 0px 0px 0px; width: 100%; }\",\".framer-oj3MG.framer-v-4cxv90 .framer-16q5ilf, .framer-oj3MG.framer-v-4cxv90 .framer-w7732j { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-oj3MG.framer-v-4cxv90 .framer-mqv33u { align-content: start; align-items: start; flex-direction: column; justify-content: flex-start; order: 1; }\",\".framer-oj3MG.framer-v-4cxv90 .framer-131xefa { align-content: start; align-items: start; flex-direction: column; gap: 10px; padding: 0px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oj3MG.framer-v-4cxv90 .framer-zjgqc5, .framer-oj3MG.framer-v-4cxv90 .framer-q290bj, .framer-oj3MG.framer-v-4cxv90 .framer-mqv33u, .framer-oj3MG.framer-v-4cxv90 .framer-131xefa { gap: 0px; } .framer-oj3MG.framer-v-4cxv90 .framer-zjgqc5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oj3MG.framer-v-4cxv90 .framer-zjgqc5 > :first-child, .framer-oj3MG.framer-v-4cxv90 .framer-mqv33u > :first-child, .framer-oj3MG.framer-v-4cxv90 .framer-131xefa > :first-child { margin-top: 0px; } .framer-oj3MG.framer-v-4cxv90 .framer-zjgqc5 > :last-child, .framer-oj3MG.framer-v-4cxv90 .framer-mqv33u > :last-child, .framer-oj3MG.framer-v-4cxv90 .framer-131xefa > :last-child { margin-bottom: 0px; } .framer-oj3MG.framer-v-4cxv90 .framer-q290bj > *, .framer-oj3MG.framer-v-4cxv90 .framer-q290bj > :first-child, .framer-oj3MG.framer-v-4cxv90 .framer-q290bj > :last-child { margin: 0px; } .framer-oj3MG.framer-v-4cxv90 .framer-mqv33u > *, .framer-oj3MG.framer-v-4cxv90 .framer-131xefa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 63\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mMfcSplr3\":{\"layout\":[\"fixed\",\"auto\"]},\"sy5NAfQnC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n */const FramerkoSWBfFur=withCSS(Component,css,\"framer-oj3MG\");export default FramerkoSWBfFur;FramerkoSWBfFur.displayName=\"Navigation\";FramerkoSWBfFur.defaultProps={height:63,width:1200};addPropertyControls(FramerkoSWBfFur,{variant:{options:[\"sbsBzXnE7\",\"mMfcSplr3\",\"sy5NAfQnC\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkoSWBfFur,[{family:\"Poppins\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},...ButtonCTAFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkoSWBfFur\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mMfcSplr3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sy5NAfQnC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"63\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as t}from\"framer\";t.loadWebFontsFromSelectors([\"GF;Poppins-regular\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-italic\"]);export const fonts=[{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/WaaeJQaHq:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",weight:\"400\"},{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/WaaeJQaHq:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\",weight:\"700\"},{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/WaaeJQaHq:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\",weight:\"700\"},{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/WaaeJQaHq:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\",weight:\"400\"}];export const css=['.framer-2vxAz .framer-styles-preset-15rez7:not(.rich-text-wrapper), .framer-2vxAz .framer-styles-preset-15rez7.rich-text-wrapper h2 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 128px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, #b7ab99); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-2vxAz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as t}from\"framer\";t.loadWebFontsFromSelectors([\"GF;Poppins-regular\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-italic\"]);export const fonts=[{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/XQGA9idcb:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",weight:\"400\"},{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/XQGA9idcb:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\",weight:\"700\"},{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/XQGA9idcb:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\",weight:\"700\"},{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/XQGA9idcb:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\",weight:\"400\"}];export const css=['.framer-F5kzg .framer-styles-preset-ec9ok3:not(.rich-text-wrapper), .framer-F5kzg .framer-styles-preset-ec9ok3.rich-text-wrapper h3 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 96px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-5bf271f3-4b60-4e3a-bca1-6f72017d4726, #b7ab99); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-F5kzg\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/4y7L7Kvtx221wnfaMf29/2R9D8M7ghpuNGFB75IVn/LbPf_wt6I.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/YN8hM0bS7tR3SZOc8HSy/a7cQ8mjYrgpbBL5QDCim/ro7OPezbn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2O3pYHZxIOUb6IRa0uyE/U1IQfdmYC9dSWUIDqJtB/WaaeJQaHq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/77gQMXdaag96v873xUvo/lqkR40i28KuozSdmQ73n/XQGA9idcb.js\";const cycleOrder=[\"z4SR7mUz2\",\"dcRCGfnJj\",\"SPct5_IKK\"];const serializationHash=\"framer-UKI1C\";const variantClassNames={dcRCGfnJj:\"framer-v-1l13nm\",SPct5_IKK:\"framer-v-1nl8ul8\",z4SR7mUz2:\"framer-v-1anmts4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Desktop Footer\":\"z4SR7mUz2\",\"Mobile Footer\":\"dcRCGfnJj\",\"Variant 3\":\"SPct5_IKK\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"z4SR7mUz2\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"z4SR7mUz2\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-UKI1C\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1anmts4\",className),\"data-framer-name\":\"Desktop Footer\",layoutDependency:layoutDependency,layoutId:\"z4SR7mUz2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-1e443ed0-3e32-434f-a8d5-6f31e7970b95, rgb(219, 255, 0))\",...style},...addPropertyOverrides({dcRCGfnJj:{\"data-framer-name\":\"Mobile Footer\"},SPct5_IKK:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtvgep\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"Cw8kepf5_\",style:{backgroundColor:\"var(--token-1e443ed0-3e32-434f-a8d5-6f31e7970b95, rgb(219, 255, 0))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-15rez7\",\"data-styles-preset\":\"WaaeJQaHq\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:[\"Let's work \",/*#__PURE__*/_jsx(motion.br,{}),\"together\"]})}),className:\"framer-1mdh7l3\",layoutDependency:layoutDependency,layoutId:\"xdm9ioiuK\",style:{\"--extracted-1of0zx5\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dcRCGfnJj:{\"--extracted-1eung3n\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\"},SPct5_IKK:{\"--extracted-a0htzi\":\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:[\"Let's work \",/*#__PURE__*/_jsx(motion.br,{}),\"together\"]})}),fonts:[\"GF;Poppins-regular\"]},SPct5_IKK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-ec9ok3\",\"data-styles-preset\":\"XQGA9idcb\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0)))\"},children:[\"Let's work \",/*#__PURE__*/_jsx(motion.br,{}),\"together\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k29pzd\",layoutDependency:layoutDependency,layoutId:\"z9uFLSSAa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:\"Need help elevating your brand?\"})}),className:\"framer-f8zasi\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"ApwnGFB77\",style:{\"--extracted-1lwpl3i\":\"var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:\"Need help elevating your brand?\"})})},SPct5_IKK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:\"Need help elevating your brand?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y1gdrs\",layoutDependency:layoutDependency,layoutId:\"ecQ7nlubb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"175%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@designbywilson.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"Hello@designbywilson.com\"})})})}),className:\"framer-gb8daw\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"t5tI2xvAn\",style:{\"--extracted-1lwpl3i\":\"var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"175%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@designbywilson.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"Hello@designbywilson.com\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"175%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"call to: +31629159601\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"+316 29 15 96 01\"})})})}),className:\"framer-1gfqyai\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"x0IRuQyiI\",style:{\"--extracted-1lwpl3i\":\"var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"175%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"call to: +31629159601\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2vgca9\",\"data-styles-preset\":\"LbPf_wt6I\",children:\"+316 29 15 96 01\"})})})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19vicm5\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"DgBlLOayj\",style:{backgroundColor:\"var(--token-4ddf25f0-cb0b-496d-a26c-67821a370422, rgb(38, 38, 38))\"},variants:{SPct5_IKK:{backgroundColor:\"var(--token-efdfe56e-9470-43af-a98f-2c35b2a2f027, rgb(0, 0, 0))\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n3nwxd\",layoutDependency:layoutDependency,layoutId:\"VCSCokHbg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mulktz\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"c450ATGD7\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1siismb framer-1bsbifu\",\"data-framer-name\":\"Logo_Tekst_DbW_white\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OxUqeYh1y\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 43\"><path d=\"M 7.399 8.919 C 8.242 9.349 8.893 9.966 9.352 10.768 C 9.812 11.572 10.042 12.509 10.042 13.58 C 10.042 14.652 9.812 15.581 9.352 16.369 C 8.893 17.157 8.242 17.761 7.399 18.18 C 6.555 18.599 5.573 18.809 4.452 18.809 L 1.013 18.809 L 1.013 8.275 L 4.451 8.275 C 5.573 8.275 6.555 8.489 7.399 8.919 Z M 7.285 16.399 C 7.941 15.732 8.27 14.793 8.27 13.58 C 8.27 12.357 7.941 11.402 7.285 10.715 C 6.628 10.028 5.683 9.684 4.451 9.684 L 2.74 9.684 L 2.74 17.4 L 4.451 17.4 C 5.684 17.4 6.629 17.066 7.285 16.399 Z M 19.343 15.278 L 12.965 15.278 C 13.016 15.945 13.263 16.481 13.708 16.885 C 14.152 17.289 14.698 17.491 15.344 17.491 C 16.273 17.491 16.93 17.102 17.314 16.324 L 19.177 16.324 C 18.925 17.093 18.468 17.721 17.806 18.211 C 17.145 18.702 16.323 18.946 15.344 18.946 C 14.547 18.946 13.832 18.767 13.201 18.409 C 12.569 18.05 12.074 17.544 11.716 16.893 C 11.358 16.241 11.179 15.485 11.179 14.626 C 11.179 13.767 11.353 13.011 11.702 12.36 C 12.05 11.708 12.54 11.206 13.171 10.852 C 13.802 10.498 14.527 10.321 15.344 10.321 C 16.132 10.321 16.834 10.493 17.45 10.836 C 18.066 11.18 18.546 11.663 18.89 12.284 C 19.232 12.905 19.404 13.621 19.404 14.429 C 19.403 14.742 19.383 15.025 19.343 15.278 Z M 17.601 13.883 C 17.591 13.247 17.364 12.736 16.919 12.352 C 16.475 11.969 15.924 11.777 15.268 11.777 C 14.672 11.777 14.162 11.966 13.739 12.345 C 13.315 12.724 13.062 13.237 12.982 13.884 L 17.601 13.884 Z M 22.365 18.59 C 21.845 18.353 21.433 18.029 21.13 17.619 C 20.827 17.21 20.665 16.753 20.645 16.247 L 22.433 16.247 C 22.464 16.601 22.632 16.896 22.94 17.134 C 23.248 17.371 23.634 17.491 24.099 17.491 C 24.584 17.491 24.96 17.398 25.228 17.21 C 25.496 17.024 25.63 16.783 25.63 16.491 C 25.63 16.178 25.48 15.945 25.183 15.794 C 24.885 15.643 24.413 15.475 23.766 15.293 C 23.14 15.121 22.63 14.955 22.237 14.793 C 21.843 14.632 21.502 14.384 21.214 14.05 C 20.927 13.717 20.783 13.277 20.783 12.731 C 20.783 12.286 20.914 11.88 21.176 11.511 C 21.439 11.142 21.815 10.852 22.305 10.639 C 22.795 10.427 23.358 10.32 23.994 10.32 C 24.943 10.32 25.708 10.56 26.289 11.04 C 26.87 11.52 27.18 12.174 27.221 13.003 L 25.494 13.003 C 25.463 12.629 25.312 12.332 25.04 12.109 C 24.768 11.887 24.399 11.776 23.934 11.776 C 23.48 11.776 23.131 11.862 22.889 12.034 C 22.646 12.206 22.525 12.433 22.525 12.716 C 22.525 12.939 22.606 13.125 22.768 13.278 C 22.929 13.43 23.126 13.548 23.358 13.634 C 23.591 13.72 23.934 13.829 24.389 13.96 C 24.995 14.122 25.492 14.286 25.881 14.452 C 26.27 14.619 26.606 14.864 26.889 15.187 C 27.171 15.51 27.318 15.94 27.328 16.475 C 27.328 16.951 27.197 17.375 26.935 17.749 C 26.673 18.123 26.301 18.416 25.821 18.628 C 25.342 18.84 24.778 18.946 24.133 18.946 C 23.473 18.946 22.885 18.827 22.365 18.59 Z M 29.281 9.032 C 29.069 8.821 28.962 8.557 28.962 8.244 C 28.962 7.931 29.068 7.668 29.281 7.456 C 29.492 7.244 29.755 7.137 30.068 7.137 C 30.372 7.137 30.629 7.243 30.841 7.456 C 31.053 7.667 31.159 7.931 31.159 8.244 C 31.159 8.557 31.054 8.82 30.841 9.032 C 30.629 9.244 30.372 9.351 30.068 9.351 C 29.755 9.351 29.492 9.245 29.281 9.032 Z M 30.916 10.457 L 30.916 18.809 L 29.189 18.809 L 29.189 10.457 Z M 38.271 10.708 C 38.772 10.966 39.162 11.286 39.445 11.67 L 39.445 10.457 L 41.188 10.457 L 41.188 18.946 C 41.188 19.713 41.026 20.398 40.703 20.999 C 40.38 21.6 39.912 22.073 39.302 22.417 C 38.69 22.76 37.961 22.932 37.113 22.932 C 35.982 22.932 35.042 22.667 34.295 22.136 C 33.548 21.606 33.123 20.885 33.022 19.976 L 34.733 19.976 C 34.865 20.411 35.145 20.762 35.574 21.03 C 36.003 21.298 36.515 21.432 37.112 21.432 C 37.808 21.432 38.372 21.22 38.8 20.796 C 39.229 20.371 39.445 19.755 39.445 18.946 L 39.445 17.552 C 39.151 17.945 38.755 18.277 38.255 18.545 C 37.755 18.812 37.187 18.946 36.551 18.946 C 35.823 18.946 35.16 18.762 34.559 18.393 C 33.958 18.025 33.483 17.509 33.135 16.847 C 32.787 16.186 32.612 15.435 32.612 14.596 C 32.612 13.757 32.787 13.015 33.135 12.368 C 33.483 11.722 33.958 11.218 34.559 10.86 C 35.16 10.501 35.823 10.322 36.551 10.322 C 37.198 10.321 37.771 10.45 38.271 10.708 Z M 39.089 13.125 C 38.852 12.701 38.541 12.378 38.157 12.155 C 37.774 11.933 37.359 11.822 36.915 11.822 C 36.471 11.822 36.057 11.931 35.673 12.148 C 35.29 12.365 34.979 12.684 34.742 13.103 C 34.505 13.522 34.385 14.02 34.385 14.595 C 34.385 15.171 34.504 15.677 34.742 16.112 C 34.979 16.546 35.292 16.877 35.681 17.104 C 36.07 17.332 36.481 17.446 36.915 17.446 C 37.359 17.446 37.774 17.334 38.157 17.113 C 38.541 16.891 38.851 16.565 39.089 16.135 C 39.326 15.706 39.445 15.203 39.445 14.627 C 39.445 14.05 39.326 13.55 39.089 13.125 Z M 49.435 10.73 C 49.955 11.003 50.361 11.407 50.654 11.943 C 50.947 12.479 51.094 13.125 51.094 13.884 L 51.094 18.811 L 49.382 18.811 L 49.382 14.142 C 49.382 13.394 49.195 12.82 48.822 12.421 C 48.448 12.022 47.938 11.822 47.292 11.822 C 46.645 11.822 46.133 12.022 45.754 12.421 C 45.375 12.82 45.186 13.394 45.186 14.142 L 45.186 18.811 L 43.459 18.811 L 43.459 10.459 L 45.186 10.459 L 45.186 11.414 C 45.468 11.071 45.83 10.803 46.269 10.61 C 46.708 10.418 47.175 10.322 47.67 10.322 C 48.327 10.321 48.915 10.457 49.435 10.73 Z M 60.16 10.708 C 60.67 10.45 61.238 10.321 61.864 10.321 C 62.601 10.321 63.268 10.498 63.864 10.852 C 64.46 11.206 64.93 11.708 65.272 12.36 C 65.615 13.011 65.787 13.757 65.787 14.595 C 65.787 15.434 65.615 16.185 65.272 16.846 C 64.929 17.508 64.456 18.024 63.856 18.392 C 63.255 18.762 62.591 18.946 61.864 18.946 C 61.217 18.946 60.645 18.819 60.144 18.566 C 59.644 18.314 59.248 17.991 58.955 17.596 L 58.955 18.809 L 57.228 18.809 L 57.228 7.592 L 58.955 7.592 L 58.955 11.7 C 59.249 11.296 59.65 10.965 60.16 10.708 Z M 63.675 13.103 C 63.438 12.684 63.124 12.365 62.736 12.148 C 62.347 11.931 61.931 11.822 61.486 11.822 C 61.052 11.822 60.64 11.933 60.251 12.155 C 59.862 12.378 59.549 12.701 59.312 13.125 C 59.075 13.55 58.956 14.051 58.956 14.626 C 58.956 15.202 59.074 15.705 59.312 16.134 C 59.549 16.564 59.862 16.89 60.251 17.112 C 60.64 17.334 61.052 17.445 61.486 17.445 C 61.93 17.445 62.347 17.331 62.736 17.104 C 63.125 16.876 63.438 16.545 63.675 16.111 C 63.912 15.676 64.03 15.171 64.03 14.594 C 64.03 14.018 63.912 13.522 63.675 13.103 Z M 75.013 10.457 L 69.893 22.734 L 68.106 22.734 L 69.803 18.672 L 66.515 10.457 L 68.439 10.457 L 70.788 16.823 L 73.226 10.457 Z M 15.572 26.465 L 12.451 36.999 L 10.497 36.999 L 8.285 29.026 L 5.937 36.999 L 3.997 37.015 L 1.013 26.465 L 2.846 26.465 L 5.027 35.043 L 7.391 26.465 L 9.33 26.465 L 11.526 34.998 L 13.723 26.465 Z M 17.086 27.222 C 16.874 27.01 16.767 26.747 16.767 26.434 C 16.767 26.121 16.873 25.858 17.086 25.645 C 17.297 25.434 17.561 25.327 17.874 25.327 C 18.177 25.327 18.435 25.433 18.646 25.645 C 18.858 25.857 18.965 26.121 18.965 26.434 C 18.965 26.747 18.859 27.009 18.646 27.222 C 18.435 27.434 18.177 27.541 17.874 27.541 C 17.561 27.54 17.298 27.434 17.086 27.222 Z M 18.722 28.647 L 18.722 36.999 L 16.995 36.999 L 16.995 28.647 Z M 22.721 25.782 L 22.721 36.999 L 20.995 36.999 L 20.995 25.782 Z M 26.258 36.779 C 25.738 36.541 25.327 36.217 25.024 35.808 C 24.721 35.399 24.559 34.942 24.539 34.437 L 26.326 34.437 C 26.357 34.791 26.525 35.086 26.834 35.324 C 27.141 35.562 27.527 35.681 27.992 35.681 C 28.477 35.681 28.854 35.587 29.121 35.4 C 29.389 35.214 29.523 34.974 29.523 34.68 C 29.523 34.367 29.374 34.135 29.076 33.984 C 28.779 33.832 28.306 33.665 27.66 33.483 C 27.034 33.311 26.523 33.144 26.13 32.982 C 25.736 32.821 25.395 32.573 25.108 32.24 C 24.82 31.907 24.676 31.467 24.676 30.921 C 24.676 30.477 24.807 30.071 25.07 29.701 C 25.332 29.333 25.708 29.041 26.199 28.83 C 26.688 28.618 27.252 28.511 27.888 28.511 C 28.836 28.511 29.602 28.751 30.182 29.231 C 30.763 29.71 31.073 30.365 31.114 31.194 L 29.387 31.194 C 29.357 30.82 29.206 30.522 28.933 30.3 C 28.661 30.078 28.292 29.967 27.828 29.967 C 27.374 29.967 27.025 30.052 26.782 30.224 C 26.54 30.396 26.418 30.624 26.418 30.907 C 26.418 31.13 26.499 31.316 26.661 31.468 C 26.823 31.62 27.019 31.739 27.252 31.825 C 27.484 31.911 27.827 32.019 28.282 32.151 C 28.888 32.313 29.386 32.476 29.774 32.643 C 30.163 32.81 30.499 33.055 30.782 33.378 C 31.064 33.701 31.211 34.131 31.222 34.666 C 31.222 35.141 31.091 35.566 30.828 35.94 C 30.566 36.313 30.194 36.607 29.715 36.818 C 29.235 37.03 28.672 37.137 28.026 37.137 C 27.366 37.135 26.778 37.017 26.258 36.779 Z M 34.567 36.597 C 33.931 36.238 33.431 35.732 33.067 35.081 C 32.704 34.429 32.522 33.673 32.522 32.814 C 32.522 31.965 32.708 31.213 33.083 30.556 C 33.456 29.899 33.966 29.394 34.612 29.04 C 35.258 28.686 35.981 28.509 36.779 28.509 C 37.577 28.509 38.298 28.686 38.945 29.04 C 39.591 29.394 40.101 29.899 40.475 30.556 C 40.848 31.213 41.036 31.965 41.036 32.814 C 41.036 33.663 40.844 34.416 40.46 35.072 C 40.077 35.73 39.554 36.237 38.893 36.596 C 38.231 36.954 37.501 37.133 36.704 37.133 C 35.915 37.135 35.203 36.956 34.567 36.597 Z M 37.953 35.316 C 38.342 35.104 38.658 34.785 38.9 34.361 C 39.142 33.936 39.264 33.421 39.264 32.815 C 39.264 32.209 39.147 31.696 38.915 31.276 C 38.683 30.857 38.375 30.541 37.992 30.329 C 37.608 30.117 37.194 30.01 36.75 30.01 C 36.306 30.01 35.894 30.116 35.515 30.329 C 35.136 30.54 34.836 30.857 34.614 31.276 C 34.392 31.695 34.281 32.209 34.281 32.815 C 34.281 33.715 34.511 34.409 34.97 34.9 C 35.43 35.39 36.008 35.635 36.705 35.635 C 37.147 35.635 37.564 35.529 37.953 35.316 Z M 48.723 28.919 C 49.243 29.192 49.649 29.596 49.942 30.132 C 50.235 30.668 50.382 31.314 50.382 32.072 L 50.382 36.999 L 48.67 36.999 L 48.67 32.33 C 48.67 31.582 48.483 31.008 48.11 30.609 C 47.736 30.21 47.226 30.011 46.58 30.011 C 45.933 30.011 45.421 30.211 45.042 30.609 C 44.663 31.008 44.474 31.582 44.474 32.33 L 44.474 36.999 L 42.747 36.999 L 42.747 28.647 L 44.474 28.647 L 44.474 29.602 C 44.756 29.259 45.118 28.991 45.557 28.798 C 45.997 28.606 46.463 28.51 46.958 28.51 C 47.615 28.51 48.203 28.647 48.723 28.919 Z M 57.229 34.773 L 75.013 34.773 L 75.013 37.135 L 57.229 37.135 Z\" fill=\"var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)) /* {&quot;name&quot;:&quot;Dark beige&quot;} */\"></path></svg>',svgContentId:1808271861,withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{svgContentId:2070802822}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qemg98\",layoutDependency:layoutDependency,layoutId:\"omiDcsYmg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/wilson-mosies-673a0b81/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Linkedin\"})})})}),className:\"framer-1qmz833\",fonts:[\"GF;Poppins-300\"],layoutDependency:layoutDependency,layoutId:\"khJTcJv4L\",style:{\"--extracted-1lwpl3i\":\"var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/wilson-mosies-673a0b81/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Linkedin\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/design.by.wilson?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Instagram\"})})})}),className:\"framer-1sm6etv\",fonts:[\"GF;Poppins-300\"],layoutDependency:layoutDependency,layoutId:\"xUjzvP61H\",style:{\"--extracted-1lwpl3i\":\"var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com/design.by.wilson?igshid=NGVhN2U2NjQ0Yg%3D%3D&utm_source=qr\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Instagram\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rolrlh\",layoutDependency:layoutDependency,layoutId:\"nd1EsXPoP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)))\"},children:\"\\xa9 All Rights Reserved\"})}),className:\"framer-1o5t30u\",fonts:[\"GF;Poppins-300\"],layoutDependency:layoutDependency,layoutId:\"czh9_qCyY\",style:{\"--extracted-1lwpl3i\":\"var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dcRCGfnJj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-eda20419-617d-438a-b6fe-a04468c0e7ea, rgb(112, 106, 97)))\"},children:\"\\xa9 All Rights Reserved\"})})}},baseVariant,gestureVariant)})})]})})]})})})});});const css=['.framer-UKI1C [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UKI1C .framer-1bsbifu { display: block; }\",\".framer-UKI1C .framer-1anmts4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; max-width: 3840px; padding: 0px 0px 0px 0px; position: relative; width: 3840px; }\",\".framer-UKI1C .framer-1mtvgep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 1920px; overflow: hidden; padding: 160px 160px 160px 160px; position: relative; width: 100%; }\",\".framer-UKI1C .framer-1mdh7l3 { flex: none; height: 246px; position: relative; white-space: pre-wrap; width: 43%; word-break: break-word; word-wrap: break-word; }\",\".framer-UKI1C .framer-1k29pzd { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 35%; }\",\".framer-UKI1C .framer-f8zasi, .framer-UKI1C .framer-gb8daw, .framer-UKI1C .framer-1gfqyai { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UKI1C .framer-y1gdrs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 510px; }\",\".framer-UKI1C .framer-19vicm5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 3840px; overflow: hidden; padding: 20px 160px 20px 160px; position: relative; width: 100%; }\",\".framer-UKI1C .framer-1n3nwxd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 63px; justify-content: space-between; max-width: 1920px; overflow: visible; padding: 0px 160px 0px 160px; position: relative; width: 1920px; }\",\".framer-UKI1C .framer-1mulktz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 10px; position: relative; width: min-content; }\",\".framer-UKI1C .framer-1siismb { flex: none; height: 43px; position: relative; text-decoration: none; width: 76px; }\",\".framer-UKI1C .framer-1qemg98, .framer-UKI1C .framer-1rolrlh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 42px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-UKI1C .framer-1qmz833, .framer-UKI1C .framer-1sm6etv, .framer-UKI1C .framer-1o5t30u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UKI1C .framer-1anmts4, .framer-UKI1C .framer-1k29pzd, .framer-UKI1C .framer-y1gdrs, .framer-UKI1C .framer-19vicm5, .framer-UKI1C .framer-1mulktz, .framer-UKI1C .framer-1qemg98, .framer-UKI1C .framer-1rolrlh { gap: 0px; } .framer-UKI1C .framer-1anmts4 > *, .framer-UKI1C .framer-y1gdrs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UKI1C .framer-1anmts4 > :first-child, .framer-UKI1C .framer-1k29pzd > :first-child, .framer-UKI1C .framer-y1gdrs > :first-child { margin-top: 0px; } .framer-UKI1C .framer-1anmts4 > :last-child, .framer-UKI1C .framer-1k29pzd > :last-child, .framer-UKI1C .framer-y1gdrs > :last-child { margin-bottom: 0px; } .framer-UKI1C .framer-1k29pzd > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-UKI1C .framer-19vicm5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UKI1C .framer-19vicm5 > :first-child, .framer-UKI1C .framer-1mulktz > :first-child, .framer-UKI1C .framer-1qemg98 > :first-child, .framer-UKI1C .framer-1rolrlh > :first-child { margin-left: 0px; } .framer-UKI1C .framer-19vicm5 > :last-child, .framer-UKI1C .framer-1mulktz > :last-child, .framer-UKI1C .framer-1qemg98 > :last-child, .framer-UKI1C .framer-1rolrlh > :last-child { margin-right: 0px; } .framer-UKI1C .framer-1mulktz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UKI1C .framer-1qemg98 > *, .framer-UKI1C .framer-1rolrlh > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",\".framer-UKI1C.framer-v-1l13nm .framer-1anmts4 { width: 1080px; }\",\".framer-UKI1C.framer-v-1l13nm .framer-1mtvgep { flex-direction: column; gap: 26px; justify-content: flex-start; padding: 80px 30px 80px 30px; }\",\".framer-UKI1C.framer-v-1l13nm .framer-1mdh7l3 { height: auto; width: 100%; }\",\".framer-UKI1C.framer-v-1l13nm .framer-1k29pzd { gap: 60px; width: 100%; }\",\".framer-UKI1C.framer-v-1l13nm .framer-y1gdrs, .framer-UKI1C.framer-v-1nl8ul8 .framer-y1gdrs { width: 100%; }\",\".framer-UKI1C.framer-v-1l13nm .framer-19vicm5 { flex-direction: column; gap: 60px; justify-content: flex-start; padding: 30px 30px 30px 30px; }\",\".framer-UKI1C.framer-v-1l13nm .framer-1n3nwxd { align-content: start; align-items: start; flex-direction: column; gap: 28px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: 100%; }\",\".framer-UKI1C.framer-v-1l13nm .framer-1mulktz { flex-direction: column; padding: 0px 0px 0px 0px; }\",\".framer-UKI1C.framer-v-1l13nm .framer-1qemg98 { gap: 25px; height: min-content; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UKI1C.framer-v-1l13nm .framer-1mtvgep, .framer-UKI1C.framer-v-1l13nm .framer-1k29pzd, .framer-UKI1C.framer-v-1l13nm .framer-19vicm5, .framer-UKI1C.framer-v-1l13nm .framer-1n3nwxd, .framer-UKI1C.framer-v-1l13nm .framer-1mulktz, .framer-UKI1C.framer-v-1l13nm .framer-1qemg98 { gap: 0px; } .framer-UKI1C.framer-v-1l13nm .framer-1mtvgep > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-UKI1C.framer-v-1l13nm .framer-1mtvgep > :first-child, .framer-UKI1C.framer-v-1l13nm .framer-1k29pzd > :first-child, .framer-UKI1C.framer-v-1l13nm .framer-19vicm5 > :first-child, .framer-UKI1C.framer-v-1l13nm .framer-1n3nwxd > :first-child, .framer-UKI1C.framer-v-1l13nm .framer-1mulktz > :first-child { margin-top: 0px; } .framer-UKI1C.framer-v-1l13nm .framer-1mtvgep > :last-child, .framer-UKI1C.framer-v-1l13nm .framer-1k29pzd > :last-child, .framer-UKI1C.framer-v-1l13nm .framer-19vicm5 > :last-child, .framer-UKI1C.framer-v-1l13nm .framer-1n3nwxd > :last-child, .framer-UKI1C.framer-v-1l13nm .framer-1mulktz > :last-child { margin-bottom: 0px; } .framer-UKI1C.framer-v-1l13nm .framer-1k29pzd > *, .framer-UKI1C.framer-v-1l13nm .framer-19vicm5 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-UKI1C.framer-v-1l13nm .framer-1n3nwxd > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-UKI1C.framer-v-1l13nm .framer-1mulktz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UKI1C.framer-v-1l13nm .framer-1qemg98 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-UKI1C.framer-v-1l13nm .framer-1qemg98 > :first-child { margin-left: 0px; } .framer-UKI1C.framer-v-1l13nm .framer-1qemg98 > :last-child { margin-right: 0px; } }\",\".framer-UKI1C.framer-v-1nl8ul8 .framer-1anmts4 { width: 1200px; }\",\".framer-UKI1C.framer-v-1nl8ul8 .framer-1mtvgep { align-content: start; align-items: start; padding: 160px 60px 160px 60px; }\",\".framer-UKI1C.framer-v-1nl8ul8 .framer-1k29pzd { width: 45%; }\",\".framer-UKI1C.framer-v-1nl8ul8 .framer-19vicm5 { padding: 20px 60px 20px 60px; }\",\".framer-UKI1C.framer-v-1nl8ul8 .framer-1n3nwxd { flex: 1 0 0px; padding: 0px 0px 0px 0px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 677\n * @framerIntrinsicWidth 3840\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"3840px\",null,null]},\"dcRCGfnJj\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"3840px\",null,null]},\"SPct5_IKK\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"3840px\",null,null]}}}\n * @framerImmutableVariables true\n */const FramerrszUpMGbW=withCSS(Component,css,\"framer-UKI1C\");export default FramerrszUpMGbW;FramerrszUpMGbW.displayName=\"Footer\";FramerrszUpMGbW.defaultProps={height:677,width:3840};addPropertyControls(FramerrszUpMGbW,{variant:{options:[\"z4SR7mUz2\",\"dcRCGfnJj\",\"SPct5_IKK\"],optionTitles:[\"Desktop Footer\",\"Mobile Footer\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrszUpMGbW,[{family:\"Poppins\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2\",weight:\"300\"},...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrszUpMGbW\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"677\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"3840px\\\",null,null]},\\\"dcRCGfnJj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"3840px\\\",null,null]},\\\"SPct5_IKK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"3840px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"3840\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rszUpMGbW.map"],
  "mappings": "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",
  "names": ["t", "e", "i", "s", "Animate", "o", "r", "l", "Dimensions", "n", "window", "Emitter", "VirtualScroll", "Lenis", "h", "a", "c", "d", "p", "u", "m", "v", "g", "S", "w", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "allElements", "element", "Lenis", "raf", "time", "styleElement", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ButtonCTAFonts", "getFonts", "i5jPegS41_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15v6144", "args", "onTapj4c25s", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "SVG", "RichText2", "x", "i5jPegS41_default", "resolveLink", "css", "FramerkoSWBfFur", "withCSS", "koSWBfFur_default", "addPropertyControls", "ControlType", "addFonts", "ButtonCTAFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "RichText2", "x", "Link", "SVG", "css", "FramerrszUpMGbW", "withCSS", "rszUpMGbW_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
