{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.42/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/QT1T2E8wheNIIXpHephB/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/iXTJgP5ITzRVCHM7S1Wp/2W7L8W0GdOPYGyLa0cCn/CvBDt8OhY.js", "ssg:https://framerusercontent.com/modules/j9IAzWrpNI0F3okWeZ8X/fPRESjuUUsTvFdrkUmaK/Ea7rafYPK.js", "ssg:https://framerusercontent.com/modules/1v0LHbkly0vFN0Eu4GC9/sOYZ4aaxv40qmpqowBep/eFNOax2yU.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);};},[]);// Fix the Anchor link\nuseEffect(()=>{const anchorLinks=[...document.querySelectorAll(\"a[href]\")];const handleClick=(e,href)=>{e.preventDefault();lenis.current.scrollTo(href);};anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{const href=`#${a.href.split(\"#\").pop()}`;a.addEventListener(\"click\",e=>handleClick(e,href));});return()=>{anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{a.removeEventListener(\"click\",handleClick);});};},[lenis]);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}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-ycMKG .framer-styles-preset-e05fvu:not(.rich-text-wrapper), .framer-ycMKG .framer-styles-preset-e05fvu.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 13px; --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: -0.02em; --framer-line-height: 16px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-f12c06ad-f4f5-4d6b-a652-39e294716a72, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-ycMKG\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iXTJgP5ITzRVCHM7S1Wp/2W7L8W0GdOPYGyLa0cCn/CvBDt8OhY.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jOUIavZQGOED6k8WLaRm/wdtzVpOMdJT1qpRTAdAZ/JnTsHQCir.js\";const enabledGestures={haGbYjfTg:{hover:true},WjPgdSu9C:{hover:true},XfX08sJsP:{hover:true}};const cycleOrder=[\"haGbYjfTg\",\"WjPgdSu9C\",\"XfX08sJsP\"];const serializationHash=\"framer-BPXm5\";const variantClassNames={haGbYjfTg:\"framer-v-2rcdpg\",WjPgdSu9C:\"framer-v-1ucmec3\",XfX08sJsP:\"framer-v-l9kpgq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:51,delay:0,mass:1,stiffness:556,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={Dark:\"WjPgdSu9C\",Gray:\"haGbYjfTg\",White:\"XfX08sJsP\"};const getProps=({distribute,gap,height,id,image,link,width,...props})=>{var _ref,_humanReadableEnumMap_distribute,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,BauE99f1D:(_ref=gap!==null&&gap!==void 0?gap:props.BauE99f1D)!==null&&_ref!==void 0?_ref:22,KVgbxSmkf:(_ref2=(_ref1=(_humanReadableEnumMap_distribute=humanReadableEnumMap[distribute])!==null&&_humanReadableEnumMap_distribute!==void 0?_humanReadableEnumMap_distribute:distribute)!==null&&_ref1!==void 0?_ref1:props.KVgbxSmkf)!==null&&_ref2!==void 0?_ref2:\"center\",sgkQP3VGl:(_ref3=image!==null&&image!==void 0?image:props.sgkQP3VGl)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/nv8vHprsdDb4WBnPJy1xxIYjgc.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nv8vHprsdDb4WBnPJy1xxIYjgc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nv8vHprsdDb4WBnPJy1xxIYjgc.jpg 732w\"},variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"haGbYjfTg\",ZP3Evt5hs:link!==null&&link!==void 0?link:props.ZP3Evt5hs};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZP3Evt5hs,sgkQP3VGl,KVgbxSmkf,BauE99f1D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"haGbYjfTg\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ZP3Evt5hs,nodeId:\"haGbYjfTg\",...addPropertyOverrides({WjPgdSu9C:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-2rcdpg\",className,classNames)} framer-1xsraai`,\"data-framer-name\":\"Gray\",layoutDependency:layoutDependency,layoutId:\"haGbYjfTg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--10le7p6\":KVgbxSmkf,\"--hnc9ig\":BauE99f1D,backgroundColor:\"var(--token-5df21e7d-9a50-4e48-bddb-ff8cf2b76020, rgb(244, 244, 245))\",borderBottomLeftRadius:71,borderBottomRightRadius:71,borderTopLeftRadius:71,borderTopRightRadius:71,...style},variants:{WjPgdSu9C:{backgroundColor:\"var(--token-ee741fc7-e98d-436a-ac77-c9f6a399719f, rgb(39, 39, 42))\"},XfX08sJsP:{backgroundColor:\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"haGbYjfTg-hover\":{\"data-framer-name\":undefined},\"WjPgdSu9C-hover\":{\"data-framer-name\":undefined},\"XfX08sJsP-hover\":{\"data-framer-name\":undefined},WjPgdSu9C:{\"data-framer-name\":\"Dark\"},XfX08sJsP:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t1fi13\",\"data-framer-name\":\"Animated Icon\",layoutDependency:layoutDependency,layoutId:\"AUs4nHrKW\",style:{backgroundColor:\"var(--token-f12c06ad-f4f5-4d6b-a652-39e294716a72, rgb(0, 0, 0))\",borderBottomLeftRadius:91,borderBottomRightRadius:91,borderTopLeftRadius:91,borderTopRightRadius:91,rotate:90},transformTemplate:transformTemplate1,variants:{\"haGbYjfTg-hover\":{rotate:0},\"WjPgdSu9C-hover\":{rotate:0},\"XfX08sJsP-hover\":{rotate:0},WjPgdSu9C:{backgroundColor:\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255))\"}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-utjv0d\",\"data-framer-name\":\"Arrow Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"icQiUk0zl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 15\"><path d=\"M 10.219 2.75 L 15.469 8 L 10.219 13.25 M 2.53 8 L 15 8\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12222556965,withExternalLayout:true,...addPropertyOverrides({\"WjPgdSu9C-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 15\"><path d=\"M 10.219 2.75 L 15.469 8 L 10.219 13.25 M 2.53 8 L 15 8\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-f12c06ad-f4f5-4d6b-a652-39e294716a72, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12055053872},\"XfX08sJsP-hover\":{svgContentId:12784339235}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xd7h7a\",layoutDependency:layoutDependency,layoutId:\"NqXbVC9Ay\",style:{\"--hnc9ig\":BauE99f1D},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(5+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||58)-10-48)/2)+0),sizes:\"48px\",...toResponsiveImage(sgkQP3VGl)},className:\"framer-4s9ch9\",\"data-framer-name\":\"Profile Picture\",layoutDependency:layoutDependency,layoutId:\"o9g9irX_Z\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m319th\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"jz1TUFjQ0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1v60wny\",\"data-styles-preset\":\"JnTsHQCir\",children:\"Schedule Free Meeting\"})}),className:\"framer-z6z18w\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o0spRXCwe\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{WjPgdSu9C:{\"--extracted-1lwpl3i\":\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WjPgdSu9C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1v60wny\",\"data-styles-preset\":\"JnTsHQCir\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255)))\"},children:\"Schedule Free Meeting\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-122h390\",\"data-framer-name\":\"Subtitle Container\",layoutDependency:layoutDependency,layoutId:\"lvtJnn3rd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e05fvu\",\"data-styles-preset\":\"CvBDt8OhY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4bf199a4-3c94-40bc-a524-0c548fe993b3, rgb(82, 82, 91)))\"},children:\"with \"})}),className:\"framer-18if6d7\",\"data-framer-name\":\"Beginning\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pZw_E9HPG\",style:{\"--extracted-r6o4lv\":\"var(--token-4bf199a4-3c94-40bc-a524-0c548fe993b3, rgb(82, 82, 91))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{WjPgdSu9C:{\"--extracted-r6o4lv\":\"var(--token-cefae5f1-1aef-4688-9413-497e69983913, rgb(161, 161, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WjPgdSu9C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e05fvu\",\"data-styles-preset\":\"CvBDt8OhY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cefae5f1-1aef-4688-9413-497e69983913, rgb(161, 161, 170)))\"},children:\"with \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e05fvu\",\"data-styles-preset\":\"CvBDt8OhY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4bf199a4-3c94-40bc-a524-0c548fe993b3, rgb(82, 82, 91)))\"},children:\"Aanand\"})}),className:\"framer-1r6qhg3\",\"data-framer-name\":\"Variable Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aLB6aS3uG\",style:{\"--extracted-r6o4lv\":\"var(--token-4bf199a4-3c94-40bc-a524-0c548fe993b3, rgb(82, 82, 91))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{WjPgdSu9C:{\"--extracted-r6o4lv\":\"var(--token-cefae5f1-1aef-4688-9413-497e69983913, rgb(161, 161, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WjPgdSu9C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e05fvu\",\"data-styles-preset\":\"CvBDt8OhY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cefae5f1-1aef-4688-9413-497e69983913, rgb(161, 161, 170)))\"},children:\"Aanand\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e05fvu\",\"data-styles-preset\":\"CvBDt8OhY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4bf199a4-3c94-40bc-a524-0c548fe993b3, rgb(82, 82, 91)))\"},children:\", your tech transition ally\"})}),className:\"framer-1w95rop\",\"data-framer-name\":\"Ending\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xTkL_gXz5\",style:{\"--extracted-r6o4lv\":\"var(--token-4bf199a4-3c94-40bc-a524-0c548fe993b3, rgb(82, 82, 91))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{WjPgdSu9C:{\"--extracted-r6o4lv\":\"var(--token-cefae5f1-1aef-4688-9413-497e69983913, rgb(161, 161, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WjPgdSu9C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e05fvu\",\"data-styles-preset\":\"CvBDt8OhY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cefae5f1-1aef-4688-9413-497e69983913, rgb(161, 161, 170)))\"},children:\", your tech transition ally\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-128v8l8\",\"data-framer-name\":\"Permanent Icon\",layoutDependency:layoutDependency,layoutId:\"NJEkAZdbU\",style:{backgroundColor:\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255))\",borderBottomLeftRadius:91,borderBottomRightRadius:91,borderTopLeftRadius:91,borderTopRightRadius:91},variants:{WjPgdSu9C:{backgroundColor:\"var(--token-f12c06ad-f4f5-4d6b-a652-39e294716a72, rgb(0, 0, 0))\"},XfX08sJsP:{backgroundColor:\"var(--token-5df21e7d-9a50-4e48-bddb-ff8cf2b76020, rgb(244, 244, 245))\"}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k61yjp\",\"data-framer-name\":\"Arrow Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"A5_bv7VCW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 18\"><path d=\"M 10.219 3.75 L 15.469 9 L 10.219 14.25 M 2.53 9 L 15 9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12418205215,withExternalLayout:true,...addPropertyOverrides({\"WjPgdSu9C-hover\":{svgContentId:11918060070},\"XfX08sJsP-hover\":{svgContentId:10727069671},WjPgdSu9C:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 18\"><path d=\"M 10.219 3.75 L 15.469 9 L 10.219 14.25 M 2.53 9 L 15 9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(255, 255, 255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10277397794}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BPXm5.framer-1xsraai, .framer-BPXm5 .framer-1xsraai { display: block; }\",\".framer-BPXm5.framer-2rcdpg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: var(--10le7p6); overflow: hidden; padding: 5px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BPXm5 .framer-t1fi13 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: flex-start; overflow: visible; padding: 15px; position: absolute; right: -48px; top: 50%; width: 48px; z-index: 1; }\",\".framer-BPXm5 .framer-utjv0d { flex: none; height: 15px; position: relative; width: 17px; }\",\".framer-BPXm5 .framer-xd7h7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--hnc9ig)) * 1px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BPXm5 .framer-4s9ch9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-BPXm5 .framer-m319th { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BPXm5 .framer-z6z18w, .framer-BPXm5 .framer-18if6d7, .framer-BPXm5 .framer-1r6qhg3, .framer-BPXm5 .framer-1w95rop { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-BPXm5 .framer-122h390 { 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: 0px; position: relative; width: min-content; }\",\".framer-BPXm5 .framer-128v8l8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 48px; }\",\".framer-BPXm5 .framer-1k61yjp { flex: none; height: 18px; position: relative; width: 17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BPXm5.framer-2rcdpg, .framer-BPXm5 .framer-t1fi13, .framer-BPXm5 .framer-xd7h7a, .framer-BPXm5 .framer-m319th, .framer-BPXm5 .framer-122h390, .framer-BPXm5 .framer-128v8l8 { gap: 0px; } .framer-BPXm5.framer-2rcdpg > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-BPXm5.framer-2rcdpg > :first-child, .framer-BPXm5 .framer-t1fi13 > :first-child, .framer-BPXm5 .framer-xd7h7a > :first-child, .framer-BPXm5 .framer-122h390 > :first-child, .framer-BPXm5 .framer-128v8l8 > :first-child { margin-left: 0px; } .framer-BPXm5.framer-2rcdpg > :last-child, .framer-BPXm5 .framer-t1fi13 > :last-child, .framer-BPXm5 .framer-xd7h7a > :last-child, .framer-BPXm5 .framer-122h390 > :last-child, .framer-BPXm5 .framer-128v8l8 > :last-child { margin-right: 0px; } .framer-BPXm5 .framer-t1fi13 > *, .framer-BPXm5 .framer-128v8l8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BPXm5 .framer-xd7h7a > * { margin: 0px; margin-left: calc(calc(max(0, var(--hnc9ig)) * 1px) / 2); margin-right: calc(calc(max(0, var(--hnc9ig)) * 1px) / 2); } .framer-BPXm5 .framer-m319th > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-BPXm5 .framer-m319th > :first-child { margin-top: 0px; } .framer-BPXm5 .framer-m319th > :last-child { margin-bottom: 0px; } .framer-BPXm5 .framer-122h390 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-BPXm5.framer-v-1ucmec3.framer-2rcdpg { gap: calc(max(0, var(--hnc9ig)) * 1px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BPXm5.framer-v-1ucmec3.framer-2rcdpg { gap: 0px; } .framer-BPXm5.framer-v-1ucmec3.framer-2rcdpg > * { margin: 0px; margin-left: calc(calc(max(0, var(--hnc9ig)) * 1px) / 2); margin-right: calc(calc(max(0, var(--hnc9ig)) * 1px) / 2); } .framer-BPXm5.framer-v-1ucmec3.framer-2rcdpg > :first-child { margin-left: 0px; } .framer-BPXm5.framer-v-1ucmec3.framer-2rcdpg > :last-child { margin-right: 0px; } }\",\".framer-BPXm5.framer-v-2rcdpg.hover .framer-t1fi13 { order: 0; right: 5px; }\",\".framer-BPXm5.framer-v-2rcdpg.hover .framer-xd7h7a { order: 1; }\",\".framer-BPXm5.framer-v-2rcdpg.hover .framer-128v8l8 { order: 2; }\",\".framer-BPXm5.framer-v-1ucmec3.hover .framer-t1fi13, .framer-BPXm5.framer-v-l9kpgq.hover .framer-t1fi13 { right: 5px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 367\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"WjPgdSu9C\":{\"layout\":[\"auto\",\"auto\"]},\"XfX08sJsP\":{\"layout\":[\"auto\",\"auto\"]},\"cAFqylH5m\":{\"layout\":[\"auto\",\"auto\"]},\"lZzcU4yvc\":{\"layout\":[\"auto\",\"auto\"]},\"CKZAGJMBD\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZP3Evt5hs\":\"link\",\"sgkQP3VGl\":\"image\",\"KVgbxSmkf\":\"distribute\",\"BauE99f1D\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEa7rafYPK=withCSS(Component,css,\"framer-BPXm5\");export default FramerEa7rafYPK;FramerEa7rafYPK.displayName=\"Book Button\";FramerEa7rafYPK.defaultProps={height:58,width:367};addPropertyControls(FramerEa7rafYPK,{variant:{options:[\"haGbYjfTg\",\"WjPgdSu9C\",\"XfX08sJsP\"],optionTitles:[\"Gray\",\"Dark\",\"White\"],title:\"Variant\",type:ControlType.Enum},ZP3Evt5hs:{title:\"Link\",type:ControlType.Link},sgkQP3VGl:{__defaultAssetReference:\"data:framer/asset-reference,nv8vHprsdDb4WBnPJy1xxIYjgc.jpg?originalFilename=Profile+picture.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},KVgbxSmkf:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},BauE99f1D:{defaultValue:22,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FramerEa7rafYPK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEa7rafYPK\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ZP3Evt5hs\\\":\\\"link\\\",\\\"sgkQP3VGl\\\":\\\"image\\\",\\\"KVgbxSmkf\\\":\\\"distribute\\\",\\\"BauE99f1D\\\":\\\"gap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WjPgdSu9C\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XfX08sJsP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cAFqylH5m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lZzcU4yvc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CKZAGJMBD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"58\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"367\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ea7rafYPK.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/cTjrmFqNFkFWO19DE1xk/BlurGradient.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hy7dsov0A1eHnQz5ZyPL/wyDW8uyuYkBMyfhDlfnl/etZGMSBih.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/kTLE6OlGdU2S5wPvyEb1/1URfK69aik4Rgy74O1iz/Jhv4GxPFm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dT2huVvm41HSPBtk9ZoO/WPS5ohZULApNMSCNBIW5/pPJZXjrXV.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9S6kvhGDdN9QYNQ0flxC/SrtnvhFAbkb0x5J78aqE/RhtV04Rdc.js\";import BookButton from\"https://framerusercontent.com/modules/j9IAzWrpNI0F3okWeZ8X/fPRESjuUUsTvFdrkUmaK/Ea7rafYPK.js\";const BookButtonFonts=getFonts(BookButton);const BlurGradientFonts=getFonts(BlurGradient);const cycleOrder=[\"xZcstfLP4\",\"SO_pkJpu6\"];const serializationHash=\"framer-mSCC7\";const variantClassNames={SO_pkJpu6:\"framer-v-lr0o5\",xZcstfLP4:\"framer-v-bu45yv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"xZcstfLP4\",Phone:\"SO_pkJpu6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xZcstfLP4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xZcstfLP4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzuj9lq=activeVariantCallback(async(...args)=>{setVariant(\"xZcstfLP4\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-bu45yv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xZcstfLP4\",ref:ref??ref1,style:{backgroundColor:\"var(--token-f12c06ad-f4f5-4d6b-a652-39e294716a72, rgb(0, 0, 0))\",...style},...addPropertyOverrides({SO_pkJpu6:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-j28nu4\",\"data-framer-name\":\"CTA Stack\",layoutDependency:layoutDependency,layoutId:\"otUVCY1jD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jqw6r6\",\"data-border\":true,\"data-framer-name\":\"Max Width CTA\",layoutDependency:layoutDependency,layoutId:\"QNvsZ0vjv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'radial-gradient(45% 50% at 72.89999999999999% 0%, var(--token-33611474-ffd5-429f-8fbb-27307dc0833e, rgb(24, 24, 27)) /* {\"name\":\"Zinc 900\"} */ 0%, var(--token-f6557700-d635-4f83-906a-0c68816d185b, rgb(9, 9, 11)) /* {\"name\":\"Zinc 950\"} */ 100%)',borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{SO_pkJpu6:{background:'radial-gradient(63% 67% at 74.3% 0%, var(--token-33611474-ffd5-429f-8fbb-27307dc0833e, rgb(24, 24, 27)) /* {\"name\":\"Zinc 900\"} */ 0%, var(--token-f6557700-d635-4f83-906a-0c68816d185b, rgb(9, 9, 11)) /* {\"name\":\"Zinc 950\"} */ 100%)'}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+(((componentViewport?.height||554)-110-504.40000000000003)/2+0+0)+0+0+0),pixelHeight:50,pixelWidth:50,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/LRFEGuRabRMPzYHwowJY4mbeaQ.png\"},className:\"framer-1xz1pe4\",\"data-framer-name\":\"Tile Image BG\",layoutDependency:layoutDependency,layoutId:\"bIXNQIYA0\",style:{opacity:.04},...addPropertyOverrides({SO_pkJpu6:{background:{alt:\"\",backgroundSize:1.2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+45+(((componentViewport?.height||706)-109-631.4000000000001)/2+0+0)+0+0+0),pixelHeight:50,pixelWidth:50,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/LRFEGuRabRMPzYHwowJY4mbeaQ.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ay3r8h\",\"data-framer-name\":\"Max Width Stack\",layoutDependency:layoutDependency,layoutId:\"DPR0Dn0Uu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vp7yad\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"QOCNetBrW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-503src\",\"data-styles-preset\":\"pPJZXjrXV\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255)))\"},children:\"Ready to Simplify Your Tech Journey?\"})}),className:\"framer-g97ht9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fzgAQ5hmJ\",style:{\"--extracted-1eung3n\":\"var(--token-80aeea00-bc1c-4e76-9301-be43cfc88c4c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jlt4cx\",\"data-styles-preset\":\"RhtV04Rdc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1d6d89c-03f5-43c6-ab11-1f65714dd808, rgb(212, 212, 216)))\"},children:\"Let\u2019s tackle the complexities of technology together. Contact me today to find out how I can make your transition smooth and successful.\"})}),className:\"framer-k5ywfv\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G6cMR8ydZ\",style:{\"--extracted-r6o4lv\":\"var(--token-a1d6d89c-03f5-43c6-ab11-1f65714dd808, rgb(212, 212, 216))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+55+(((componentViewport?.height||554)-110-504.40000000000003)/2+0+0)+0+0+48.000000000000014+59.3,...addPropertyOverrides({SO_pkJpu6:{width:\"348px\",y:(componentViewport?.y||0)+45+(((componentViewport?.height||706)-109-631.4000000000001)/2+0+0)+0+0+22+0+0+200.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jsvdqu-container\",layoutDependency:layoutDependency,layoutId:\"JzSWHK3wo-container\",children:/*#__PURE__*/_jsx(BookButton,{BauE99f1D:22,height:\"100%\",id:\"JzSWHK3wo\",KVgbxSmkf:\"center\",layoutId:\"JzSWHK3wo\",variant:\"WjPgdSu9C\",width:\"100%\",ZP3Evt5hs:\"https://cal.com/aanandmadhav/30min\",...addPropertyOverrides({SO_pkJpu6:{BauE99f1D:12,KVgbxSmkf:\"space-between\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gscm66\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"PJXiTDNAd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-odgoxf\",\"data-framer-name\":\"Max Width Footer\",layoutDependency:layoutDependency,layoutId:\"gBojumYfZ\",style:{backgroundColor:\"rgba(93, 96, 240, 0)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o3cc5j\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"J2zC4XPAU\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ijtefnGXK\"},nodeId:\"hYlTNtgPU\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tx54ri framer-ejwh9w\",\"data-framer-name\":\"Logo Stack\",layoutDependency:layoutDependency,layoutId:\"hYlTNtgPU\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-n7bmen\",\"data-framer-name\":\"Aanand Madhav\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:189,intrinsicWidth:1844,layoutDependency:layoutDependency,layoutId:\"CrWatN3GF\",svg:'<svg width=\"1844\" height=\"189\" viewBox=\"-6 -6 1844 189\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.1878 174H0.424988L62.8067 0.651611H93.0242L155.406 174H127.643L78.6349 32.1387H77.2806L28.1878 174ZM32.8432 106.117H122.903V128.124H32.8432V106.117Z\" fill=\"white\"/>\\n<path d=\"M216.243 176.878C208.004 176.878 200.556 175.354 193.897 172.307C187.239 169.204 181.963 164.718 178.069 158.849C174.232 152.98 172.313 145.786 172.313 137.265C172.313 129.929 173.724 123.892 176.545 119.152C179.367 114.412 183.176 110.659 187.972 107.894C192.769 105.129 198.129 103.041 204.054 101.63C209.979 100.22 216.017 99.1476 222.168 98.414C229.955 97.5112 236.275 96.7776 241.128 96.2133C245.981 95.5926 249.508 94.6051 251.708 93.2508C253.909 91.8965 255.009 89.6958 255.009 86.6487V86.0562C255.009 78.664 252.921 72.9365 248.746 68.8737C244.626 64.8108 238.476 62.7794 230.294 62.7794C221.773 62.7794 215.058 64.6698 210.149 68.4505C205.296 72.1748 201.938 76.3223 200.076 80.893L176.292 75.4758C179.113 67.5758 183.232 61.1994 188.649 56.3466C194.123 51.4373 200.415 47.8823 207.525 45.6816C214.635 43.4244 222.111 42.2959 229.955 42.2959C235.146 42.2959 240.648 42.9166 246.46 44.158C252.329 45.343 257.803 47.5437 262.881 50.7601C268.016 53.9766 272.22 58.5755 275.493 64.5569C278.766 70.4819 280.402 78.1844 280.402 87.6644V174H255.686V156.225H254.671C253.034 159.498 250.58 162.714 247.307 165.874C244.034 169.034 239.83 171.658 234.695 173.746C229.56 175.834 223.409 176.878 216.243 176.878ZM221.745 156.564C228.742 156.564 234.723 155.181 239.689 152.416C244.711 149.651 248.52 146.04 251.116 141.582C253.768 137.068 255.094 132.243 255.094 127.108V110.349C254.191 111.252 252.442 112.098 249.846 112.888C247.307 113.622 244.401 114.27 241.128 114.835C237.855 115.343 234.667 115.822 231.563 116.274C228.46 116.669 225.864 117.007 223.776 117.289C218.867 117.91 214.381 118.954 210.318 120.421C206.311 121.888 203.095 124.004 200.669 126.769C198.299 129.478 197.114 133.089 197.114 137.604C197.114 143.867 199.427 148.607 204.054 151.824C208.681 154.984 214.578 156.564 221.745 156.564Z\" fill=\"white\"/>\\n<path d=\"M339.419 96.8058V174H314.111V43.9887H338.404V65.1494H340.012C343.003 58.2651 347.686 52.7351 354.063 48.5594C360.495 44.3837 368.593 42.2959 378.355 42.2959C387.214 42.2959 394.973 44.158 401.632 47.8823C408.29 51.5501 413.454 57.0237 417.121 64.303C420.789 71.5823 422.623 80.5826 422.623 91.304V174H397.315V94.3512C397.315 84.9276 394.86 77.5637 389.951 72.2594C385.042 66.8987 378.299 64.2183 369.721 64.2183C363.853 64.2183 358.633 65.488 354.063 68.0273C349.548 70.5665 345.965 74.2908 343.313 79.2001C340.717 84.053 339.419 89.9215 339.419 96.8058Z\" fill=\"white\"/>\\n<path d=\"M494.4 176.878C486.162 176.878 478.713 175.354 472.055 172.307C465.396 169.204 460.12 164.718 456.226 158.849C452.389 152.98 450.471 145.786 450.471 137.265C450.471 129.929 451.881 123.892 454.703 119.152C457.524 114.412 461.333 110.659 466.13 107.894C470.926 105.129 476.287 103.041 482.212 101.63C488.137 100.22 494.175 99.1476 500.325 98.414C508.112 97.5112 514.432 96.7776 519.285 96.2133C524.138 95.5926 527.665 94.6051 529.866 93.2508C532.066 91.8965 533.167 89.6958 533.167 86.6487V86.0562C533.167 78.664 531.079 72.9365 526.903 68.8737C522.784 64.8108 516.633 62.7794 508.451 62.7794C499.93 62.7794 493.215 64.6698 488.306 68.4505C483.453 72.1748 480.096 76.3223 478.233 80.893L454.449 75.4758C457.27 67.5758 461.39 61.1994 466.807 56.3466C472.28 51.4373 478.572 47.8823 485.682 45.6816C492.792 43.4244 500.269 42.2959 508.112 42.2959C513.304 42.2959 518.806 42.9166 524.618 44.158C530.486 45.343 535.96 47.5437 541.038 50.7601C546.173 53.9766 550.377 58.5755 553.65 64.5569C556.923 70.4819 558.559 78.1844 558.559 87.6644V174H533.844V156.225H532.828C531.192 159.498 528.737 162.714 525.464 165.874C522.191 169.034 517.987 171.658 512.852 173.746C507.717 175.834 501.567 176.878 494.4 176.878ZM499.902 156.564C506.899 156.564 512.881 155.181 517.846 152.416C522.868 149.651 526.677 146.04 529.273 141.582C531.925 137.068 533.251 132.243 533.251 127.108V110.349C532.348 111.252 530.599 112.098 528.003 112.888C525.464 113.622 522.558 114.27 519.285 114.835C516.012 115.343 512.824 115.822 509.721 116.274C506.617 116.669 504.021 117.007 501.933 117.289C497.024 117.91 492.538 118.954 488.475 120.421C484.469 121.888 481.252 124.004 478.826 126.769C476.456 129.478 475.271 133.089 475.271 137.604C475.271 143.867 477.585 148.607 482.212 151.824C486.839 154.984 492.736 156.564 499.902 156.564Z\" fill=\"white\"/>\\n<path d=\"M617.577 96.8058V174H592.268V43.9887H616.561V65.1494H618.169C621.16 58.2651 625.843 52.7351 632.22 48.5594C638.653 44.3837 646.75 42.2959 656.512 42.2959C665.372 42.2959 673.13 44.158 679.789 47.8823C686.448 51.5501 691.611 57.0237 695.279 64.303C698.947 71.5823 700.781 80.5826 700.781 91.304V174H675.472V94.3512C675.472 84.9276 673.018 77.5637 668.108 72.2594C663.199 66.8987 656.456 64.2183 647.879 64.2183C642.01 64.2183 636.791 65.488 632.22 68.0273C627.706 70.5665 624.122 74.2908 621.47 79.2001C618.875 84.053 617.577 89.9215 617.577 96.8058Z\" fill=\"white\"/>\\n<path d=\"M783.392 176.539C772.896 176.539 763.529 173.859 755.29 168.498C747.108 163.081 740.675 155.379 735.992 145.391C731.365 135.346 729.051 123.299 729.051 109.248C729.051 95.1976 731.393 83.1783 736.077 73.1905C740.817 63.2026 747.306 55.5566 755.544 50.2523C763.783 44.948 773.122 42.2959 783.561 42.2959C791.63 42.2959 798.12 43.6501 803.029 46.3587C807.995 49.0109 811.832 52.1144 814.54 55.6694C817.305 59.2244 819.45 62.3562 820.973 65.0648H822.497V0.651611H847.805V174H823.089V153.77H820.973C819.45 156.535 817.249 159.695 814.371 163.25C811.55 166.805 807.656 169.909 802.69 172.561C797.725 175.213 791.292 176.539 783.392 176.539ZM788.978 154.955C796.258 154.955 802.408 153.037 807.43 149.2C812.509 145.306 816.346 139.917 818.942 133.033C821.594 126.149 822.92 118.136 822.92 108.994C822.92 99.9658 821.622 92.0658 819.026 85.2944C816.431 78.523 812.622 73.2469 807.6 69.4662C802.578 65.6855 796.37 63.7951 788.978 63.7951C781.36 63.7951 775.012 65.7701 769.934 69.7201C764.855 73.6701 761.018 79.059 758.422 85.8869C755.883 92.7147 754.613 100.417 754.613 108.994C754.613 117.684 755.911 125.5 758.507 132.44C761.103 139.381 764.94 144.883 770.018 148.946C775.153 152.952 781.473 154.955 788.978 154.955Z\" fill=\"white\"/>\\n<path d=\"M949.038 0.651611H980.779L1035.97 135.403H1038L1093.18 0.651611H1124.93V174H1100.04V48.5594H1098.43L1047.31 173.746H1026.66L975.531 48.4748H973.923V174H949.038V0.651611Z\" fill=\"white\"/>\\n<path d=\"M1198.76 176.878C1190.52 176.878 1183.07 175.354 1176.41 172.307C1169.75 169.204 1164.47 164.718 1160.58 158.849C1156.74 152.98 1154.83 145.786 1154.83 137.265C1154.83 129.929 1156.24 123.892 1159.06 119.152C1161.88 114.412 1165.69 110.659 1170.48 107.894C1175.28 105.129 1180.64 103.041 1186.57 101.63C1192.49 100.22 1198.53 99.1476 1204.68 98.414C1212.47 97.5112 1218.79 96.7776 1223.64 96.2133C1228.49 95.5926 1232.02 94.6051 1234.22 93.2508C1236.42 91.8965 1237.52 89.6958 1237.52 86.6487V86.0562C1237.52 78.664 1235.43 72.9365 1231.26 68.8737C1227.14 64.8108 1220.99 62.7794 1212.81 62.7794C1204.29 62.7794 1197.57 64.6698 1192.66 68.4505C1187.81 72.1748 1184.45 76.3223 1182.59 80.893L1158.8 75.4758C1161.63 67.5758 1165.74 61.1994 1171.16 56.3466C1176.64 51.4373 1182.93 47.8823 1190.04 45.6816C1197.15 43.4244 1204.62 42.2959 1212.47 42.2959C1217.66 42.2959 1223.16 42.9166 1228.97 44.158C1234.84 45.343 1240.31 47.5437 1245.39 50.7601C1250.53 53.9766 1254.73 58.5755 1258.01 64.5569C1261.28 70.4819 1262.91 78.1844 1262.91 87.6644V174H1238.2V156.225H1237.18C1235.55 159.498 1233.09 162.714 1229.82 165.874C1226.55 169.034 1222.34 171.658 1217.21 173.746C1212.07 175.834 1205.92 176.878 1198.76 176.878ZM1204.26 156.564C1211.25 156.564 1217.24 155.181 1222.2 152.416C1227.22 149.651 1231.03 146.04 1233.63 141.582C1236.28 137.068 1237.61 132.243 1237.61 127.108V110.349C1236.7 111.252 1234.95 112.098 1232.36 112.888C1229.82 113.622 1226.91 114.27 1223.64 114.835C1220.37 115.343 1217.18 115.822 1214.08 116.274C1210.97 116.669 1208.38 117.007 1206.29 117.289C1201.38 117.91 1196.89 118.954 1192.83 120.421C1188.82 121.888 1185.61 124.004 1183.18 126.769C1180.81 129.478 1179.63 133.089 1179.63 137.604C1179.63 143.867 1181.94 148.607 1186.57 151.824C1191.19 154.984 1197.09 156.564 1204.26 156.564Z\" fill=\"white\"/>\\n<path d=\"M1345.29 176.539C1334.8 176.539 1325.43 173.859 1317.19 168.498C1309.01 163.081 1302.58 155.379 1297.89 145.391C1293.27 135.346 1290.95 123.299 1290.95 109.248C1290.95 95.1976 1293.29 83.1783 1297.98 73.1905C1302.72 63.2026 1309.21 55.5566 1317.45 50.2523C1325.68 44.948 1335.02 42.2959 1345.46 42.2959C1353.53 42.2959 1360.02 43.6501 1364.93 46.3587C1369.9 49.0109 1373.73 52.1144 1376.44 55.6694C1379.21 59.2244 1381.35 62.3562 1382.87 65.0648H1384.4V0.651611H1409.71V174H1384.99V153.77H1382.87C1381.35 156.535 1379.15 159.695 1376.27 163.25C1373.45 166.805 1369.56 169.909 1364.59 172.561C1359.63 175.213 1353.19 176.539 1345.29 176.539ZM1350.88 154.955C1358.16 154.955 1364.31 153.037 1369.33 149.2C1374.41 145.306 1378.25 139.917 1380.84 133.033C1383.49 126.149 1384.82 118.136 1384.82 108.994C1384.82 99.9658 1383.52 92.0658 1380.93 85.2944C1378.33 78.523 1374.52 73.2469 1369.5 69.4662C1364.48 65.6855 1358.27 63.7951 1350.88 63.7951C1343.26 63.7951 1336.91 65.7701 1331.83 69.7201C1326.76 73.6701 1322.92 79.059 1320.32 85.8869C1317.78 92.7147 1316.51 100.417 1316.51 108.994C1316.51 117.684 1317.81 125.5 1320.41 132.44C1323 139.381 1326.84 144.883 1331.92 148.946C1337.05 152.952 1343.37 154.955 1350.88 154.955Z\" fill=\"white\"/>\\n<path d=\"M1471.14 96.8058V174H1445.83V0.651611H1470.8V65.1494H1472.41C1475.45 58.1523 1480.11 52.5941 1486.37 48.4748C1492.63 44.3555 1500.82 42.2959 1510.92 42.2959C1519.83 42.2959 1527.62 44.1298 1534.28 47.7976C1540.99 51.4655 1546.19 56.9391 1549.85 64.2183C1553.58 71.4412 1555.44 80.4698 1555.44 91.304V174H1530.13V94.3512C1530.13 84.8148 1527.68 77.4226 1522.77 72.1748C1517.86 66.8705 1511.03 64.2183 1502.28 64.2183C1496.3 64.2183 1490.94 65.488 1486.2 68.0273C1481.52 70.5665 1477.82 74.2908 1475.11 79.2001C1472.46 84.053 1471.14 89.9215 1471.14 96.8058Z\" fill=\"white\"/>\\n<path d=\"M1627.05 176.878C1618.81 176.878 1611.36 175.354 1604.7 172.307C1598.04 169.204 1592.77 164.718 1588.87 158.849C1585.04 152.98 1583.12 145.786 1583.12 137.265C1583.12 129.929 1584.53 123.892 1587.35 119.152C1590.17 114.412 1593.98 110.659 1598.78 107.894C1603.57 105.129 1608.93 103.041 1614.86 101.63C1620.78 100.22 1626.82 99.1476 1632.97 98.414C1640.76 97.5112 1647.08 96.7776 1651.93 96.2133C1656.79 95.5926 1660.31 94.6051 1662.51 93.2508C1664.71 91.8965 1665.81 89.6958 1665.81 86.6487V86.0562C1665.81 78.664 1663.73 72.9365 1659.55 68.8737C1655.43 64.8108 1649.28 62.7794 1641.1 62.7794C1632.58 62.7794 1625.86 64.6698 1620.95 68.4505C1616.1 72.1748 1612.74 76.3223 1610.88 80.893L1587.1 75.4758C1589.92 67.5758 1594.04 61.1994 1599.45 56.3466C1604.93 51.4373 1611.22 47.8823 1618.33 45.6816C1625.44 43.4244 1632.92 42.2959 1640.76 42.2959C1645.95 42.2959 1651.45 42.9166 1657.27 44.158C1663.13 45.343 1668.61 47.5437 1673.69 50.7601C1678.82 53.9766 1683.02 58.5755 1686.3 64.5569C1689.57 70.4819 1691.21 78.1844 1691.21 87.6644V174H1666.49V156.225H1665.48C1663.84 159.498 1661.38 162.714 1658.11 165.874C1654.84 169.034 1650.63 171.658 1645.5 173.746C1640.36 175.834 1634.21 176.878 1627.05 176.878ZM1632.55 156.564C1639.55 156.564 1645.53 155.181 1650.49 152.416C1655.52 149.651 1659.32 146.04 1661.92 141.582C1664.57 137.068 1665.9 132.243 1665.9 127.108V110.349C1665 111.252 1663.25 112.098 1660.65 112.888C1658.11 113.622 1655.21 114.27 1651.93 114.835C1648.66 115.343 1645.47 115.822 1642.37 116.274C1639.26 116.669 1636.67 117.007 1634.58 117.289C1629.67 117.91 1625.19 118.954 1621.12 120.421C1617.12 121.888 1613.9 124.004 1611.47 126.769C1609.1 129.478 1607.92 133.089 1607.92 137.604C1607.92 143.867 1610.23 148.607 1614.86 151.824C1619.49 154.984 1625.38 156.564 1632.55 156.564Z\" fill=\"white\"/>\\n<path d=\"M1831.48 43.9887L1784.34 174H1757.25L1710.02 43.9887H1737.19L1770.12 144.036H1771.47L1804.31 43.9887H1831.48Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qck63m\",\"data-framer-name\":\"Minor Details\",layoutDependency:layoutDependency,layoutId:\"cZy6n8r89\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6b8a560a-ab88-4abf-ac6f-354f230b85e3, rgb(113, 113, 122)))\"},children:\"\\xa92024 MediaMen Service \"})}),className:\"framer-1b9fkdz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jUiANX41u\",style:{\"--extracted-r6o4lv\":\"var(--token-6b8a560a-ab88-4abf-ac6f-354f230b85e3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xe1hq0\",\"data-framer-name\":\"Footer Navigation\",layoutDependency:layoutDependency,layoutId:\"Q8zRjmhV0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xqw2ce\",\"data-framer-name\":\"1st Column\",layoutDependency:layoutDependency,layoutId:\"wtGpc2b_q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ijtefnGXK\"},nodeId:\"erCIbdc7N\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Home\"})})})}),className:\"framer-kscd5d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"erCIbdc7N\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vZDPGMpNl\"},nodeId:\"X5B4jXy7F\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"About me\"})})})}),className:\"framer-1xofhg9\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X5B4jXy7F\",onTap:onTapzuj9lq,style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Qg8nhI5Uz\"},nodeId:\"G02M4olGG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Projects\"})})})}),className:\"framer-1q91vf3\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G02M4olGG\",onTap:onTapzuj9lq,style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SO_pkJpu6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Qg8nhI5Uz\"},nodeId:\"G02M4olGG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Projects \"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H8AcS5UQh\"},nodeId:\"KhiSU96xL\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Opinions\"})})})}),className:\"framer-1vh1ty7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KhiSU96xL\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SO_pkJpu6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H8AcS5UQh\"},nodeId:\"KhiSU96xL\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Opinons\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9tn44\",\"data-framer-name\":\"2nd Column\",layoutDependency:layoutDependency,layoutId:\"yd506Sezw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"carKZr4YU\"},nodeId:\"uQQXq3Pw4\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Books\"})})})}),className:\"framer-1fjvpg1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uQQXq3Pw4\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a1MHAVQBO\"},nodeId:\"Mobrt7euO\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Events\"})})})}),className:\"framer-1qe9ryf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mobrt7euO\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uta4B7TZI\"},nodeId:\"CTrsnuXVl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Fractional PM\"})})})}),className:\"framer-ayrspv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CTrsnuXVl\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RaiNCNTgi\"},nodeId:\"W8QSSC2wW\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Contact\"})})})}),className:\"framer-1u1vrdx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W8QSSC2wW\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pvvqvh\",\"data-framer-name\":\"2nd Column\",layoutDependency:layoutDependency,layoutId:\"FE2jrl37H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/aanandmadhav\",nodeId:\"dXnJcEQcg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Behance\"})})})}),className:\"framer-1wlzsjs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dXnJcEQcg\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.upwork.com/freelancers/~014f95c296fbba4fcf?mp_source=share\",nodeId:\"nux4dZGSV\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Upwork\"})})})}),className:\"framer-1qnoayr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nux4dZGSV\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://adplist.org/mentors/aanand-madhav\",nodeId:\"ZA1dxuWCc\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"ADPList\"})})})}),className:\"framer-1a86kps\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZA1dxuWCc\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8yw9xx\",\"data-styles-preset\":\"etZGMSBih\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/aanandmadhav\",nodeId:\"S7mFy7wk6\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7kh6hj\",\"data-styles-preset\":\"Jhv4GxPFm\",children:\"Github\"})})})}),className:\"framer-l9n9ro\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7mFy7wk6\",style:{\"--extracted-r6o4lv\":\"var(--token-2e4f40b9-193d-44ac-bde9-85a3f4e0f5a2, rgb(250, 250, 250))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnwi3n-container\",layoutDependency:layoutDependency,layoutId:\"w_uwxt9Rg-container\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:10,borderRadius:0,direction:\"toTop\",height:\"100%\",id:\"w_uwxt9Rg\",layoutId:\"w_uwxt9Rg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({SO_pkJpu6:{blur:20}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mSCC7.framer-ejwh9w, .framer-mSCC7 .framer-ejwh9w { display: block; }\",\".framer-mSCC7.framer-bu45yv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 92px; height: min-content; justify-content: center; overflow: hidden; padding: 55px 0px 55px 0px; position: relative; width: 1200px; }\",\".framer-mSCC7 .framer-j28nu4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-mSCC7 .framer-jqw6r6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 896px; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-mSCC7 .framer-1xz1pe4 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; mix-blend-mode: lighten; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-mSCC7 .framer-1ay3r8h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-mSCC7 .framer-1vp7yad { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 379px; }\",\".framer-mSCC7 .framer-g97ht9, .framer-mSCC7 .framer-kscd5d, .framer-mSCC7 .framer-1vh1ty7, .framer-mSCC7 .framer-1fjvpg1, .framer-mSCC7 .framer-1qe9ryf, .framer-mSCC7 .framer-ayrspv, .framer-mSCC7 .framer-1u1vrdx, .framer-mSCC7 .framer-1wlzsjs, .framer-mSCC7 .framer-1qnoayr, .framer-mSCC7 .framer-1a86kps, .framer-mSCC7 .framer-l9n9ro { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mSCC7 .framer-k5ywfv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mSCC7 .framer-jsvdqu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mSCC7 .framer-gscm66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-mSCC7 .framer-odgoxf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mSCC7 .framer-1o3cc5j { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mSCC7 .framer-1tx54ri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 12px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 119px; }\",\".framer-mSCC7 .framer-n7bmen { flex: none; height: 12px; position: relative; width: 117px; }\",\".framer-mSCC7 .framer-1qck63m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 25px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mSCC7 .framer-1b9fkdz { flex: 1 0 0px; height: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-mSCC7 .framer-1xe1hq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mSCC7 .framer-1xqw2ce, .framer-mSCC7 .framer-1o9tn44, .framer-mSCC7 .framer-1pvvqvh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mSCC7 .framer-1xofhg9, .framer-mSCC7 .framer-1q91vf3 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mSCC7 .framer-qnwi3n-container { flex: none; height: 145px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSCC7.framer-bu45yv, .framer-mSCC7 .framer-j28nu4, .framer-mSCC7 .framer-jqw6r6, .framer-mSCC7 .framer-1xz1pe4, .framer-mSCC7 .framer-1vp7yad, .framer-mSCC7 .framer-gscm66, .framer-mSCC7 .framer-odgoxf, .framer-mSCC7 .framer-1tx54ri, .framer-mSCC7 .framer-1qck63m, .framer-mSCC7 .framer-1xe1hq0, .framer-mSCC7 .framer-1xqw2ce, .framer-mSCC7 .framer-1o9tn44, .framer-mSCC7 .framer-1pvvqvh { gap: 0px; } .framer-mSCC7.framer-bu45yv > * { margin: 0px; margin-bottom: calc(92px / 2); margin-top: calc(92px / 2); } .framer-mSCC7.framer-bu45yv > :first-child, .framer-mSCC7 .framer-j28nu4 > :first-child, .framer-mSCC7 .framer-1vp7yad > :first-child, .framer-mSCC7 .framer-1xqw2ce > :first-child, .framer-mSCC7 .framer-1o9tn44 > :first-child, .framer-mSCC7 .framer-1pvvqvh > :first-child { margin-top: 0px; } .framer-mSCC7.framer-bu45yv > :last-child, .framer-mSCC7 .framer-j28nu4 > :last-child, .framer-mSCC7 .framer-1vp7yad > :last-child, .framer-mSCC7 .framer-1xqw2ce > :last-child, .framer-mSCC7 .framer-1o9tn44 > :last-child, .framer-mSCC7 .framer-1pvvqvh > :last-child { margin-bottom: 0px; } .framer-mSCC7 .framer-j28nu4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mSCC7 .framer-jqw6r6 > *, .framer-mSCC7 .framer-1xz1pe4 > *, .framer-mSCC7 .framer-gscm66 > *, .framer-mSCC7 .framer-1tx54ri > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mSCC7 .framer-jqw6r6 > :first-child, .framer-mSCC7 .framer-1xz1pe4 > :first-child, .framer-mSCC7 .framer-gscm66 > :first-child, .framer-mSCC7 .framer-odgoxf > :first-child, .framer-mSCC7 .framer-1tx54ri > :first-child, .framer-mSCC7 .framer-1qck63m > :first-child, .framer-mSCC7 .framer-1xe1hq0 > :first-child { margin-left: 0px; } .framer-mSCC7 .framer-jqw6r6 > :last-child, .framer-mSCC7 .framer-1xz1pe4 > :last-child, .framer-mSCC7 .framer-gscm66 > :last-child, .framer-mSCC7 .framer-odgoxf > :last-child, .framer-mSCC7 .framer-1tx54ri > :last-child, .framer-mSCC7 .framer-1qck63m > :last-child, .framer-mSCC7 .framer-1xe1hq0 > :last-child { margin-right: 0px; } .framer-mSCC7 .framer-1vp7yad > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-mSCC7 .framer-odgoxf > *, .framer-mSCC7 .framer-1xe1hq0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mSCC7 .framer-1qck63m > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-mSCC7 .framer-1xqw2ce > *, .framer-mSCC7 .framer-1o9tn44 > *, .framer-mSCC7 .framer-1pvvqvh > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }\",\".framer-mSCC7.framer-v-lr0o5.framer-bu45yv { gap: 64px; padding: 45px 0px 64px 0px; width: 390px; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-j28nu4 { padding: 0px 12px 0px 12px; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-jqw6r6 { flex-direction: column; padding: 22px; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-1ay3r8h { flex: none; flex-direction: column; gap: 24px; justify-content: flex-start; overflow: visible; width: min-content; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-1vp7yad { width: 322px; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-jsvdqu-container { width: 348px; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-gscm66 { flex-direction: column; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-odgoxf { flex: none; flex-direction: column; gap: 64px; width: 100%; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-1o3cc5j { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: flex-start; order: 1; width: 100%; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-1xe1hq0 { flex: none; order: 0; width: 100%; }\",\".framer-mSCC7.framer-v-lr0o5 .framer-qnwi3n-container { height: 98px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mSCC7.framer-v-lr0o5.framer-bu45yv, .framer-mSCC7.framer-v-lr0o5 .framer-jqw6r6, .framer-mSCC7.framer-v-lr0o5 .framer-1ay3r8h, .framer-mSCC7.framer-v-lr0o5 .framer-gscm66, .framer-mSCC7.framer-v-lr0o5 .framer-odgoxf, .framer-mSCC7.framer-v-lr0o5 .framer-1o3cc5j { gap: 0px; } .framer-mSCC7.framer-v-lr0o5.framer-bu45yv > *, .framer-mSCC7.framer-v-lr0o5 .framer-odgoxf > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mSCC7.framer-v-lr0o5.framer-bu45yv > :first-child, .framer-mSCC7.framer-v-lr0o5 .framer-jqw6r6 > :first-child, .framer-mSCC7.framer-v-lr0o5 .framer-1ay3r8h > :first-child, .framer-mSCC7.framer-v-lr0o5 .framer-gscm66 > :first-child, .framer-mSCC7.framer-v-lr0o5 .framer-odgoxf > :first-child, .framer-mSCC7.framer-v-lr0o5 .framer-1o3cc5j > :first-child { margin-top: 0px; } .framer-mSCC7.framer-v-lr0o5.framer-bu45yv > :last-child, .framer-mSCC7.framer-v-lr0o5 .framer-jqw6r6 > :last-child, .framer-mSCC7.framer-v-lr0o5 .framer-1ay3r8h > :last-child, .framer-mSCC7.framer-v-lr0o5 .framer-gscm66 > :last-child, .framer-mSCC7.framer-v-lr0o5 .framer-odgoxf > :last-child, .framer-mSCC7.framer-v-lr0o5 .framer-1o3cc5j > :last-child { margin-bottom: 0px; } .framer-mSCC7.framer-v-lr0o5 .framer-jqw6r6 > *, .framer-mSCC7.framer-v-lr0o5 .framer-gscm66 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mSCC7.framer-v-lr0o5 .framer-1ay3r8h > *, .framer-mSCC7.framer-v-lr0o5 .framer-1o3cc5j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-mSCC7[data-border=\"true\"]::after, .framer-mSCC7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 554\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SO_pkJpu6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereFNOax2yU=withCSS(Component,css,\"framer-mSCC7\");export default FramereFNOax2yU;FramereFNOax2yU.displayName=\"Footer\";FramereFNOax2yU.defaultProps={height:554,width:1200};addPropertyControls(FramereFNOax2yU,{variant:{options:[\"xZcstfLP4\",\"SO_pkJpu6\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereFNOax2yU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BookButtonFonts,...BlurGradientFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereFNOax2yU\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"554\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SO_pkJpu6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["t", "e", "i", "s", "Animate", "o", "n", "r", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "h", "a", "c", "d", "p", "u", "m", "v", "g", "w", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "allElements", "element", "Lenis", "raf", "time", "styleElement", "anchorLinks", "handleClick", "e", "href", "a", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "distribute", "gap", "height", "id", "image", "link", "width", "props", "_ref", "_humanReadableEnumMap_distribute", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZP3Evt5hs", "sgkQP3VGl", "KVgbxSmkf", "BauE99f1D", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerEa7rafYPK", "withCSS", "Ea7rafYPK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BookButtonFonts", "getFonts", "Ea7rafYPK_default", "BlurGradientFonts", "BlurGradient_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzuj9lq", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "Link", "SVG", "css", "FramereFNOax2yU", "withCSS", "eFNOax2yU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
