{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/5hCj5aqz259Cc22vd8sH/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/WiHATn3BMrbzyHTp57fV/orAX4GEaip7zBUdPVpto/E0oqcCSTd.js", "ssg:https://framerusercontent.com/modules/BbxWTeGdgIQd62OuRHr6/0j5ahzJZtdsWqGriP2AN/QHvvi_BZK.js", "ssg:https://framerusercontent.com/modules/CUbQW9lp4pRVy2owpYlH/2v780PEuwjV0jj330he3/nW5hp9jLd.js", "ssg:https://framerusercontent.com/modules/iMSYfcOGt2hHOpB1sFvS/KcaYhTXrg5KVJoejnCNm/nmWDxib0A.js", "ssg:https://framerusercontent.com/modules/W9RpDqMyrm5JUaxdQLeL/lboqzzQb4mvOLPrfvJew/ynAf5kHB8.js"],
  "sourcesContent": ["function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);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,description:\"More components at [Framer University](https://framer.university?utm_source=component).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={NVaSE9swb:{hover:true}};const serializationHash=\"framer-MLdqk\";const variantClassNames={NVaSE9swb:\"framer-v-2i96y0\"};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={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,newTab,smoothScroll,title,width,...props})=>{var _ref;return{...props,EwkC5P99C:link!==null&&link!==void 0?link:props.EwkC5P99C,ikvuJSnHA:(_ref=title!==null&&title!==void 0?title:props.ikvuJSnHA)!==null&&_ref!==void 0?_ref:\"Lessons\",lZJWk0qem:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.lZJWk0qem,TlUGkFCQW:newTab!==null&&newTab!==void 0?newTab:props.TlUGkFCQW};};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,ikvuJSnHA,EwkC5P99C,TlUGkFCQW,lZJWk0qem,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NVaSE9swb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:EwkC5P99C,nodeId:\"NVaSE9swb\",openInNewTab:TlUGkFCQW,smoothScroll:lZJWk0qem,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-2i96y0\",className,classNames)} framer-1nbhyvo`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"NVaSE9swb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"NVaSE9swb-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8u8onv\",\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"Px53t7wYC\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0.04)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"NVaSE9swb-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({\"NVaSE9swb-hover\":{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5aca01dc-dadc-4074-a025-8f20b6f39c17, rgb(255, 255, 255)))\"},children:\"Lessons\"})}),className:\"framer-1fetgmw\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ShFQhNVdm\",style:{\"--extracted-r6o4lv\":\"var(--token-5aca01dc-dadc-4074-a025-8f20b6f39c17, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ikvuJSnHA,verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MLdqk.framer-1nbhyvo, .framer-MLdqk .framer-1nbhyvo { display: block; }\",\".framer-MLdqk.framer-2i96y0 { cursor: pointer; height: 38px; overflow: hidden; position: relative; text-decoration: none; width: 189px; }\",\".framer-MLdqk .framer-8u8onv { align-content: center; align-items: center; bottom: 2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; left: 4px; overflow: hidden; padding: 0px 12px 0px 12px; position: absolute; right: 4px; top: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MLdqk .framer-1fetgmw { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MLdqk .framer-8u8onv { gap: 0px; } .framer-MLdqk .framer-8u8onv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MLdqk .framer-8u8onv > :first-child { margin-left: 0px; } .framer-MLdqk .framer-8u8onv > :last-child { margin-right: 0px; } }\",'.framer-MLdqk[data-border=\"true\"]::after, .framer-MLdqk [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 38\n * @framerIntrinsicWidth 189\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"h5uqZX5s8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ikvuJSnHA\":\"title\",\"EwkC5P99C\":\"link\",\"TlUGkFCQW\":\"newTab\",\"lZJWk0qem\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerE0oqcCSTd=withCSS(Component,css,\"framer-MLdqk\");export default FramerE0oqcCSTd;FramerE0oqcCSTd.displayName=\"New/Dropdown Item\";FramerE0oqcCSTd.defaultProps={height:38,width:189};addPropertyControls(FramerE0oqcCSTd,{ikvuJSnHA:{defaultValue:\"Lessons\",displayTextArea:false,title:\"Title\",type:ControlType.String},EwkC5P99C:{title:\"Link\",type:ControlType.Link},TlUGkFCQW:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},lZJWk0qem:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(FramerE0oqcCSTd,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE0oqcCSTd\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"38\",\"framerIntrinsicWidth\":\"189\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h5uqZX5s8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ikvuJSnHA\\\":\\\"title\\\",\\\"EwkC5P99C\\\":\\\"link\\\",\\\"TlUGkFCQW\\\":\\\"newTab\\\",\\\"lZJWk0qem\\\":\\\"smoothScroll\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./E0oqcCSTd.map", "// Generated by Framer (b5638f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"ZuekODr5U\",\"q3d1DOTUL\"];const serializationHash=\"framer-5HmQd\";const variantClassNames={q3d1DOTUL:\"framer-v-18nykls\",ZuekODr5U:\"framer-v-1a2aowf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:55,delay:0,mass:1,stiffness:800,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={Down:\"q3d1DOTUL\",Plus:\"ZuekODr5U\"};const getProps=({height,hover,id,tap,width,...props})=>{return{...props,mueVeZldM:tap??props.mueVeZldM,tGqdD4J1S:hover??props.tGqdD4J1S,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZuekODr5U\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,tGqdD4J1S,mueVeZldM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZuekODr5U\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1a9k8ox=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(mueVeZldM){const res=await mueVeZldM(...args);if(res===false)return false;}});const onMouseEnter1wmdk69=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(tGqdD4J1S){const res=await tGqdD4J1S(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1a2aowf\",className,classNames),\"data-framer-name\":\"Plus\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZuekODr5U\",onMouseEnter:onMouseEnter1wmdk69,onTap:onTap1a9k8ox,ref:refBinding,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({q3d1DOTUL:{\"data-framer-name\":\"Down\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xr5xx9\",\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"OYESEjoCf\",style:{backgroundColor:\"var(--token-43605dbd-585a-439f-a1c7-693f0d13b360, rgb(34, 34, 34))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1afftj3\",\"data-framer-name\":\"V\",layoutDependency:layoutDependency,layoutId:\"AFm_Mvy1N\",style:{backgroundColor:\"rgb(255, 255, 255)\",rotate:0},variants:{q3d1DOTUL:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pogik1\",\"data-framer-name\":\"H\",layoutDependency:layoutDependency,layoutId:\"x4q6APapq\",style:{backgroundColor:\"rgb(255, 255, 255)\",rotate:90},variants:{q3d1DOTUL:{rotate:135}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5HmQd.framer-13j49x3, .framer-5HmQd .framer-13j49x3 { display: block; }\",\".framer-5HmQd.framer-1a2aowf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-5HmQd .framer-1xr5xx9 { flex: none; height: 24px; overflow: visible; position: relative; width: 25px; }\",\".framer-5HmQd .framer-1afftj3 { flex: none; height: 12px; left: calc(72.00000000000001% - 6% / 2); overflow: visible; position: absolute; top: calc(75.00000000000003% - 12px / 2); width: 6%; }\",\".framer-5HmQd .framer-pogik1 { bottom: 5px; flex: none; height: 12px; left: calc(52.00000000000002% - 6% / 2); overflow: visible; position: absolute; width: 6%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5HmQd.framer-1a2aowf { gap: 0px; } .framer-5HmQd.framer-1a2aowf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5HmQd.framer-1a2aowf > :first-child { margin-left: 0px; } .framer-5HmQd.framer-1a2aowf > :last-child { margin-right: 0px; } }\",\".framer-5HmQd.framer-v-18nykls .framer-1xr5xx9 { order: 0; }\",\".framer-5HmQd.framer-v-18nykls .framer-1afftj3 { height: 8px; left: unset; right: 15px; top: calc(52.7777777777778% - 8px / 2); }\",\".framer-5HmQd.framer-v-18nykls .framer-pogik1 { height: 8px; left: 15px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 25\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"q3d1DOTUL\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tGqdD4J1S\":\"hover\",\"mueVeZldM\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQHvvi_BZK=withCSS(Component,css,\"framer-5HmQd\");export default FramerQHvvi_BZK;FramerQHvvi_BZK.displayName=\"New/Menu Button\";FramerQHvvi_BZK.defaultProps={height:24,width:25};addPropertyControls(FramerQHvvi_BZK,{variant:{options:[\"ZuekODr5U\",\"q3d1DOTUL\"],optionTitles:[\"Plus\",\"Down\"],title:\"Variant\",type:ControlType.Enum},tGqdD4J1S:{title:\"Hover\",type:ControlType.EventHandler},mueVeZldM:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerQHvvi_BZK,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQHvvi_BZK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"24\",\"framerVariables\":\"{\\\"tGqdD4J1S\\\":\\\"hover\\\",\\\"mueVeZldM\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"25\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"q3d1DOTUL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QHvvi_BZK.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NewDropdownItem from\"https://framerusercontent.com/modules/WiHATn3BMrbzyHTp57fV/orAX4GEaip7zBUdPVpto/E0oqcCSTd.js\";import NewMenuButton from\"https://framerusercontent.com/modules/BbxWTeGdgIQd62OuRHr6/0j5ahzJZtdsWqGriP2AN/QHvvi_BZK.js\";const NewMenuButtonFonts=getFonts(NewMenuButton);const NewDropdownItemFonts=getFonts(NewDropdownItem);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-N8qBa\";const variantClassNames={QflTUUmUn:\"framer-v-uxw4o3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:55,delay:0,mass:1,stiffness:800,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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 getProps=({_24HoursWebDesign,height,id,title2,title3,title5,title6,width,...props})=>{return{...props,Ukev1UGMv:_24HoursWebDesign??props.Ukev1UGMv??\"Blogs\",URJRSd4Di:title3??props.URJRSd4Di??\"24 Hr Ad design\",VK0kawfLD:title2??props.VK0kawfLD??\"iAI - Brouchure\",Xz_U61J3c:title5??props.Xz_U61J3c??\"AI Training courses\",ZNpbCfTxz:title6??props.ZNpbCfTxz??\"AI Careers\"};};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,Ukev1UGMv,VK0kawfLD,URJRSd4Di,Xz_U61J3c,ZNpbCfTxz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"QflTUUmUn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tGqdD4J1Sizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const visible=isSet(Ukev1UGMv);const visible1=isSet(VK0kawfLD);const router=useRouter();const visible2=isSet(URJRSd4Di);const visible3=isSet(Xz_U61J3c);const visible4=isSet(ZNpbCfTxz);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsx(motion.button,{...restProps,...gestureHandlers,\"aria-label\":\"Dropdown Menu\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-uxw4o3\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"QflTUUmUn\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-897bxw-container\",id:`${layoutId}-897bxw`,layoutDependency:layoutDependency,layoutId:\"rJ5b3Bod1-container\",ref:ref2,children:[/*#__PURE__*/_jsx(NewMenuButton,{height:\"100%\",id:\"rJ5b3Bod1\",layoutId:\"rJ5b3Bod1\",tGqdD4J1S:tGqdD4J1Sizu9gt({overlay}),variant:overlay.visible?\"q3d1DOTUL\":\"ZuekODr5U\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:24,\"data-framer-portal-id\":`${layoutId}-897bxw`,offsetX:0,offsetY:20,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-wg5yhh\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"fivbc8IQd\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 4px 12px 0px rgba(5, 5, 5, 0.5), 0px 0px 0px 1px rgba(255, 255, 255, 0.05)\"},children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2)+-116+2+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8k2cz1-container\",layoutDependency:layoutDependency,layoutId:\"iGfNVKpq0-container\",children:/*#__PURE__*/_jsx(NewDropdownItem,{EwkC5P99C:\"https://medium.com/@hello_34816\",height:\"100%\",id:\"iGfNVKpq0\",ikvuJSnHA:Ukev1UGMv,layoutId:\"iGfNVKpq0\",lZJWk0qem:false,style:{width:\"100%\"},TlUGkFCQW:true,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2)+-116+2+38,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17r5rd4-container\",layoutDependency:layoutDependency,layoutId:\"CAQ3wdr6t-container\",children:/*#__PURE__*/_jsx(NewDropdownItem,{EwkC5P99C:\"https://gamma.app/docs/Brochure-Intelligent-AI-Studio-Crafting-the-Future-sma39ait267qr80\",height:\"100%\",id:\"CAQ3wdr6t\",ikvuJSnHA:VK0kawfLD,layoutId:\"CAQ3wdr6t\",lZJWk0qem:false,style:{width:\"100%\"},TlUGkFCQW:false,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L3TR3oYQG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2)+-116+2+76,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d9xq49-container\",layoutDependency:layoutDependency,layoutId:\"VN3Et93s5-container\",children:/*#__PURE__*/_jsx(NewDropdownItem,{EwkC5P99C:resolvedLinks[0],height:\"100%\",id:\"VN3Et93s5\",ikvuJSnHA:VK0kawfLD,layoutId:\"VN3Et93s5\",lZJWk0qem:false,style:{width:\"100%\"},TlUGkFCQW:false,width:\"100%\"})})})}),visible2&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GJyLrOit7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2)+-116+2+114,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gbv07m-container\",layoutDependency:layoutDependency,layoutId:\"rWUiJo3Kk-container\",children:/*#__PURE__*/_jsx(NewDropdownItem,{EwkC5P99C:resolvedLinks1[0],height:\"100%\",id:\"rWUiJo3Kk\",ikvuJSnHA:URJRSd4Di,layoutId:\"rWUiJo3Kk\",lZJWk0qem:false,style:{width:\"100%\"},TlUGkFCQW:false,width:\"100%\"})})})}),visible3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ymRPMGqAs\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2)+-116+2+152,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iku8ir-container\",layoutDependency:layoutDependency,layoutId:\"kCbjJLnsp-container\",children:/*#__PURE__*/_jsx(NewDropdownItem,{EwkC5P99C:resolvedLinks2[0],height:\"100%\",id:\"kCbjJLnsp\",ikvuJSnHA:Xz_U61J3c,layoutId:\"kCbjJLnsp\",lZJWk0qem:false,style:{width:\"100%\"},TlUGkFCQW:false,width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qGTa3F7KN\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-200)/2)+-116+2+190,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l9vnty-container\",layoutDependency:layoutDependency,layoutId:\"MKCBwuaEE-container\",children:/*#__PURE__*/_jsx(NewDropdownItem,{EwkC5P99C:resolvedLinks3[0],height:\"100%\",id:\"MKCBwuaEE\",ikvuJSnHA:ZNpbCfTxz,layoutId:\"MKCBwuaEE\",lZJWk0qem:false,style:{width:\"100%\"},TlUGkFCQW:false,width:\"100%\"})})})})]})})})]})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N8qBa.framer-i85vox, .framer-N8qBa .framer-i85vox { display: block; }\",\".framer-N8qBa.framer-uxw4o3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-N8qBa .framer-897bxw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-N8qBa .framer-wg5yhh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 2px 0px 2px 0px; position: relative; width: 189px; will-change: var(--framer-will-change-override, transform); }\",\".framer-N8qBa .framer-8k2cz1-container, .framer-N8qBa .framer-17r5rd4-container, .framer-N8qBa .framer-d9xq49-container, .framer-N8qBa .framer-1gbv07m-container, .framer-N8qBa .framer-iku8ir-container, .framer-N8qBa .framer-l9vnty-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N8qBa.framer-uxw4o3, .framer-N8qBa .framer-wg5yhh { gap: 0px; } .framer-N8qBa.framer-uxw4o3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-N8qBa.framer-uxw4o3 > :first-child { margin-left: 0px; } .framer-N8qBa.framer-uxw4o3 > :last-child { margin-right: 0px; } .framer-N8qBa .framer-wg5yhh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-N8qBa .framer-wg5yhh > :first-child { margin-top: 0px; } .framer-N8qBa .framer-wg5yhh > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 36\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Ukev1UGMv\":\"_24HoursWebDesign\",\"VK0kawfLD\":\"title2\",\"URJRSd4Di\":\"title3\",\"Xz_U61J3c\":\"title5\",\"ZNpbCfTxz\":\"title6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernW5hp9jLd=withCSS(Component,css,\"framer-N8qBa\");export default FramernW5hp9jLd;FramernW5hp9jLd.displayName=\"New/Menu\";FramernW5hp9jLd.defaultProps={height:36,width:36};addPropertyControls(FramernW5hp9jLd,{Ukev1UGMv:{defaultValue:\"Blogs\",displayTextArea:true,title:\"24 Hours Web Design\",type:ControlType.String},VK0kawfLD:{defaultValue:\"iAI - Brouchure\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},URJRSd4Di:{defaultValue:\"24 Hr Ad design\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},Xz_U61J3c:{defaultValue:\"AI Training courses\",displayTextArea:false,title:\"Title 5\",type:ControlType.String},ZNpbCfTxz:{defaultValue:\"AI Careers\",displayTextArea:false,title:\"Title 6\",type:ControlType.String}});addFonts(FramernW5hp9jLd,[{explicitInter:true,fonts:[]},...NewMenuButtonFonts,...NewDropdownItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernW5hp9jLd\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Ukev1UGMv\\\":\\\"_24HoursWebDesign\\\",\\\"VK0kawfLD\\\":\\\"title2\\\",\\\"URJRSd4Di\\\":\\\"title3\\\",\\\"Xz_U61J3c\\\":\\\"title5\\\",\\\"ZNpbCfTxz\\\":\\\"title6\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"36\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"36\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NewMenu from\"https://framerusercontent.com/modules/CUbQW9lp4pRVy2owpYlH/2v780PEuwjV0jj330he3/nW5hp9jLd.js\";const NewMenuFonts=getFonts(NewMenu);const cycleOrder=[\"x5PSIUGQI\",\"rhnqWdp3U\",\"LNI1PTDLc\",\"NpYD3lSkJ\",\"VpIU9kKQA\",\"yv4xyc1UR\",\"xkhMkLbEr\"];const serializationHash=\"framer-HEIS6\";const variantClassNames={LNI1PTDLc:\"framer-v-d2tru6\",NpYD3lSkJ:\"framer-v-1fhnpaw\",rhnqWdp3U:\"framer-v-ddsamv\",VpIU9kKQA:\"framer-v-17oujfv\",x5PSIUGQI:\"framer-v-1fiwppx\",xkhMkLbEr:\"framer-v-siga5s\",yv4xyc1UR:\"framer-v-gtfghn\"};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={Contact:\"xkhMkLbEr\",FAQ:\"yv4xyc1UR\",Main:\"x5PSIUGQI\",Pricing:\"VpIU9kKQA\",Process:\"LNI1PTDLc\",Services:\"rhnqWdp3U\",Team:\"NpYD3lSkJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"x5PSIUGQI\"};};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:\"x5PSIUGQI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterh8io4a=activeVariantCallback(async(...args)=>{setVariant(\"rhnqWdp3U\");});const onMouseLeavel3euz6=activeVariantCallback(async(...args)=>{setVariant(\"x5PSIUGQI\");});const onMouseEnterycwttb=activeVariantCallback(async(...args)=>{setVariant(\"LNI1PTDLc\");});const onMouseEnter182xggg=activeVariantCallback(async(...args)=>{setVariant(\"NpYD3lSkJ\");});const onMouseEnter1atv8is=activeVariantCallback(async(...args)=>{setVariant(\"VpIU9kKQA\");});const onMouseEnterxb0qxy=activeVariantCallback(async(...args)=>{setVariant(\"yv4xyc1UR\");});const onMouseEnter14rsqr2=activeVariantCallback(async(...args)=>{setVariant(\"xkhMkLbEr\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"rhnqWdp3U\",\"LNI1PTDLc\",\"NpYD3lSkJ\",\"VpIU9kKQA\",\"yv4xyc1UR\",\"xkhMkLbEr\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fiwppx\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"x5PSIUGQI\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dfd29766-9b54-40dd-9398-e62b74c1aefb, rgb(34, 34, 34))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e65b6aaf-2ee0-4519-9cc5-de41d9cf50ef, rgb(15, 15, 15))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({LNI1PTDLc:{\"data-framer-name\":\"Process\"},NpYD3lSkJ:{\"data-framer-name\":\"Team\"},rhnqWdp3U:{\"data-framer-name\":\"Services\"},VpIU9kKQA:{\"data-framer-name\":\"Pricing\"},xkhMkLbEr:{\"data-framer-name\":\"Contact\"},yv4xyc1UR:{\"data-framer-name\":\"FAQ\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xLmnG8h_X\"},nodeId:\"QiIfhkjSM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1sr6u4v framer-12oefan\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"QiIfhkjSM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-191wfpr\",\"data-framer-name\":\"Group\",fill:\"black\",intrinsicHeight:928,intrinsicWidth:1552,layoutDependency:layoutDependency,layoutId:\"iwoCcOvMF\",svg:'<svg width=\"1552\" height=\"928\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M255.701 927.767h163.364V265.128H255.701v662.639Zm163.364-760.271h141.131l760.274 760.271h230.54L627.378 4.132H255.701v163.364h163.364ZM.988 927.767h163.364V265.128H.988v662.639Zm163.364-760.271V4.132H.988v163.364h163.364Z\" fill=\"#fff\"/><path d=\"M951.689.749c15.466 0 29.966 6.283 40.116 16.916 10.635 10.15 16.915 24.167 16.915 40.116 0 15.467-6.28 29.967-16.915 40.116-10.15 10.15-24.65 16.917-40.116 16.917-15.95 0-29.967-6.767-40.116-16.916-10.634-10.15-16.917-24.65-16.917-40.117 0-15.95 6.283-29.966 16.917-40.115C921.722 7.032 935.739.748 951.689.748Zm22.233 80.715h-9.667l-9.667-15.466c-1.449.483-2.416.483-2.899.483h-7.25v14.983h-8.217V36.032h15.467c6.283 0 10.633 1.45 14.016 4.35 3.867 2.416 5.317 6.283 5.317 11.116 0 2.9-.484 5.317-1.934 7.733-1.933 1.934-3.866 3.867-6.766 4.834l11.6 17.4Zm-29.483-22.716h7.25c3.866 0 6.283-.483 8.216-1.933 1.45-1.45 2.417-2.9 2.417-5.317 0-2.9-.967-4.35-2.417-5.8-1.933-1.45-4.35-1.933-8.216-1.933h-7.25v14.983Zm39.632-33.35c-8.216-8.216-19.816-13.05-32.382-13.05-12.567 0-24.167 4.834-32.383 13.05-8.217 8.217-13.05 19.817-13.05 32.383 0 12.567 4.833 24.167 13.05 32.383 8.216 8.217 19.816 13.05 32.383 13.05 12.566 0 24.166-4.833 32.382-13.05 8.217-8.216 13.05-19.816 13.05-32.383 0-12.566-4.833-24.166-13.05-32.382Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rh92sn\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"mWqb3bO60\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dfd29766-9b54-40dd-9398-e62b74c1aefb, rgb(34, 34, 34))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c3b293ca-d1b8-41d0-a4df-58182d7e1499, rgb(22, 22, 22))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"0px 0px 2px 0.5px var(--token-0a59846b-ae05-40ce-bc7b-1a139c4ffa01, rgba(112, 190, 250, 0.75))\"},variants:{LNI1PTDLc:{boxShadow:\"0px 0px 2px 0.5px var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52))\"},NpYD3lSkJ:{boxShadow:\"0px 0px 2px 0.5px var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52))\"},rhnqWdp3U:{boxShadow:\"0px 0px 2px 0.5px var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52))\"},VpIU9kKQA:{boxShadow:\"0px 0px 2px 0.5px var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52))\"},xkhMkLbEr:{boxShadow:\"0px 0px 2px 0.5px var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52))\"},yv4xyc1UR:{boxShadow:\"0px 0px 2px 0.5px var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52))\"}}}),/*#__PURE__*/_jsx(Link,{href:{hash:\":QuOtk_VeH\",webPageId:\"xLmnG8h_X\"},nodeId:\"ly5y7Cwbg\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13tehea framer-12oefan\",\"data-framer-name\":\"Services\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ly5y7Cwbg\",onMouseEnter:onMouseEnterh8io4a,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({rhnqWdp3U:{onMouseLeave:onMouseLeavel3euz6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(156, 156, 156))\"},children:\"Process\"})}),className:\"framer-sxutey\",fonts:[\"CUSTOM;Anek Latin SemiExpanded Regular\"],layoutDependency:layoutDependency,layoutId:\"aWo2XzN9E\",style:{\"--extracted-1eung3n\":\"rgb(156, 156, 156)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{rhnqWdp3U:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rhnqWdp3U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52)) 100%)\"},children:\"Process\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":o2ovmxCmg\",webPageId:\"xLmnG8h_X\"},nodeId:\"vijM09VIJ\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-g13rir framer-12oefan\",\"data-framer-name\":\"Process\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vijM09VIJ\",onMouseEnter:onMouseEnterycwttb,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({LNI1PTDLc:{onMouseLeave:onMouseLeavel3euz6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(156, 156, 156))\"},children:\"Product\"})}),className:\"framer-s5svrp\",fonts:[\"CUSTOM;Anek Latin SemiExpanded Regular\"],layoutDependency:layoutDependency,layoutId:\"dQIvR0P8U\",style:{\"--extracted-1eung3n\":\"rgb(156, 156, 156)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{LNI1PTDLc:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LNI1PTDLc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52)) 100%)\"},children:\"Product\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":sP9XLczEW\",webPageId:\"xLmnG8h_X\"},nodeId:\"Vz2BRJff3\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uge5cb framer-12oefan\",\"data-framer-name\":\"Team\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Vz2BRJff3\",onMouseEnter:onMouseEnter182xggg,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({NpYD3lSkJ:{onMouseLeave:onMouseLeavel3euz6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(156, 156, 156))\"},children:\"Services\"})}),className:\"framer-110esgo\",fonts:[\"CUSTOM;Anek Latin SemiExpanded Regular\"],layoutDependency:layoutDependency,layoutId:\"GjGyUfZen\",style:{\"--extracted-1eung3n\":\"rgb(156, 156, 156)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{NpYD3lSkJ:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NpYD3lSkJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52)) 100%)\"},children:\"Services\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":ufSnkIoU_\",webPageId:\"xLmnG8h_X\"},nodeId:\"sdVVSGe1P\",openInNewTab:false,smoothScroll:true,...addPropertyOverrides({rhnqWdp3U:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-193ld4a framer-12oefan\",\"data-framer-name\":\"Pricing\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sdVVSGe1P\",onMouseEnter:onMouseEnter1atv8is,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({VpIU9kKQA:{onMouseLeave:onMouseLeavel3euz6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(156, 156, 156))\"},children:\"Team\"})}),className:\"framer-1mnk7xb\",fonts:[\"CUSTOM;Anek Latin SemiExpanded Regular\"],layoutDependency:layoutDependency,layoutId:\"VZ6y7CXvM\",style:{\"--extracted-1eung3n\":\"rgb(156, 156, 156)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{VpIU9kKQA:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VpIU9kKQA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52)) 100%)\"},children:\"Team\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":SGqU8Mszh\",webPageId:\"xLmnG8h_X\"},nodeId:\"DKNWSlcmN\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rz76b1 framer-12oefan\",\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DKNWSlcmN\",onMouseEnter:onMouseEnterxb0qxy,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({yv4xyc1UR:{onMouseLeave:onMouseLeavel3euz6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(156, 156, 156))\"},children:\"Pricing\"})}),className:\"framer-42guw7\",fonts:[\"CUSTOM;Anek Latin SemiExpanded Regular\"],layoutDependency:layoutDependency,layoutId:\"AIPpm1fmf\",style:{\"--extracted-1eung3n\":\"rgb(156, 156, 156)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{yv4xyc1UR:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yv4xyc1UR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52)) 100%)\"},children:\"Pricing\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Coixo_2nY\",webPageId:\"xLmnG8h_X\"},nodeId:\"zofq34lzo\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-182u2zg framer-12oefan\",\"data-framer-name\":\"Contact\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zofq34lzo\",onMouseEnter:onMouseEnter14rsqr2,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({xkhMkLbEr:{onMouseLeave:onMouseLeavel3euz6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(156, 156, 156))\"},children:\"FAQs\"})}),className:\"framer-5qkvfj\",fonts:[\"CUSTOM;Anek Latin SemiExpanded Regular\"],layoutDependency:layoutDependency,layoutId:\"EWghSbR1C\",style:{\"--extracted-1eung3n\":\"rgb(156, 156, 156)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{xkhMkLbEr:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xkhMkLbEr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0FuZWsgTGF0aW4gU2VtaUV4cGFuZGVkIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Anek Latin SemiExpanded Regular\", \"Anek Latin SemiExpanded Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, var(--token-1c318cb2-9684-4807-acaa-d1298ad00665, rgb(226, 28, 52)) 100%)\"},children:\"FAQs\"})})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||56)-20-36)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1imt65d-container\",layoutDependency:layoutDependency,layoutId:\"iEFewSvg2-container\",children:/*#__PURE__*/_jsx(NewMenu,{height:\"100%\",id:\"iEFewSvg2\",layoutId:\"iEFewSvg2\",Ukev1UGMv:\"Blogs\",URJRSd4Di:\"24 Hr Ad design\",VK0kawfLD:\"24 Hr web design\",width:\"100%\",Xz_U61J3c:\"AI Training courses\",ZNpbCfTxz:\"AI Careers\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HEIS6.framer-12oefan, .framer-HEIS6 .framer-12oefan { display: block; }\",\".framer-HEIS6.framer-1fiwppx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HEIS6 .framer-1sr6u4v { 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 15px 0px 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HEIS6 .framer-191wfpr { aspect-ratio: 1.6724137931034482 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 40px; }\",\".framer-HEIS6 .framer-1rh92sn { bottom: 6px; flex: none; left: 55px; overflow: hidden; position: absolute; top: 6px; width: 88px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-HEIS6 .framer-13tehea, .framer-HEIS6 .framer-g13rir, .framer-HEIS6 .framer-1uge5cb, .framer-HEIS6 .framer-193ld4a, .framer-HEIS6 .framer-rz76b1, .framer-HEIS6 .framer-182u2zg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 17px 8px 17px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HEIS6 .framer-sxutey, .framer-HEIS6 .framer-s5svrp, .framer-HEIS6 .framer-110esgo, .framer-HEIS6 .framer-1mnk7xb, .framer-HEIS6 .framer-42guw7, .framer-HEIS6 .framer-5qkvfj { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-HEIS6 .framer-1imt65d-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HEIS6.framer-1fiwppx, .framer-HEIS6 .framer-1sr6u4v, .framer-HEIS6 .framer-13tehea, .framer-HEIS6 .framer-g13rir, .framer-HEIS6 .framer-1uge5cb, .framer-HEIS6 .framer-193ld4a, .framer-HEIS6 .framer-rz76b1, .framer-HEIS6 .framer-182u2zg { gap: 0px; } .framer-HEIS6.framer-1fiwppx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HEIS6.framer-1fiwppx > :first-child, .framer-HEIS6 .framer-13tehea > :first-child, .framer-HEIS6 .framer-g13rir > :first-child, .framer-HEIS6 .framer-1uge5cb > :first-child, .framer-HEIS6 .framer-193ld4a > :first-child, .framer-HEIS6 .framer-rz76b1 > :first-child, .framer-HEIS6 .framer-182u2zg > :first-child { margin-left: 0px; } .framer-HEIS6.framer-1fiwppx > :last-child, .framer-HEIS6 .framer-13tehea > :last-child, .framer-HEIS6 .framer-g13rir > :last-child, .framer-HEIS6 .framer-1uge5cb > :last-child, .framer-HEIS6 .framer-193ld4a > :last-child, .framer-HEIS6 .framer-rz76b1 > :last-child, .framer-HEIS6 .framer-182u2zg > :last-child { margin-right: 0px; } .framer-HEIS6 .framer-1sr6u4v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HEIS6 .framer-1sr6u4v > :first-child { margin-top: 0px; } .framer-HEIS6 .framer-1sr6u4v > :last-child { margin-bottom: 0px; } .framer-HEIS6 .framer-13tehea > *, .framer-HEIS6 .framer-g13rir > *, .framer-HEIS6 .framer-1uge5cb > *, .framer-HEIS6 .framer-193ld4a > *, .framer-HEIS6 .framer-rz76b1 > *, .framer-HEIS6 .framer-182u2zg > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",\".framer-HEIS6.framer-v-d2tru6 .framer-1rh92sn { left: 143px; width: 83px; }\",\".framer-HEIS6.framer-v-1fhnpaw .framer-1rh92sn { left: 226px; width: 89px; }\",\".framer-HEIS6.framer-v-17oujfv .framer-1rh92sn { left: 315px; width: 70px; }\",\".framer-HEIS6.framer-v-gtfghn .framer-1rh92sn { left: 385px; width: 78px; }\",\".framer-HEIS6.framer-v-siga5s .framer-1rh92sn { left: 463px; width: 67px; }\",'.framer-HEIS6[data-border=\"true\"]::after, .framer-HEIS6 [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 56\n * @framerIntrinsicWidth 609.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rhnqWdp3U\":{\"layout\":[\"auto\",\"auto\"]},\"LNI1PTDLc\":{\"layout\":[\"auto\",\"auto\"]},\"NpYD3lSkJ\":{\"layout\":[\"auto\",\"auto\"]},\"VpIU9kKQA\":{\"layout\":[\"auto\",\"auto\"]},\"yv4xyc1UR\":{\"layout\":[\"auto\",\"auto\"]},\"xkhMkLbEr\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernmWDxib0A=withCSS(Component,css,\"framer-HEIS6\");export default FramernmWDxib0A;FramernmWDxib0A.displayName=\"Navigation - On scroll\";FramernmWDxib0A.defaultProps={height:56,width:609.5};addPropertyControls(FramernmWDxib0A,{variant:{options:[\"x5PSIUGQI\",\"rhnqWdp3U\",\"LNI1PTDLc\",\"NpYD3lSkJ\",\"VpIU9kKQA\",\"yv4xyc1UR\",\"xkhMkLbEr\"],optionTitles:[\"Main\",\"Services\",\"Process\",\"Team\",\"Pricing\",\"FAQ\",\"Contact\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernmWDxib0A,[{explicitInter:true,fonts:[{family:\"Anek Latin SemiExpanded Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/0X6HK4P87yQk7bN4Hjq4R0982II.woff2\"}]},...NewMenuFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernmWDxib0A\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"56\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"609.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rhnqWdp3U\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LNI1PTDLc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NpYD3lSkJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VpIU9kKQA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yv4xyc1UR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xkhMkLbEr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cr6tXJd3uWEn3Yz5qm67/X3fKGd3X8F1Zt8ldMAMw/DRh7fRScm.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"dV3qZ8czh\",\"pyEs88WEe\"];const serializationHash=\"framer-s3IMA\";const variantClassNames={dV3qZ8czh:\"framer-v-1pu6k9e\",pyEs88WEe:\"framer-v-el98u4\"};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={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:30,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:30,delay:.8,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.9,mass:1,stiffness:300,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:.7,mass:1,stiffness:300,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:30,delay:1.2,mass:1,stiffness:300,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:30,delay:1.1,mass:1,stiffness:300,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:30,delay:1.4,mass:1,stiffness:300,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:30,delay:1.3,mass:1,stiffness:300,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={damping:30,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={damping:30,delay:1.5,mass:1,stiffness:300,type:\"spring\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={damping:30,delay:1.6,mass:1,stiffness:300,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Phone Navigation Open\":\"pyEs88WEe\",\"Phone Navigation\":\"dV3qZ8czh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dV3qZ8czh\"};};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:\"dV3qZ8czh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1qr2vw2=activeVariantCallback(async(...args)=>{setVariant(\"pyEs88WEe\");});const onTap1b1sa92=activeVariantCallback(async(...args)=>{setVariant(\"dV3qZ8czh\");});const onTapo3qox5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dV3qZ8czh\"),500);});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"pyEs88WEe\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pu6k9e\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Phone Navigation\",layoutDependency:layoutDependency,layoutId:\"dV3qZ8czh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-b880fe79-a2ec-43e5-9bce-b1420e63b22f, rgb(17, 17, 17))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,WebkitBackdropFilter:\"blur(10px)\",...style},variants:{pyEs88WEe:{borderBottomLeftRadius:12,borderBottomRightRadius:12}},...addPropertyOverrides({pyEs88WEe:{\"data-framer-name\":\"Phone Navigation Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aw8kfs\",\"data-framer-name\":\"Menu closed\",layoutDependency:layoutDependency,layoutId:\"DGjRb3Zea\",children:[/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({pyEs88WEe:{href:{webPageId:\"xLmnG8h_X\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yc45qx framer-19jhmus\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WpvxgExzB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 33\"><g transform=\"translate(0.05 0.737)\" id=\"ss12113657210_1\"><path d=\"M 0.94 21.453 L 0.94 28.715 L 0 28.715 L 0 21.453 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 5.345 22.9 C 6.036 22.9 6.598 23.112 7.031 23.527 C 7.464 23.951 7.676 24.559 7.676 25.352 L 7.676 28.715 L 6.736 28.715 L 6.736 25.481 C 6.736 24.909 6.598 24.476 6.313 24.172 C 6.027 23.868 5.64 23.72 5.142 23.72 C 4.645 23.72 4.248 23.877 3.953 24.19 C 3.659 24.504 3.511 24.955 3.511 25.554 L 3.511 28.715 L 2.562 28.715 L 2.562 23.002 L 3.511 23.002 L 3.511 23.813 C 3.695 23.527 3.953 23.297 4.276 23.14 C 4.598 22.974 4.958 22.9 5.345 22.9 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 10.386 23.785 L 10.386 27.149 C 10.386 27.425 10.45 27.628 10.561 27.738 C 10.681 27.858 10.883 27.913 11.178 27.913 L 11.879 27.913 L 11.879 28.715 L 11.022 28.715 C 10.496 28.715 10.1 28.595 9.833 28.347 C 9.575 28.107 9.437 27.711 9.437 27.149 L 9.437 23.785 L 8.699 23.785 L 8.699 23.002 L 9.437 23.002 L 9.437 21.564 L 10.386 21.564 L 10.386 23.002 L 11.879 23.002 L 11.879 23.785 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 18.237 25.637 C 18.237 25.822 18.228 26.015 18.2 26.209 L 13.639 26.209 C 13.676 26.771 13.869 27.213 14.219 27.526 C 14.57 27.849 14.993 28.006 15.491 28.006 C 15.906 28.006 16.247 27.913 16.523 27.72 C 16.8 27.526 16.993 27.268 17.104 26.955 L 18.117 26.955 C 17.97 27.499 17.666 27.95 17.205 28.291 C 16.744 28.632 16.173 28.807 15.491 28.807 C 14.957 28.807 14.468 28.688 14.044 28.439 C 13.614 28.2 13.261 27.842 13.031 27.407 C 12.791 26.955 12.671 26.439 12.671 25.849 C 12.671 25.259 12.791 24.743 13.021 24.292 C 13.261 23.849 13.593 23.508 14.017 23.269 C 14.45 23.029 14.938 22.909 15.491 22.909 C 16.035 22.909 16.514 23.029 16.929 23.26 C 17.353 23.499 17.675 23.822 17.896 24.237 C 18.127 24.651 18.237 25.121 18.237 25.637 Z M 17.26 25.444 C 17.26 25.075 17.178 24.771 17.021 24.504 C 16.855 24.246 16.643 24.052 16.367 23.914 C 16.09 23.776 15.786 23.711 15.454 23.711 C 14.975 23.711 14.57 23.868 14.229 24.172 C 13.888 24.476 13.694 24.9 13.648 25.444 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 20.44 21.002 L 20.44 28.715 L 19.491 28.715 L 19.491 21.002 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 23.002 21.002 L 23.002 28.715 L 22.052 28.715 L 22.052 21.002 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 25.103 22.071 C 24.928 22.071 24.771 22.016 24.642 21.887 C 24.522 21.758 24.458 21.61 24.458 21.426 C 24.458 21.251 24.522 21.094 24.642 20.965 C 24.771 20.845 24.928 20.781 25.103 20.781 C 25.278 20.781 25.425 20.845 25.545 20.965 C 25.665 21.094 25.729 21.251 25.729 21.426 C 25.729 21.61 25.665 21.758 25.545 21.887 C 25.432 22.01 25.27 22.077 25.103 22.071 Z M 25.564 23.002 L 25.564 28.715 L 24.614 28.715 L 24.614 23.002 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 29.535 22.909 C 30.024 22.909 30.457 23.02 30.835 23.232 C 31.203 23.444 31.48 23.72 31.664 24.043 L 31.664 23.002 L 32.623 23.002 L 32.623 28.835 C 32.623 29.36 32.512 29.821 32.282 30.227 C 32.06 30.641 31.747 30.955 31.332 31.185 C 30.918 31.415 30.438 31.526 29.886 31.526 C 29.139 31.526 28.512 31.351 28.015 31.001 C 27.508 30.641 27.213 30.162 27.13 29.545 L 28.061 29.545 C 28.171 29.895 28.383 30.171 28.715 30.383 C 29.038 30.595 29.434 30.706 29.886 30.706 C 30.411 30.706 30.835 30.54 31.166 30.217 C 31.498 29.886 31.664 29.425 31.664 28.835 L 31.664 27.637 C 31.471 27.978 31.194 28.254 30.826 28.476 C 30.457 28.697 30.024 28.807 29.535 28.807 C 29.029 28.807 28.568 28.678 28.153 28.43 C 27.738 28.181 27.416 27.831 27.176 27.379 C 26.946 26.927 26.826 26.411 26.826 25.84 C 26.826 25.25 26.946 24.743 27.176 24.301 C 27.416 23.859 27.738 23.518 28.153 23.269 C 28.568 23.029 29.029 22.909 29.535 22.909 Z M 31.664 25.849 C 31.664 25.416 31.572 25.038 31.397 24.725 C 31.231 24.402 30.991 24.154 30.697 23.988 C 30.402 23.813 30.079 23.73 29.72 23.73 C 29.369 23.73 29.047 23.813 28.752 23.978 C 28.457 24.144 28.227 24.393 28.052 24.716 C 27.877 25.029 27.794 25.407 27.794 25.84 C 27.794 26.273 27.877 26.651 28.052 26.983 C 28.227 27.305 28.457 27.545 28.752 27.72 C 29.354 28.065 30.094 28.065 30.697 27.72 C 30.991 27.545 31.231 27.305 31.397 26.983 C 31.572 26.651 31.664 26.282 31.664 25.849 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 39.433 25.637 C 39.433 25.822 39.423 26.015 39.405 26.209 L 34.843 26.209 C 34.871 26.771 35.065 27.213 35.415 27.526 C 35.765 27.849 36.198 28.006 36.696 28.006 C 37.101 28.006 37.451 27.913 37.719 27.72 C 37.995 27.526 38.189 27.268 38.299 26.955 L 39.322 26.955 C 39.165 27.499 38.861 27.95 38.401 28.291 C 37.949 28.632 37.378 28.807 36.696 28.807 C 36.152 28.807 35.673 28.688 35.24 28.439 C 34.816 28.199 34.475 27.858 34.235 27.407 C 33.996 26.955 33.867 26.439 33.867 25.849 C 33.867 25.259 33.986 24.743 34.226 24.292 C 34.456 23.849 34.797 23.508 35.221 23.269 C 35.645 23.029 36.143 22.909 36.696 22.909 C 37.239 22.909 37.719 23.029 38.133 23.26 C 38.548 23.499 38.871 23.822 39.101 24.237 C 39.322 24.651 39.433 25.121 39.433 25.637 Z M 38.456 25.444 C 38.456 25.075 38.373 24.771 38.216 24.504 C 38.06 24.246 37.838 24.052 37.562 23.914 C 37.295 23.776 36.991 23.711 36.65 23.711 C 36.17 23.711 35.765 23.868 35.424 24.172 C 35.092 24.476 34.899 24.9 34.853 25.444 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 43.469 22.9 C 44.16 22.9 44.732 23.112 45.155 23.527 C 45.589 23.951 45.801 24.559 45.801 25.352 L 45.801 28.715 L 44.87 28.715 L 44.87 25.481 C 44.87 24.909 44.722 24.476 44.437 24.172 C 44.151 23.868 43.764 23.72 43.276 23.72 C 42.769 23.72 42.372 23.877 42.078 24.19 C 41.783 24.504 41.635 24.955 41.635 25.554 L 41.635 28.715 L 40.686 28.715 L 40.686 23.002 L 41.635 23.002 L 41.635 23.813 C 41.819 23.527 42.078 23.297 42.4 23.14 C 42.723 22.974 43.082 22.9 43.469 22.9 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 48.519 23.785 L 48.519 27.149 C 48.519 27.425 48.574 27.628 48.694 27.738 C 48.814 27.858 49.017 27.913 49.302 27.913 L 50.003 27.913 L 50.003 28.715 L 49.155 28.715 C 48.62 28.715 48.224 28.595 47.966 28.347 C 47.699 28.107 47.57 27.711 47.57 27.149 L 47.57 23.785 L 46.823 23.785 L 46.823 23.002 L 47.57 23.002 L 47.57 21.564 L 48.519 21.564 L 48.519 23.002 L 50.003 23.002 L 50.003 23.785 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 58.232 27.102 L 55.062 27.102 L 54.472 28.715 L 53.477 28.715 L 56.103 21.49 L 57.2 21.49 L 59.817 28.715 L 58.813 28.715 Z M 57.956 26.328 L 56.647 22.661 L 55.329 26.328 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 61.909 21.453 L 61.909 28.715 L 60.96 28.715 L 60.96 21.453 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 21.03 17.675 L 24.144 17.675 L 24.144 5.041 L 21.03 5.041 Z M 24.144 3.179 L 26.835 3.179 L 41.331 17.675 L 45.727 17.675 L 28.116 0.065 L 21.03 0.065 L 21.03 3.179 Z M 16.173 17.675 L 19.288 17.675 L 19.288 5.041 L 16.173 5.041 Z M 19.288 3.179 L 19.288 0.065 L 16.173 0.065 L 16.173 3.179 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 34.3 0 C 34.595 0 34.871 0.12 35.065 0.323 C 35.267 0.516 35.387 0.783 35.387 1.087 C 35.387 1.382 35.267 1.659 35.065 1.852 C 34.871 2.046 34.595 2.175 34.3 2.175 C 33.996 2.175 33.728 2.046 33.535 1.852 C 33.332 1.659 33.212 1.382 33.212 1.087 C 33.212 0.783 33.332 0.516 33.535 0.323 C 33.728 0.12 33.996 0 34.3 0 Z M 34.724 1.539 L 34.539 1.539 L 34.355 1.244 C 34.327 1.253 34.309 1.253 34.3 1.253 L 34.161 1.253 L 34.161 1.539 L 34.005 1.539 L 34.005 0.673 L 34.3 0.673 C 34.42 0.673 34.502 0.7 34.567 0.756 C 34.641 0.802 34.668 0.875 34.668 0.968 C 34.668 1.023 34.659 1.069 34.631 1.115 C 34.595 1.152 34.558 1.189 34.502 1.207 Z M 34.161 1.106 L 34.3 1.106 C 34.373 1.106 34.42 1.097 34.456 1.069 C 34.484 1.041 34.502 1.014 34.502 0.968 C 34.505 0.926 34.488 0.885 34.456 0.857 C 34.42 0.829 34.373 0.82 34.3 0.82 L 34.161 0.82 Z M 34.917 0.47 C 34.752 0.309 34.53 0.219 34.3 0.221 C 34.06 0.221 33.839 0.313 33.682 0.47 C 33.526 0.627 33.433 0.848 33.433 1.087 C 33.433 1.327 33.526 1.548 33.682 1.705 C 33.839 1.862 34.06 1.954 34.3 1.954 C 34.539 1.954 34.76 1.862 34.917 1.705 C 35.074 1.548 35.166 1.327 35.166 1.087 C 35.166 0.848 35.074 0.627 34.917 0.47 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:12113657210,withExternalLayout:true,...addPropertyOverrides({pyEs88WEe:{as:\"a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 33\"><g transform=\"translate(0.05 0.737)\" id=\"ss8641788541_1\"><path d=\"M 0.94 21.453 L 0.94 28.715 L 0 28.715 L 0 21.453 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 5.345 22.9 C 6.036 22.9 6.598 23.112 7.031 23.527 C 7.464 23.951 7.676 24.559 7.676 25.352 L 7.676 28.715 L 6.736 28.715 L 6.736 25.481 C 6.736 24.909 6.598 24.476 6.313 24.172 C 6.027 23.868 5.64 23.72 5.142 23.72 C 4.645 23.72 4.248 23.877 3.953 24.19 C 3.659 24.504 3.511 24.955 3.511 25.554 L 3.511 28.715 L 2.562 28.715 L 2.562 23.002 L 3.511 23.002 L 3.511 23.813 C 3.695 23.527 3.953 23.297 4.276 23.14 C 4.598 22.974 4.958 22.9 5.345 22.9 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 10.386 23.785 L 10.386 27.149 C 10.386 27.425 10.45 27.628 10.561 27.738 C 10.681 27.858 10.883 27.913 11.178 27.913 L 11.879 27.913 L 11.879 28.715 L 11.022 28.715 C 10.496 28.715 10.1 28.595 9.833 28.347 C 9.575 28.107 9.437 27.711 9.437 27.149 L 9.437 23.785 L 8.699 23.785 L 8.699 23.002 L 9.437 23.002 L 9.437 21.564 L 10.386 21.564 L 10.386 23.002 L 11.879 23.002 L 11.879 23.785 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 18.237 25.637 C 18.237 25.822 18.228 26.015 18.2 26.209 L 13.639 26.209 C 13.676 26.771 13.869 27.213 14.219 27.526 C 14.57 27.849 14.993 28.006 15.491 28.006 C 15.906 28.006 16.247 27.913 16.523 27.72 C 16.8 27.526 16.993 27.268 17.104 26.955 L 18.117 26.955 C 17.97 27.499 17.666 27.95 17.205 28.291 C 16.744 28.632 16.173 28.807 15.491 28.807 C 14.957 28.807 14.468 28.688 14.044 28.439 C 13.614 28.2 13.261 27.842 13.031 27.407 C 12.791 26.955 12.671 26.439 12.671 25.849 C 12.671 25.259 12.791 24.743 13.021 24.292 C 13.261 23.849 13.593 23.508 14.017 23.269 C 14.45 23.029 14.938 22.909 15.491 22.909 C 16.035 22.909 16.514 23.029 16.929 23.26 C 17.353 23.499 17.675 23.822 17.896 24.237 C 18.127 24.651 18.237 25.121 18.237 25.637 Z M 17.26 25.444 C 17.26 25.075 17.178 24.771 17.021 24.504 C 16.855 24.246 16.643 24.052 16.367 23.914 C 16.09 23.776 15.786 23.711 15.454 23.711 C 14.975 23.711 14.57 23.868 14.229 24.172 C 13.888 24.476 13.694 24.9 13.648 25.444 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 20.44 21.002 L 20.44 28.715 L 19.491 28.715 L 19.491 21.002 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 23.002 21.002 L 23.002 28.715 L 22.052 28.715 L 22.052 21.002 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 25.103 22.071 C 24.928 22.071 24.771 22.016 24.642 21.887 C 24.522 21.758 24.458 21.61 24.458 21.426 C 24.458 21.251 24.522 21.094 24.642 20.965 C 24.771 20.845 24.928 20.781 25.103 20.781 C 25.278 20.781 25.425 20.845 25.545 20.965 C 25.665 21.094 25.729 21.251 25.729 21.426 C 25.729 21.61 25.665 21.758 25.545 21.887 C 25.432 22.01 25.27 22.077 25.103 22.071 Z M 25.564 23.002 L 25.564 28.715 L 24.614 28.715 L 24.614 23.002 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 29.535 22.909 C 30.024 22.909 30.457 23.02 30.835 23.232 C 31.203 23.444 31.48 23.72 31.664 24.043 L 31.664 23.002 L 32.623 23.002 L 32.623 28.835 C 32.623 29.36 32.512 29.821 32.282 30.227 C 32.06 30.641 31.747 30.955 31.332 31.185 C 30.918 31.415 30.438 31.526 29.886 31.526 C 29.139 31.526 28.512 31.351 28.015 31.001 C 27.508 30.641 27.213 30.162 27.13 29.545 L 28.061 29.545 C 28.171 29.895 28.383 30.171 28.715 30.383 C 29.038 30.595 29.434 30.706 29.886 30.706 C 30.411 30.706 30.835 30.54 31.166 30.217 C 31.498 29.886 31.664 29.425 31.664 28.835 L 31.664 27.637 C 31.471 27.978 31.194 28.254 30.826 28.476 C 30.457 28.697 30.024 28.807 29.535 28.807 C 29.029 28.807 28.568 28.678 28.153 28.43 C 27.738 28.181 27.416 27.831 27.176 27.379 C 26.946 26.927 26.826 26.411 26.826 25.84 C 26.826 25.25 26.946 24.743 27.176 24.301 C 27.416 23.859 27.738 23.518 28.153 23.269 C 28.568 23.029 29.029 22.909 29.535 22.909 Z M 31.664 25.849 C 31.664 25.416 31.572 25.038 31.397 24.725 C 31.231 24.402 30.991 24.154 30.697 23.988 C 30.402 23.813 30.079 23.73 29.72 23.73 C 29.369 23.73 29.047 23.813 28.752 23.978 C 28.457 24.144 28.227 24.393 28.052 24.716 C 27.877 25.029 27.794 25.407 27.794 25.84 C 27.794 26.273 27.877 26.651 28.052 26.983 C 28.227 27.305 28.457 27.545 28.752 27.72 C 29.354 28.065 30.094 28.065 30.697 27.72 C 30.991 27.545 31.231 27.305 31.397 26.983 C 31.572 26.651 31.664 26.282 31.664 25.849 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 39.433 25.637 C 39.433 25.822 39.423 26.015 39.405 26.209 L 34.843 26.209 C 34.871 26.771 35.065 27.213 35.415 27.526 C 35.765 27.849 36.198 28.006 36.696 28.006 C 37.101 28.006 37.451 27.913 37.719 27.72 C 37.995 27.526 38.189 27.268 38.299 26.955 L 39.322 26.955 C 39.165 27.499 38.861 27.95 38.401 28.291 C 37.949 28.632 37.378 28.807 36.696 28.807 C 36.152 28.807 35.673 28.688 35.24 28.439 C 34.816 28.199 34.475 27.858 34.235 27.407 C 33.996 26.955 33.867 26.439 33.867 25.849 C 33.867 25.259 33.986 24.743 34.226 24.292 C 34.456 23.849 34.797 23.508 35.221 23.269 C 35.645 23.029 36.143 22.909 36.696 22.909 C 37.239 22.909 37.719 23.029 38.133 23.26 C 38.548 23.499 38.871 23.822 39.101 24.237 C 39.322 24.651 39.433 25.121 39.433 25.637 Z M 38.456 25.444 C 38.456 25.075 38.373 24.771 38.216 24.504 C 38.06 24.246 37.838 24.052 37.562 23.914 C 37.295 23.776 36.991 23.711 36.65 23.711 C 36.17 23.711 35.765 23.868 35.424 24.172 C 35.092 24.476 34.899 24.9 34.853 25.444 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 43.469 22.9 C 44.16 22.9 44.732 23.112 45.155 23.527 C 45.589 23.951 45.801 24.559 45.801 25.352 L 45.801 28.715 L 44.87 28.715 L 44.87 25.481 C 44.87 24.909 44.722 24.476 44.437 24.172 C 44.151 23.868 43.764 23.72 43.276 23.72 C 42.769 23.72 42.372 23.877 42.078 24.19 C 41.783 24.504 41.635 24.955 41.635 25.554 L 41.635 28.715 L 40.686 28.715 L 40.686 23.002 L 41.635 23.002 L 41.635 23.813 C 41.819 23.527 42.078 23.297 42.4 23.14 C 42.723 22.974 43.082 22.9 43.469 22.9 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 48.519 23.785 L 48.519 27.149 C 48.519 27.425 48.574 27.628 48.694 27.738 C 48.814 27.858 49.017 27.913 49.302 27.913 L 50.003 27.913 L 50.003 28.715 L 49.155 28.715 C 48.62 28.715 48.224 28.595 47.966 28.347 C 47.699 28.107 47.57 27.711 47.57 27.149 L 47.57 23.785 L 46.823 23.785 L 46.823 23.002 L 47.57 23.002 L 47.57 21.564 L 48.519 21.564 L 48.519 23.002 L 50.003 23.002 L 50.003 23.785 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 58.232 27.102 L 55.062 27.102 L 54.472 28.715 L 53.477 28.715 L 56.103 21.49 L 57.2 21.49 L 59.817 28.715 L 58.813 28.715 Z M 57.956 26.328 L 56.647 22.661 L 55.329 26.328 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 61.909 21.453 L 61.909 28.715 L 60.96 28.715 L 60.96 21.453 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 21.03 17.675 L 24.144 17.675 L 24.144 5.041 L 21.03 5.041 Z M 24.144 3.179 L 26.835 3.179 L 41.331 17.675 L 45.727 17.675 L 28.116 0.065 L 21.03 0.065 L 21.03 3.179 Z M 16.173 17.675 L 19.288 17.675 L 19.288 5.041 L 16.173 5.041 Z M 19.288 3.179 L 19.288 0.065 L 16.173 0.065 L 16.173 3.179 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 34.3 0 C 34.595 0 34.871 0.12 35.065 0.323 C 35.267 0.516 35.387 0.783 35.387 1.087 C 35.387 1.382 35.267 1.659 35.065 1.852 C 34.871 2.046 34.595 2.175 34.3 2.175 C 33.996 2.175 33.728 2.046 33.535 1.852 C 33.332 1.659 33.212 1.382 33.212 1.087 C 33.212 0.783 33.332 0.516 33.535 0.323 C 33.728 0.12 33.996 0 34.3 0 Z M 34.724 1.539 L 34.539 1.539 L 34.355 1.244 C 34.327 1.253 34.309 1.253 34.3 1.253 L 34.161 1.253 L 34.161 1.539 L 34.005 1.539 L 34.005 0.673 L 34.3 0.673 C 34.42 0.673 34.502 0.7 34.567 0.756 C 34.641 0.802 34.668 0.875 34.668 0.968 C 34.668 1.023 34.659 1.069 34.631 1.115 C 34.595 1.152 34.558 1.189 34.502 1.207 Z M 34.161 1.106 L 34.3 1.106 C 34.373 1.106 34.42 1.097 34.456 1.069 C 34.484 1.041 34.502 1.014 34.502 0.968 C 34.505 0.926 34.488 0.885 34.456 0.857 C 34.42 0.829 34.373 0.82 34.3 0.82 L 34.161 0.82 Z M 34.917 0.47 C 34.752 0.309 34.53 0.219 34.3 0.221 C 34.06 0.221 33.839 0.313 33.682 0.47 C 33.526 0.627 33.433 0.848 33.433 1.087 C 33.433 1.327 33.526 1.548 33.682 1.705 C 33.839 1.862 34.06 1.954 34.3 1.954 C 34.539 1.954 34.76 1.862 34.917 1.705 C 35.074 1.548 35.166 1.327 35.166 1.087 C 35.166 0.848 35.074 0.627 34.917 0.47 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:8641788541}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7bb3ok\",\"data-border\":true,\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TvQHrrotw\",onTap:onTap1qr2vw2,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e65b6aaf-2ee0-4519-9cc5-de41d9cf50ef, rgb(15, 15, 15))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},variants:{pyEs88WEe:{boxShadow:\"0px 0px 2px 0.5px rgba(112, 190, 250, 0)\"}},...addPropertyOverrides({pyEs88WEe:{onTap:onTap1b1sa92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hp2nt7\",\"data-framer-name\":\"Hamburger menu\",layoutDependency:layoutDependency,layoutId:\"xpeQdix27\",transformTemplate:transformTemplate1,...addPropertyOverrides({pyEs88WEe:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vmjttv\",layoutDependency:layoutDependency,layoutId:\"y7njqer8E\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{pyEs88WEe:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pgxzxo\",layoutDependency:layoutDependency,layoutId:\"qRae59AGl\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{pyEs88WEe:{rotate:-45}}})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1srl12z\",\"data-framer-name\":\"Menu open\",layoutDependency:layoutDependency,layoutId:\"H5rhL5_UK\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xLmnG8h_X\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"Home.\"})})})}),className:\"framer-1cl9eoz\",\"data-framer-appear-id\":\"1cl9eoz\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"koOyEUKxq\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{pyEs88WEe:{transformPerspective:undefined}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pyEs88WEe:{animate:animation2,initial:animation3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sy32gm\",layoutDependency:layoutDependency,layoutId:\"LOgtuw7Io\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L3TR3oYQG\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"24-hr-Web Design.\"})})})}),className:\"framer-1gbzj68\",\"data-framer-appear-id\":\"1gbzj68\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"tc1eokKNF\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GJyLrOit7\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"24-hr-Ad-Design.\"})})})}),className:\"framer-ax5vv4\",\"data-framer-appear-id\":\"ax5vv4\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"F7SpwRf73\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{pyEs88WEe:{transformPerspective:undefined}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pyEs88WEe:{animate:animation6,initial:animation3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-56was5\",\"data-framer-appear-id\":\"56was5\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"V86qTZnzn\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.04)\"}}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,className:\"framer-1uqh2ve\",\"data-framer-appear-id\":\"1uqh2ve\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"xaWvGAaZf\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.04)\"}}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ymRPMGqAs\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"AI-Training Course.\"})})})}),className:\"framer-1qr3j1b\",\"data-framer-appear-id\":\"1qr3j1b\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"CjKOSLpX3\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{pyEs88WEe:{transformPerspective:undefined}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pyEs88WEe:{animate:animation10,initial:animation3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation11,className:\"framer-2s5o66\",\"data-framer-appear-id\":\"2s5o66\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"B_sdi2zzl\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.04)\"}}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qGTa3F7KN\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"AI-Careers.\"})})})}),className:\"framer-19euqk\",\"data-framer-appear-id\":\"19euqk\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"tSB22Npcy\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{pyEs88WEe:{transformPerspective:undefined}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pyEs88WEe:{animate:animation13,initial:animation3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation14,className:\"framer-qopol2\",\"data-framer-appear-id\":\"qopol2\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"B5HjvPNUL\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.04)\"}}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation15,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L3TR3oYQG\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"Products\"})}),\".\"]})}),className:\"framer-odrtec\",\"data-framer-appear-id\":\"odrtec\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"v8YhlYCXE\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation16,className:\"framer-1tmsgfk\",\"data-framer-appear-id\":\"1tmsgfk\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"SzP6SeK20\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.04)\"}}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation17,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbG1lciBMaWdodA==\",\"--framer-font-family\":'\"Gilmer Light\", \"Gilmer Light Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uFVxjojgJ\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-se895\",\"data-styles-preset\":\"DRh7fRScm\",children:\"Blogs.\"})})})}),className:\"framer-11a24l\",\"data-framer-appear-id\":\"11a24l\",\"data-highlight\":true,fonts:[\"CUSTOM;Gilmer Light\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"xudJ7LSQ3\",onTap:onTapo3qox5,optimized:true,style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{pyEs88WEe:{transformPerspective:undefined}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pyEs88WEe:{animate:animation18,initial:animation3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-7syevf\",\"data-framer-appear-id\":\"7syevf\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"k57qqSAvn\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.04)\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s3IMA.framer-19jhmus, .framer-s3IMA .framer-19jhmus { display: block; }\",\".framer-s3IMA.framer-1pu6k9e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 15px 20px 15px; position: relative; width: 390px; }\",\".framer-s3IMA .framer-aw8kfs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s3IMA .framer-yc45qx { flex: none; height: 33px; position: relative; width: 63px; }\",\".framer-s3IMA .framer-7bb3ok { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; width: 45px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-s3IMA .framer-hp2nt7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 51%; overflow: hidden; padding: 1px; position: absolute; top: 51%; width: min-content; }\",\".framer-s3IMA .framer-1vmjttv, .framer-s3IMA .framer-1pgxzxo { flex: none; height: 1px; overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s3IMA .framer-1srl12z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 4px 0px 4px; position: relative; width: 100%; }\",\".framer-s3IMA .framer-1cl9eoz, .framer-s3IMA .framer-1gbzj68, .framer-s3IMA .framer-ax5vv4, .framer-s3IMA .framer-1qr3j1b, .framer-s3IMA .framer-19euqk, .framer-s3IMA .framer-odrtec, .framer-s3IMA .framer-11a24l { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-s3IMA .framer-1sy32gm { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s3IMA .framer-56was5, .framer-s3IMA .framer-1uqh2ve, .framer-s3IMA .framer-2s5o66, .framer-s3IMA .framer-qopol2, .framer-s3IMA .framer-1tmsgfk, .framer-s3IMA .framer-7syevf { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s3IMA.framer-1pu6k9e, .framer-s3IMA .framer-hp2nt7, .framer-s3IMA .framer-1srl12z, .framer-s3IMA .framer-1sy32gm { gap: 0px; } .framer-s3IMA.framer-1pu6k9e > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-s3IMA.framer-1pu6k9e > :first-child, .framer-s3IMA .framer-hp2nt7 > :first-child, .framer-s3IMA .framer-1srl12z > :first-child, .framer-s3IMA .framer-1sy32gm > :first-child { margin-top: 0px; } .framer-s3IMA.framer-1pu6k9e > :last-child, .framer-s3IMA .framer-hp2nt7 > :last-child, .framer-s3IMA .framer-1srl12z > :last-child, .framer-s3IMA .framer-1sy32gm > :last-child { margin-bottom: 0px; } .framer-s3IMA .framer-hp2nt7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-s3IMA .framer-1srl12z > *, .framer-s3IMA .framer-1sy32gm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-s3IMA.framer-v-el98u4.framer-1pu6k9e { padding: 20px 15px 34px 15px; }\",\".framer-s3IMA.framer-v-el98u4 .framer-aw8kfs, .framer-s3IMA.framer-v-el98u4 .framer-1cl9eoz, .framer-s3IMA.framer-v-el98u4 .framer-odrtec { order: 0; }\",\".framer-s3IMA.framer-v-el98u4 .framer-yc45qx { text-decoration: none; }\",\".framer-s3IMA.framer-v-el98u4 .framer-hp2nt7 { height: 25px; left: calc(51.11111111111113% - 25px / 2); top: calc(51.11111111111113% - 25px / 2); width: 25px; }\",\".framer-s3IMA.framer-v-el98u4 .framer-1vmjttv, .framer-s3IMA.framer-v-el98u4 .framer-1pgxzxo { bottom: 12px; left: 2px; position: absolute; right: 2px; width: unset; z-index: 1; }\",\".framer-s3IMA.framer-v-el98u4 .framer-1srl12z, .framer-s3IMA.framer-v-el98u4 .framer-1uqh2ve, .framer-s3IMA.framer-v-el98u4 .framer-7syevf { order: 1; }\",\".framer-s3IMA.framer-v-el98u4 .framer-1sy32gm, .framer-s3IMA.framer-v-el98u4 .framer-1gbzj68 { order: 2; }\",\".framer-s3IMA.framer-v-el98u4 .framer-ax5vv4, .framer-s3IMA.framer-v-el98u4 .framer-11a24l { order: 4; }\",\".framer-s3IMA.framer-v-el98u4 .framer-56was5, .framer-s3IMA.framer-v-el98u4 .framer-1tmsgfk { order: 3; }\",\".framer-s3IMA.framer-v-el98u4 .framer-1qr3j1b { order: 6; }\",\".framer-s3IMA.framer-v-el98u4 .framer-2s5o66 { order: 5; }\",\".framer-s3IMA.framer-v-el98u4 .framer-19euqk { order: 8; }\",\".framer-s3IMA.framer-v-el98u4 .framer-qopol2 { order: 7; }\",...sharedStyle.css,'.framer-s3IMA[data-border=\"true\"]::after, .framer-s3IMA [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 85\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pyEs88WEe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerynAf5kHB8=withCSS(Component,css,\"framer-s3IMA\");export default FramerynAf5kHB8;FramerynAf5kHB8.displayName=\"Navigation - Phone\";FramerynAf5kHB8.defaultProps={height:85,width:390};addPropertyControls(FramerynAf5kHB8,{variant:{options:[\"dV3qZ8czh\",\"pyEs88WEe\"],optionTitles:[\"Phone Navigation\",\"Phone Navigation Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerynAf5kHB8,[{explicitInter:true,fonts:[{family:\"Gilmer Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/30pEsl1aWqwmVJHEy5lQosl0us.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerynAf5kHB8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pyEs88WEe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"85\",\"framerIntrinsicWidth\":\"390\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ynAf5kHB8.map"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "i", "Animate", "s", "o", "n", "r", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinks", "handleClick", "e", "href", "a", "p", "l", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "newTab", "smoothScroll", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ikvuJSnHA", "EwkC5P99C", "TlUGkFCQW", "lZJWk0qem", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerE0oqcCSTd", "withCSS", "E0oqcCSTd_default", "addPropertyControls", "ControlType", "addFonts", "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", "hover", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "tGqdD4J1S", "mueVeZldM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1a9k8ox", "args", "onMouseEnter1wmdk69", "scopingClassNames", "cx", "LayoutGroup", "u", "css", "FramerQHvvi_BZK", "withCSS", "QHvvi_BZK_default", "addPropertyControls", "ControlType", "addFonts", "NewMenuButtonFonts", "getFonts", "QHvvi_BZK_default", "NewDropdownItemFonts", "E0oqcCSTd_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "isSet", "value", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "_24HoursWebDesign", "height", "id", "title2", "title3", "title5", "title6", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Ukev1UGMv", "VK0kawfLD", "URJRSd4Di", "Xz_U61J3c", "ZNpbCfTxz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tGqdD4J1Sizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "ref3", "visible1", "router", "useRouter", "visible2", "visible3", "visible4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "l", "ComponentViewportProvider", "u", "QHvvi_BZK_default", "AnimatePresence", "Floating", "MotionDivWithFX", "E0oqcCSTd_default", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramernW5hp9jLd", "withCSS", "nW5hp9jLd_default", "addPropertyControls", "ControlType", "addFonts", "NewMenuButtonFonts", "NewDropdownItemFonts", "NewMenuFonts", "getFonts", "nW5hp9jLd_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", "onMouseEnterh8io4a", "args", "onMouseLeavel3euz6", "onMouseEnterycwttb", "onMouseEnter182xggg", "onMouseEnter1atv8is", "onMouseEnterxb0qxy", "onMouseEnter14rsqr2", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "css", "FramernmWDxib0A", "withCSS", "nmWDxib0A_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transition2", "animation", "animation1", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "animation10", "transition8", "animation11", "transition9", "animation12", "animation13", "transition10", "animation14", "transition11", "animation15", "transition12", "animation16", "transition13", "animation17", "animation18", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1qr2vw2", "args", "onTap1b1sa92", "onTapo3qox5", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "css", "FramerynAf5kHB8", "withCSS", "ynAf5kHB8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
