{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.42/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/XlnQn6loTesRTk88dzY7/5nICozWUuTCK4r2Iz91l/nMKAzaPai.js", "ssg:https://framerusercontent.com/modules/6dCtSITDCWEVzV7fPdab/26KCS6kP92x2wA9JGodk/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/D8sc6Ag7neEi1Gw2wDp8/8oXTAL8yl4GhUuUj3I0Z/qrf8KmoXV.js", "ssg:https://framerusercontent.com/modules/u3yxgkc7KOSgrDi6SOW7/UhSLKmitltju4nHIprYX/TsT1uSLmo.js"],
  "sourcesContent": ["function t(e,i,s){return Math.max(e,Math.min(i,s))}class Animate{advance(e){if(!this.isRunning)return;let i=!1;if(this.lerp)this.value=(s=this.value,o=this.to,n=60*this.lerp,r=e,function(e,i,s){return(1-s)*e+s*i}(s,o,1-Math.exp(-n*r))),Math.round(this.value)===this.to&&(this.value=this.to,i=!0);else{this.currentTime+=e;const s=t(0,this.currentTime/this.duration,1);i=s>=1;const o=i?1:this.easing(s);this.value=this.from+(this.to-this.from)*o}var s,o,n,r;this.onUpdate?.(this.value,i),i&&this.stop()}stop(){this.isRunning=!1}fromTo(e,i,{lerp:s=.1,duration:o=1,easing:n=(e=>e),onStart:r,onUpdate:l}){this.from=this.value=e,this.to=i,this.lerp=s,this.duration=o,this.easing=n,this.currentTime=0,this.isRunning=!0,r?.(),this.onUpdate=l}}class Dimensions{constructor({wrapper:e,content:i,autoResize:s=!0,debounce:o=250}={}){this.wrapper=e,this.content=i,s&&(this.debouncedResize=function(e,i){let s;return function(){let o=arguments,n=this;clearTimeout(s),s=setTimeout((function(){e.apply(n,o)}),i)}}(this.resize,o),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(e,...i){let s=this.events[e]||[];for(let e=0,o=s.length;e<o;e++)s[e](...i)}on(e,i){return this.events[e]?.push(i)||(this.events[e]=[i]),()=>{this.events[e]=this.events[e]?.filter((e=>i!==e))}}off(e,i){this.events[e]=this.events[e]?.filter((e=>i!==e))}destroy(){this.events={}}}const e=100/6;class VirtualScroll{constructor(e,{wheelMultiplier:i=1,touchMultiplier:s=1}){this.element=e,this.wheelMultiplier=i,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(e,i){return this.emitter.on(e,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=e=>{const{clientX:i,clientY:s}=e.targetTouches?e.targetTouches[0]:e;this.touchStart.x=i,this.touchStart.y=s,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:e})};onTouchMove=e=>{const{clientX:i,clientY:s}=e.targetTouches?e.targetTouches[0]:e,o=-(i-this.touchStart.x)*this.touchMultiplier,n=-(s-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=i,this.touchStart.y=s,this.lastDelta={x:o,y:n},this.emitter.emit(\"scroll\",{deltaX:o,deltaY:n,event:e})};onTouchEnd=e=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:e})};onWheel=i=>{let{deltaX:s,deltaY:o,deltaMode:n}=i;s*=1===n?e:2===n?this.windowWidth:1,o*=1===n?e:2===n?this.windowHeight:1,s*=this.wheelMultiplier,o*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:i})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:e=window,content:i=document.documentElement,wheelEventsTarget:s=e,eventsTarget:o=s,smoothWheel:n=!0,syncTouch:r=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:h=35,duration:a,easing:c=(e=>Math.min(1,1.001-Math.pow(2,-10*e))),lerp:d=!a&&.1,infinite:p=!1,orientation:u=\"vertical\",gestureOrientation:m=\"vertical\",touchMultiplier:v=1,wheelMultiplier:g=1,autoResize:S=!0,__experimental__naiveDimensions:w=!1}={}){this.__isSmooth=!1,this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:e,deltaY:i,event:s})=>{if(s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const r=0===e&&0===i,l=\"vertical\"===this.options.gestureOrientation&&0===i||\"horizontal\"===this.options.gestureOrientation&&0===e;if(r||l)return;let h=s.composedPath();if(h=h.slice(0,h.indexOf(this.rootElement)),h.find((e=>{var i,s,r,l,h;return(null===(i=e.hasAttribute)||void 0===i?void 0:i.call(e,\"data-lenis-prevent\"))||o&&(null===(s=e.hasAttribute)||void 0===s?void 0:s.call(e,\"data-lenis-prevent-touch\"))||n&&(null===(r=e.hasAttribute)||void 0===r?void 0:r.call(e,\"data-lenis-prevent-wheel\"))||(null===(l=e.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(h=e.classList)||void 0===h?void 0:h.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(this.isSmooth=this.options.syncTouch&&o||this.options.smoothWheel&&n,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();s.preventDefault();let a=i;\"both\"===this.options.gestureOrientation?a=Math.abs(i)>Math.abs(e)?i:e:\"horizontal\"===this.options.gestureOrientation&&(a=e);const c=o&&this.options.syncTouch,d=o&&\"touchend\"===s.type&&Math.abs(a)>5;d&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:d?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const e=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-e),this.emit()}},window.lenisVersion=\"1.0.42\",e!==document.documentElement&&e!==document.body||(e=window),this.options={wrapper:e,content:i,wheelEventsTarget:s,eventsTarget:o,smoothWheel:n,syncTouch:r,syncTouchLerp:l,touchInertiaMultiplier:h,duration:a,easing:c,lerp:d,infinite:p,gestureOrientation:m,orientation:u,touchMultiplier:v,wheelMultiplier:g,autoResize:S,__experimental__naiveDimensions:w},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:e,content:i,autoResize:S}),this.toggleClassName(\"lenis\",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=r||n,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(o,{touchMultiplier:v,wheelMultiplier:g}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClassName(\"lenis\",!1),this.toggleClassName(\"lenis-smooth\",!1),this.toggleClassName(\"lenis-scrolling\",!1),this.toggleClassName(\"lenis-stopped\",!1),this.toggleClassName(\"lenis-locked\",!1)}on(e,i){return this.emitter.on(e,i)}off(e,i){return this.emitter.off(e,i)}setScroll(e){this.isHorizontal?this.rootElement.scrollLeft=e:this.rootElement.scrollTop=e}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(e){const i=e-(this.time||e);this.time=e,this.animate.advance(.001*i)}scrollTo(e,{offset:i=0,immediate:s=!1,lock:o=!1,duration:n=this.options.duration,easing:r=this.options.easing,lerp:l=!n&&this.options.lerp,onComplete:h,force:a=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(e))e=0;else if([\"bottom\",\"right\",\"end\"].includes(e))e=this.limit;else{let s;if(\"string\"==typeof e?s=document.querySelector(e):(null==e?void 0:e.nodeType)&&(s=e),s){if(this.options.wrapper!==window){const e=this.options.wrapper.getBoundingClientRect();i-=this.isHorizontal?e.left:e.top}const o=s.getBoundingClientRect();e=(this.isHorizontal?o.left:o.top)+this.animatedScroll}}if(\"number\"==typeof e){if(e+=i,e=Math.round(e),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):e=t(0,e,this.limit),s)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));if(!c){if(e===this.targetScroll)return;this.targetScroll=e}this.animate.fromTo(this.animatedScroll,e,{duration:n,easing:r,lerp:l,onStart:()=>{o&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(e,i)=>{this.isScrolling=!0,this.velocity=e-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=e,this.setScroll(this.scroll),c&&(this.targetScroll=e),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.__preventNextScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextScrollEvent})))}})}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(e=this.animatedScroll,i=this.limit,(e%i+i)%i):this.animatedScroll;var e,i}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(e){this.__isSmooth!==e&&(this.__isSmooth=e,this.toggleClassName(\"lenis-smooth\",e))}get isScrolling(){return this.__isScrolling}set isScrolling(e){this.__isScrolling!==e&&(this.__isScrolling=e,this.toggleClassName(\"lenis-scrolling\",e))}get isStopped(){return this.__isStopped}set isStopped(e){this.__isStopped!==e&&(this.__isStopped=e,this.toggleClassName(\"lenis-stopped\",e))}get isLocked(){return this.__isLocked}set isLocked(e){this.__isLocked!==e&&(this.__isLocked=e,this.toggleClassName(\"lenis-locked\",e))}get className(){let e=\"lenis\";return this.isStopped&&(e+=\" lenis-stopped\"),this.isLocked&&(e+=\" lenis-locked\"),this.isScrolling&&(e+=\" lenis-scrolling\"),this.isSmooth&&(e+=\" lenis-smooth\"),e}toggleClassName(e,i){this.rootElement.classList.toggle(e,i),this.emitter.emit(\"className change\",this)}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"@studio-freight/lenis\";import{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){lenis.current.stop();}else{lenis.current.start();}}else{lenis.current.start();}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{lenis.current.raf(time);requestAnimationFrame(raf);};requestAnimationFrame(raf);return()=>{lenis.current.destroy();lenis.current=null;};},[]);return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"style\",{children:`\n      html.lenis {\n        height: auto;\n      }\n\n      .lenis.lenis-smooth {\n        scroll-behavior: auto !important;\n      }\n\n      .lenis.lenis-smooth [data-lenis-prevent] {\n        overscroll-behavior: contain;\n      }\n\n      .lenis.lenis-stopped {\n        overflow: hidden;\n      }\n\n      .lenis.lenis-scrolling iframe {\n        pointer-events: none;\n      }\n    `})});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map", "// Generated by Framer (4c611f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={u9LpB8fZB:{hover:true},uJxRpnZoO:{hover:true},Vggbx1wcn:{hover:true}};const cycleOrder=[\"Vggbx1wcn\",\"u9LpB8fZB\",\"uJxRpnZoO\"];const variantClassNames={u9LpB8fZB:\"framer-v-13my4j5\",uJxRpnZoO:\"framer-v-cubc3l\",Vggbx1wcn:\"framer-v-u6r3wv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 3\":\"uJxRpnZoO\",Normal:\"Vggbx1wcn\",Small:\"u9LpB8fZB\"};const getProps=({callToAction,height,id,link,width,...props})=>{var ref,_variant,ref1;return{...props,lsvDXX3UC:link!==null&&link!==void 0?link:props.lsvDXX3UC,PQe6s_mWx:(ref=callToAction!==null&&callToAction!==void 0?callToAction:props.PQe6s_mWx)!==null&&ref!==void 0?ref:\"Click\",variant:(ref1=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref1!==void 0?ref1:\"Vggbx1wcn\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,PQe6s_mWx,lsvDXX3UC,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Vggbx1wcn\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-h2r4H\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(Link,{href:lsvDXX3UC,children:/*#__PURE__*/ _jsx(motion.a,{...restProps,className:`${cx(\"framer-u6r3wv\",className)} framer-vxaxl4`,\"data-framer-name\":\"Normal\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Vggbx1wcn\",ref:ref,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:\"var(--token-beb971e8-1c6f-4c2a-9b6b-271d425ff974, rgb(35, 44, 102))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{\"u9LpB8fZB-hover\":{backgroundColor:\"rgb(73, 81, 130)\"},\"uJxRpnZoO-hover\":{backgroundColor:\"rgb(73, 81, 130)\"},\"Vggbx1wcn-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(46, 46, 46)) /* {\"name\":\"Dark / 70\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(73, 81, 130)\"}},...addPropertyOverrides({\"u9LpB8fZB-hover\":{\"data-framer-name\":undefined},\"uJxRpnZoO-hover\":{\"data-framer-name\":undefined},\"Vggbx1wcn-hover\":{\"data-border\":true,\"data-framer-name\":undefined},u9LpB8fZB:{\"data-framer-name\":\"Small\"},uJxRpnZoO:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Rokkitt SemiBold\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.75px\",\"--framer-line-height\":\"0.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\",\"--framer-text-transform\":\"uppercase\"},children:\"Click\"})}),className:\"framer-1izsk3o\",fonts:[\"CUSTOM;Rokkitt SemiBold\"],layoutDependency:layoutDependency,layoutId:\"PSMIt1vT1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:PQe6s_mWx,variants:{\"u9LpB8fZB-hover\":{\"--extracted-r6o4lv\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},\"Vggbx1wcn-hover\":{\"--extracted-r6o4lv\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uJxRpnZoO:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Rokkitt SemiBold\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.75px\",\"--framer-line-height\":\"0.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\",\"--framer-text-transform\":\"uppercase\"},children:\"Click\"})})}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-h2r4H [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-h2r4H .framer-vxaxl4 { display: block; }\",\".framer-h2r4H .framer-u6r3wv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 42px; justify-content: center; padding: 17px 36px 17px 36px; position: relative; text-decoration: none; width: min-content; }\",\".framer-h2r4H .framer-1izsk3o { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-h2r4H .framer-v-u6r3wv .framer-u6r3wv, .framer-h2r4H .framer-v-13my4j5 .framer-u6r3wv, .framer-h2r4H .framer-v-cubc3l .framer-u6r3wv { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-h2r4H .framer-u6r3wv { gap: 0px; } .framer-h2r4H .framer-u6r3wv > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-h2r4H .framer-u6r3wv > :first-child { margin-left: 0px; } .framer-h2r4H .framer-u6r3wv > :last-child { margin-right: 0px; } }\",\".framer-h2r4H.framer-v-13my4j5 .framer-u6r3wv { padding: 8px 16px 8px 16px; }\",\".framer-h2r4H.framer-v-cubc3l .framer-u6r3wv { padding: 28px 55px 28px 55px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"u9LpB8fZB\":{\"layout\":[\"auto\",\"fixed\"]},\"uJxRpnZoO\":{\"layout\":[\"auto\",\"fixed\"]},\"rXj2ppSq2\":{\"layout\":[\"auto\",\"fixed\"]},\"vpSo1xl9x\":{\"layout\":[\"auto\",\"fixed\"]},\"l2cVt3RUu\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"PQe6s_mWx\":\"callToAction\",\"lsvDXX3UC\":\"link\"}\n */ const FramernMKAzaPai=withCSS(Component,css,\"framer-h2r4H\");export default FramernMKAzaPai;FramernMKAzaPai.displayName=\"Primary Button\";FramernMKAzaPai.defaultProps={height:42,width:115};addPropertyControls(FramernMKAzaPai,{variant:{options:[\"Vggbx1wcn\",\"u9LpB8fZB\",\"uJxRpnZoO\"],optionTitles:[\"Normal\",\"Small\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},PQe6s_mWx:{defaultValue:\"Click\",displayTextArea:false,title:\"Call to action\",type:ControlType.String},lsvDXX3UC:{title:\"Link\",type:ControlType.Link}});addFonts(FramernMKAzaPai,[{family:\"Rokkitt SemiBold\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/nMKAzaPai:default\",url:\"assets/AJVCz3YDeupiEj90JvSqWnnY3EU.ttf\"},url:new URL(\"assets/AJVCz3YDeupiEj90JvSqWnnY3EU.ttf\",\"https://framerusercontent.com/modules/XlnQn6loTesRTk88dzY7/5nICozWUuTCK4r2Iz91l/nMKAzaPai.js\").href}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernMKAzaPai\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"u9LpB8fZB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"uJxRpnZoO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"rXj2ppSq2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vpSo1xl9x\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"l2cVt3RUu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"42\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"115\",\"framerVariables\":\"{\\\"PQe6s_mWx\\\":\\\"callToAction\\\",\\\"lsvDXX3UC\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nMKAzaPai.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-BSeB0 .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-BSeB0 .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-beb971e8-1c6f-4c2a-9b6b-271d425ff974, #232c66) /* {\"name\":\"Dark Blue\"} */; --framer-link-hover-text-color: var(--token-beb971e8-1c6f-4c2a-9b6b-271d425ff974, #232c66) /* {\"name\":\"Dark Blue\"} */; --framer-link-text-color: var(--token-e6506982-aa1d-4dab-9f54-79513a7b7274, #71a6d9); --framer-link-text-decoration: none; }'];export const className=\"framer-BSeB0\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/6dCtSITDCWEVzV7fPdab/26KCS6kP92x2wA9JGodk/ro7OPezbn.js\";const cycleOrder=[\"w7upZ8SWl\",\"hnZuVR2rL\",\"EKgWmjEYV\"];const serializationHash=\"framer-rYw00\";const variantClassNames={EKgWmjEYV:\"framer-v-xs3pu0\",hnZuVR2rL:\"framer-v-1j1pmuh\",w7upZ8SWl:\"framer-v-9hbxpw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"w7upZ8SWl\",Phone:\"EKgWmjEYV\",Tablet:\"hnZuVR2rL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"w7upZ8SWl\"};};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:\"w7upZ8SWl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9hbxpw\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"w7upZ8SWl\",ref:ref??ref1,style:{...style},...addPropertyOverrides({EKgWmjEYV:{\"data-framer-name\":\"Phone\"},hnZuVR2rL:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sjxkvx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"H_91wZcWh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZpZ3RyZWUgUmVndWxhcg==\",\"--framer-font-family\":'\"Figtree Regular\", \"Figtree Regular Placeholder\", sans-serif',\"--framer-line-height\":\"175%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(64, 64, 64, 0.8))\"},children:\"\\xa9 2025 by Tyler Miller Graphic Design. Created on Framer\"})}),className:\"framer-1q0ec2q\",\"data-framer-name\":\"Paragraph\",fonts:[\"CUSTOM;Figtree Regular\"],layoutDependency:layoutDependency,layoutId:\"e_CJ0ug7U\",style:{\"--extracted-r6o4lv\":\"rgba(64, 64, 64, 0.8)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g8alvr\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"QzaCBRz9N\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"xnlGNRFVh\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"HOME\"})})})}),className:\"framer-12nfi6\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:layoutDependency,layoutId:\"xnlGNRFVh\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RBemUBJMZ\"},motionChild:true,nodeId:\"j2XdWgrVx\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"PORTFOLIO\"})})})}),className:\"framer-13egpux\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:layoutDependency,layoutId:\"j2XdWgrVx\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fyxHY82ZH\"},motionChild:true,nodeId:\"qtMq7sfBR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"ABOUT\"})})})}),className:\"framer-1q0suwd\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:layoutDependency,layoutId:\"qtMq7sfBR\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"U3p1UAzL7\"},motionChild:true,nodeId:\"sjaCJ2lOq\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"CONTACT\"})})})}),className:\"framer-16cl58q\",\"data-framer-name\":\"CONTACT\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:layoutDependency,layoutId:\"sjaCJ2lOq\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rYw00.framer-1v2khed, .framer-rYw00 .framer-1v2khed { display: block; }\",\".framer-rYw00.framer-9hbxpw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-rYw00 .framer-1sjxkvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; overflow: visible; padding: 80px 96px 80px 96px; position: relative; width: 100%; }\",\".framer-rYw00 .framer-1q0ec2q { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rYw00 .framer-g8alvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-rYw00 .framer-12nfi6, .framer-rYw00 .framer-13egpux, .framer-rYw00 .framer-1q0suwd, .framer-rYw00 .framer-16cl58q { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rYw00 .framer-g8alvr { gap: 0px; } .framer-rYw00 .framer-g8alvr > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-rYw00 .framer-g8alvr > :first-child { margin-left: 0px; } .framer-rYw00 .framer-g8alvr > :last-child { margin-right: 0px; } }\",\".framer-rYw00.framer-v-1j1pmuh.framer-9hbxpw { width: 768px; }\",\".framer-rYw00.framer-v-1j1pmuh .framer-1sjxkvx { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; padding: 48px 64px 48px 64px; }\",\".framer-rYw00.framer-v-1j1pmuh .framer-1q0ec2q { order: 1; }\",\".framer-rYw00.framer-v-1j1pmuh .framer-g8alvr { gap: 32px; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rYw00.framer-v-1j1pmuh .framer-1sjxkvx, .framer-rYw00.framer-v-1j1pmuh .framer-g8alvr { gap: 0px; } .framer-rYw00.framer-v-1j1pmuh .framer-1sjxkvx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rYw00.framer-v-1j1pmuh .framer-1sjxkvx > :first-child { margin-top: 0px; } .framer-rYw00.framer-v-1j1pmuh .framer-1sjxkvx > :last-child { margin-bottom: 0px; } .framer-rYw00.framer-v-1j1pmuh .framer-g8alvr > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-rYw00.framer-v-1j1pmuh .framer-g8alvr > :first-child { margin-left: 0px; } .framer-rYw00.framer-v-1j1pmuh .framer-g8alvr > :last-child { margin-right: 0px; } }\",\".framer-rYw00.framer-v-xs3pu0.framer-9hbxpw { align-content: flex-start; align-items: flex-start; gap: 24px; justify-content: flex-start; width: 375px; }\",\".framer-rYw00.framer-v-xs3pu0 .framer-1sjxkvx { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; max-width: unset; order: 0; padding: 40px 32px 40px 32px; }\",\".framer-rYw00.framer-v-xs3pu0 .framer-1q0ec2q { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rYw00.framer-v-xs3pu0 .framer-g8alvr { gap: 24px; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rYw00.framer-v-xs3pu0.framer-9hbxpw, .framer-rYw00.framer-v-xs3pu0 .framer-1sjxkvx, .framer-rYw00.framer-v-xs3pu0 .framer-g8alvr { gap: 0px; } .framer-rYw00.framer-v-xs3pu0.framer-9hbxpw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rYw00.framer-v-xs3pu0.framer-9hbxpw > :first-child, .framer-rYw00.framer-v-xs3pu0 .framer-1sjxkvx > :first-child { margin-top: 0px; } .framer-rYw00.framer-v-xs3pu0.framer-9hbxpw > :last-child, .framer-rYw00.framer-v-xs3pu0 .framer-1sjxkvx > :last-child { margin-bottom: 0px; } .framer-rYw00.framer-v-xs3pu0 .framer-1sjxkvx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rYw00.framer-v-xs3pu0 .framer-g8alvr > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-rYw00.framer-v-xs3pu0 .framer-g8alvr > :first-child { margin-left: 0px; } .framer-rYw00.framer-v-xs3pu0 .framer-g8alvr > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 188\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hnZuVR2rL\":{\"layout\":[\"fixed\",\"auto\"]},\"EKgWmjEYV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerqrf8KmoXV=withCSS(Component,css,\"framer-rYw00\");export default Framerqrf8KmoXV;Framerqrf8KmoXV.displayName=\"Footer\";Framerqrf8KmoXV.defaultProps={height:188,width:1200};addPropertyControls(Framerqrf8KmoXV,{variant:{options:[\"w7upZ8SWl\",\"hnZuVR2rL\",\"EKgWmjEYV\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerqrf8KmoXV,[{explicitInter:true,fonts:[{family:\"Figtree Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/vAx9CeATf3WxKhaOlmvo4dLpk.ttf\"},{family:\"Rokkitt Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/PkVx4MLp7cz3SmR95Sd54eIIE.ttf\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqrf8KmoXV\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"188\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hnZuVR2rL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EKgWmjEYV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qrf8KmoXV.map", "// Generated by Framer (85a580f)\nimport{jsx as L,jsxs as r}from\"react/jsx-runtime\";import{addFonts as e,addPropertyControls as C,ControlType as a,cx as t,getFonts as o,Link as s,resolveLink as i,RichText as l,SVG as n,useActiveVariantCallback as m,useLocaleInfo as d,useRouter as f,useVariantState as p,withCSS as h}from\"framer\";import{LayoutGroup as M,motion as Z,MotionConfigContext as c}from\"framer-motion\";import*as g from\"react\";import*as x from\"https://framerusercontent.com/modules/6dCtSITDCWEVzV7fPdab/26KCS6kP92x2wA9JGodk/ro7OPezbn.js\";import y from\"https://framerusercontent.com/modules/XlnQn6loTesRTk88dzY7/5nICozWUuTCK4r2Iz91l/nMKAzaPai.js\";let v=o(y),b=[\"X5BoG6Uce\",\"MYZHtk_Yv\",\"zFhUYG16G\",\"lxHpHdsVO\"],w=\"framer-82yss\",u={lxHpHdsVO:\"framer-v-fm6rdd\",MYZHtk_Yv:\"framer-v-7irk5y\",X5BoG6Uce:\"framer-v-1bohwt6\",zFhUYG16G:\"framer-v-1d6vfsw\"};function k(L,...r){let e={};return null==r||r.forEach(r=>r&&Object.assign(e,L[r])),e;}let H={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zFhUYG16G:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},O=({value:r,children:e})=>{let C=g.useContext(c),a=null!=r?r:C.transition,t=g.useMemo(()=>({...C,transition:a}),[JSON.stringify(a)]);return /*#__PURE__*/L(c.Provider,{value:t,children:e});},G={\"Phone Open\":\"lxHpHdsVO\",Desktop:\"X5BoG6Uce\",Phone:\"zFhUYG16G\",Tablet:\"MYZHtk_Yv\"},T=({height:L,id:r,width:e,...C})=>{var a,t;return{...C,variant:null!==(t=null!==(a=G[C.variant])&&void 0!==a?a:C.variant)&&void 0!==t?t:\"X5BoG6Uce\"};},I=(L,r)=>r.join(\"-\")+L.layoutDependency,N=/*#__PURE__*/g.forwardRef(function(e,C){let{activeLocale:a}=d(),{style:o,className:h,layoutId:c,variant:v,...w}=T(e),{baseVariant:G,classNames:N,gestureVariant:R,setGestureState:B,setVariant:U,transition:V,variants:Y}=p({cycleOrder:b,defaultVariant:\"X5BoG6Uce\",transitions:H,variant:v,variantClassNames:u}),P=I(e,Y),{activeVariantCallback:z,delay:F}=m(G),q=z(async(...L)=>{U(\"lxHpHdsVO\");}),E=z(async(...L)=>{U(\"zFhUYG16G\");}),j=g.useRef(null),A=f(),Q=g.useId(),D=[x.className];return /*#__PURE__*/L(M,{id:null!=c?c:Q,children:/*#__PURE__*/L(Z.div,{initial:v,animate:Y,onHoverStart:()=>B({isHovered:!0}),onHoverEnd:()=>B({isHovered:!1}),onTapStart:()=>B({isPressed:!0}),onTap:()=>B({isPressed:!1}),onTapCancel:()=>B({isPressed:!1}),className:t(\"framer-82yss\",...D,N),style:{display:\"contents\"},children:/*#__PURE__*/L(O,{value:V,children:/*#__PURE__*/r(Z.div,{...w,className:t(\"framer-1bohwt6\",h),\"data-framer-name\":\"Desktop\",layoutDependency:P,layoutId:\"X5BoG6Uce\",ref:null!=C?C:j,style:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 12px 0px rgba(0, 0, 0, 0.04)\",...o},...k({lxHpHdsVO:{\"data-framer-name\":\"Phone Open\"},MYZHtk_Yv:{\"data-framer-name\":\"Tablet\"},zFhUYG16G:{\"data-framer-name\":\"Phone\"}},G,R),children:[/*#__PURE__*/r(Z.div,{className:\"framer-gos7tq\",\"data-framer-name\":\"Title and Icon\",layoutDependency:P,layoutId:\"m1_7bosVi\",children:[/*#__PURE__*/L(s,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/L(n,{as:\"a\",className:\"framer-18d3b0w framer-7ymlg1\",\"data-framer-name\":\"Logo\",description:\"Tyler Miller Logo\",layout:\"position\",layoutDependency:P,layoutId:\"fmxcefQsP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 295 54\"><path d=\"M 41.393 52.722 L 41.393 45.417 L 33.772 45.417 L 33.772 18.653 C 33.772 18.653 41.291 12.206 46.086 12.43 C 46.086 12.43 48.782 12.188 50.228 14.445 C 50.228 14.445 51.487 16.087 51.487 21.078 L 51.487 52.722 Z M 68.231 52.721 L 68.231 45.501 L 60.61 45.501 L 60.61 18.979 C 60.61 18.979 68.13 12.598 72.925 12.822 C 72.925 12.822 75.62 12.579 77.066 14.818 C 77.066 14.818 78.326 16.442 78.326 21.386 L 78.326 52.72 L 68.23 52.72 Z\" fill=\"rgb(40,50,113)\"></path><path d=\"M 84.79 10.098 C 84.263 9.458 83.669 8.876 83.018 8.363 C 77.458 4.043 69.658 7.523 64.546 10.853 C 64.546 10.853 63.045 11.749 60.619 13.531 C 60.498 11.553 58.511 9.267 56.999 8.223 C 55.162 6.953 52.988 6.32 50.768 6.208 C 46.308 5.974 41.803 7.588 38.006 9.818 C 36.019 11.012 33.696 12.775 33.696 12.775 L 33.696 7.915 L 24.646 7.915 L 24.646 52.88 L 10.01 52.88 L 10.01 45.613 L 15.598 45.613 L 15.598 7.915 L 6.344 7.915 L 6.344 20.295 L 0 20.295 L 0 0.76 L 84.79 0.76\" fill=\"rgb(40,50,113)\"></path><path d=\"M 108.907 25.994 L 108.907 21.675 L 105.213 21.675 L 105.213 35.127 L 107.545 35.127 L 107.545 37.367 L 100.222 37.367 L 100.222 35.127 L 102.508 35.127 L 102.508 21.675 L 98.832 21.675 L 98.832 25.995 L 96.622 25.995 L 96.622 19.445 L 111.128 19.445 L 111.128 25.995 L 108.907 25.995 Z M 119.206 21.675 L 123.133 27.207 L 126.762 21.675 L 124.523 21.675 L 124.523 19.436 L 131.679 19.436 L 131.679 21.676 L 129.337 21.676 L 124.318 29.204 L 124.318 35.127 L 126.781 35.127 L 126.781 37.367 L 119.206 37.367 L 119.206 35.127 L 121.622 35.127 L 121.622 29.204 L 116.286 21.675 L 114.094 21.675 L 114.094 19.436 L 121.454 19.436 L 121.454 21.676 L 119.206 21.676 Z M 139.468 21.675 L 139.468 35.127 L 145.355 35.127 L 145.355 29.577 L 147.575 29.577 L 147.575 37.367 L 134.449 37.367 L 134.449 35.127 L 136.753 35.127 L 136.753 21.675 L 134.449 21.675 L 134.449 19.436 L 141.772 19.436 L 141.772 21.676 L 139.468 21.676 Z M 163.183 24.68 L 163.183 21.685 L 155.515 21.685 L 155.515 27.021 L 162.185 27.021 L 162.185 29.26 L 155.515 29.26 L 155.515 35.137 L 163.183 35.137 L 163.183 31.862 L 165.394 31.862 L 165.394 37.366 L 150.496 37.366 L 150.496 35.127 L 152.8 35.127 L 152.8 21.675 L 150.496 21.675 L 150.496 19.436 L 165.394 19.436 L 165.394 24.67 L 163.183 24.67 Z M 182.316 24.138 C 182.316 25.285 181.99 26.256 181.346 27.03 C 180.693 27.814 179.788 28.345 178.622 28.644 L 181.785 35.127 L 183.977 35.127 L 183.977 37.367 L 179.956 37.367 L 175.991 29.017 L 173.482 29.017 L 173.482 35.127 L 175.768 35.127 L 175.768 37.367 L 168.342 37.367 L 168.342 35.127 L 170.767 35.127 L 170.767 21.675 L 168.342 21.675 L 168.342 19.436 L 175.786 19.436 C 178.09 19.436 179.76 19.809 180.777 20.566 C 181.803 21.321 182.307 22.506 182.307 24.129 Z M 179.518 24.091 C 179.518 23.261 179.257 22.645 178.734 22.263 C 178.212 21.871 177.381 21.684 176.253 21.684 L 173.482 21.684 L 173.482 26.778 L 176.085 26.778 C 177.251 26.778 178.118 26.573 178.678 26.172 C 179.238 25.771 179.527 25.08 179.527 24.101 Z M 209.65 19.446 L 215.854 19.446 L 215.854 21.684 L 213.69 21.684 L 213.69 35.137 L 215.854 35.137 L 215.854 37.376 L 209.109 37.376 L 209.109 35.136 L 211.227 35.136 L 211.227 21.685 L 205.07 37.563 L 204.538 37.563 L 198.428 21.686 L 198.428 35.138 L 200.405 35.138 L 200.405 37.377 L 194.043 37.377 L 194.043 35.137 L 196.217 35.137 L 196.217 21.685 L 194.043 21.685 L 194.043 19.447 L 200.191 19.447 L 204.911 31.723 L 209.66 19.447 L 209.65 19.447 Z M 223.577 21.675 L 223.577 35.127 L 225.527 35.127 L 225.527 37.367 L 218.932 37.367 L 218.932 35.127 L 220.872 35.127 L 220.872 21.675 L 218.932 21.675 L 218.932 19.436 L 225.527 19.436 L 225.527 21.676 L 223.577 21.676 Z M 233.456 21.675 L 233.456 35.127 L 239.343 35.127 L 239.343 29.577 L 241.563 29.577 L 241.563 37.367 L 228.438 37.367 L 228.438 35.127 L 230.742 35.127 L 230.742 21.675 L 228.438 21.675 L 228.438 19.436 L 235.761 19.436 L 235.761 21.676 L 233.456 21.676 Z M 249.494 21.675 L 249.494 35.127 L 255.38 35.127 L 255.38 29.577 L 257.6 29.577 L 257.6 37.367 L 244.475 37.367 L 244.475 35.127 L 246.779 35.127 L 246.779 21.675 L 244.475 21.675 L 244.475 19.436 L 251.798 19.436 L 251.798 21.676 L 249.494 21.676 Z M 273.209 24.68 L 273.209 21.685 L 265.54 21.685 L 265.54 27.021 L 272.211 27.021 L 272.211 29.26 L 265.54 29.26 L 265.54 35.137 L 273.209 35.137 L 273.209 31.862 L 275.42 31.862 L 275.42 37.366 L 260.521 37.366 L 260.521 35.127 L 262.826 35.127 L 262.826 21.675 L 260.521 21.675 L 260.521 19.436 L 275.42 19.436 L 275.42 24.67 L 273.209 24.67 Z M 292.342 24.138 C 292.342 25.285 292.015 26.256 291.372 27.03 C 290.719 27.814 289.814 28.345 288.648 28.644 L 291.81 35.127 L 294.002 35.127 L 294.002 37.367 L 289.982 37.367 L 286.017 29.017 L 283.507 29.017 L 283.507 35.127 L 285.793 35.127 L 285.793 37.367 L 278.367 37.367 L 278.367 35.127 L 280.793 35.127 L 280.793 21.675 L 278.367 21.675 L 278.367 19.436 L 285.812 19.436 C 288.116 19.436 289.786 19.809 290.803 20.566 C 291.829 21.321 292.332 22.506 292.332 24.129 Z M 289.543 24.091 C 289.543 23.261 289.282 22.645 288.76 22.263 C 288.237 21.871 287.407 21.684 286.278 21.684 L 283.507 21.684 L 283.507 26.778 L 286.11 26.778 C 287.276 26.778 288.144 26.573 288.704 26.172 C 289.263 25.771 289.553 25.08 289.553 24.101 Z\" fill=\"rgb(40,50,113)\" stroke-width=\"0.504\" stroke=\"rgb(40,50,113)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 100.49 53.01 C 99.725 53.01 99.053 52.843 98.456 52.507 C 97.874 52.185 97.393 51.707 97.066 51.127 C 96.73 50.538 96.562 49.867 96.562 49.12 C 96.562 48.374 96.73 47.675 97.066 47.087 C 97.393 46.507 97.874 46.029 98.456 45.707 C 99.044 45.37 99.725 45.202 100.49 45.202 C 101.301 45.199 102.09 45.461 102.738 45.948 C 103.046 46.182 103.307 46.453 103.494 46.751 L 102.645 47.311 C 102.499 47.08 102.308 46.881 102.085 46.723 C 101.854 46.553 101.6 46.418 101.33 46.322 C 101.06 46.226 100.776 46.176 100.49 46.172 C 99.94 46.172 99.445 46.294 99.016 46.546 C 98.586 46.798 98.251 47.143 98.008 47.581 C 97.766 48.02 97.645 48.533 97.645 49.111 C 97.645 49.69 97.765 50.184 98.009 50.623 C 98.251 51.061 98.587 51.406 99.016 51.658 C 99.446 51.91 99.949 52.031 100.509 52.031 C 100.966 52.031 101.367 51.938 101.721 51.751 C 102.068 51.572 102.358 51.301 102.561 50.968 C 102.772 50.613 102.878 50.205 102.869 49.792 L 103.895 49.699 C 103.895 50.371 103.746 50.949 103.457 51.443 C 103.171 51.933 102.754 52.333 102.253 52.6 C 101.74 52.87 101.152 53.01 100.49 53.01 Z M 101.04 49.867 L 101.04 48.981 L 103.895 48.981 L 103.895 49.755 L 103.354 49.867 Z M 106.32 52.88 L 106.32 45.342 L 107.374 45.342 L 107.374 52.88 Z M 107.3 49.997 L 107.3 49.027 L 108.96 49.027 C 109.222 49.027 109.455 48.971 109.66 48.85 C 110.086 48.608 110.346 48.154 110.341 47.665 C 110.341 47.265 110.201 46.938 109.921 46.685 C 109.641 46.434 109.278 46.313 108.83 46.313 L 107.3 46.313 L 107.3 45.343 L 108.858 45.343 C 109.362 45.323 109.8 45.417 110.192 45.623 C 110.584 45.828 110.882 46.098 111.097 46.453 C 111.321 46.807 111.423 47.208 111.423 47.665 C 111.423 48.122 111.311 48.524 111.069 48.869 C 110.832 49.224 110.503 49.508 110.117 49.689 C 109.692 49.892 109.226 49.995 108.755 49.989 L 107.291 49.989 L 107.3 49.998 Z M 110.528 52.88 L 108.736 49.802 L 109.576 49.242 L 111.722 52.88 Z M 113.336 52.88 L 116.377 45.342 L 117.45 45.342 L 114.465 52.88 Z M 114.773 50.865 L 114.773 49.914 L 119.111 49.914 L 119.111 50.865 Z M 119.418 52.88 L 116.433 45.342 L 117.506 45.342 L 120.547 52.88 Z M 122.414 52.88 L 122.414 45.342 L 123.468 45.342 L 123.468 52.88 Z M 123.394 50.184 L 123.394 49.204 L 125.147 49.204 C 125.53 49.204 125.838 49.074 126.08 48.804 C 126.323 48.533 126.444 48.188 126.444 47.768 C 126.459 47.242 126.178 46.751 125.716 46.499 C 125.476 46.371 125.205 46.31 124.933 46.322 L 123.384 46.322 L 123.384 45.352 L 124.942 45.352 C 125.405 45.335 125.864 45.438 126.276 45.65 C 126.659 45.856 126.967 46.145 127.181 46.509 C 127.405 46.873 127.508 47.292 127.508 47.777 C 127.508 48.263 127.405 48.664 127.209 49.027 C 127.016 49.384 126.729 49.681 126.379 49.886 C 126.006 50.095 125.584 50.201 125.157 50.193 L 123.394 50.193 Z M 129.707 52.88 L 129.707 45.342 L 130.761 45.342 L 130.761 52.88 Z M 130.593 49.485 L 130.593 48.515 L 135.164 48.515 L 135.164 49.485 Z M 134.829 52.88 L 134.829 45.342 L 135.883 45.342 L 135.883 52.88 Z M 138.822 52.88 L 138.822 45.342 L 139.876 45.342 L 139.876 52.88 Z M 146.09 53.01 C 145.372 53.01 144.728 52.843 144.168 52.507 C 143.611 52.176 143.157 51.699 142.853 51.127 C 142.536 50.539 142.377 49.867 142.377 49.102 C 142.377 48.337 142.536 47.665 142.853 47.078 C 143.153 46.506 143.605 46.028 144.159 45.697 C 144.709 45.361 145.344 45.193 146.062 45.193 C 146.528 45.193 146.976 45.277 147.396 45.445 C 147.816 45.613 148.198 45.846 148.534 46.145 C 148.87 46.443 149.122 46.788 149.308 47.18 L 148.357 47.61 C 148.223 47.32 148.032 47.06 147.797 46.844 C 147.562 46.63 147.29 46.459 146.995 46.341 C 146.699 46.218 146.382 46.155 146.062 46.154 C 145.558 46.154 145.11 46.275 144.719 46.527 C 144.323 46.783 144.004 47.141 143.795 47.563 C 143.571 48.001 143.459 48.505 143.459 49.083 C 143.459 49.662 143.571 50.165 143.795 50.613 C 144.019 51.061 144.336 51.406 144.728 51.649 C 145.12 51.891 145.577 52.022 146.09 52.022 C 146.416 52.022 146.734 51.957 147.023 51.826 C 147.321 51.696 147.582 51.509 147.816 51.276 C 148.049 51.042 148.235 50.772 148.385 50.473 L 149.336 50.893 C 149.156 51.304 148.896 51.675 148.571 51.984 C 148.245 52.302 147.862 52.544 147.433 52.721 C 147.004 52.897 146.545 52.986 146.081 52.983 L 146.09 53.011 Z M 155.447 52.88 L 155.447 45.342 L 156.501 45.342 L 156.501 52.88 Z M 156.212 46.331 L 156.212 45.342 L 157.77 45.342 L 157.77 46.332 L 156.212 46.332 Z M 156.212 52.88 L 156.212 51.891 L 157.77 51.891 L 157.77 52.88 Z M 157.77 52.88 L 157.77 51.891 C 158.134 51.891 158.479 51.826 158.796 51.686 C 159.114 51.546 159.393 51.35 159.627 51.098 C 159.87 50.843 160.06 50.542 160.186 50.212 C 160.317 49.876 160.382 49.512 160.382 49.12 C 160.382 48.729 160.317 48.374 160.186 48.029 C 159.936 47.373 159.436 46.843 158.796 46.555 C 158.473 46.412 158.123 46.339 157.77 46.34 L 157.77 45.352 C 158.488 45.352 159.123 45.51 159.683 45.827 C 160.234 46.141 160.687 46.603 160.989 47.161 C 161.306 47.731 161.464 48.383 161.464 49.121 C 161.464 49.857 161.306 50.501 160.989 51.071 C 160.681 51.625 160.23 52.085 159.683 52.404 C 159.132 52.731 158.488 52.889 157.77 52.889 Z M 163.936 52.88 L 163.936 45.342 L 164.99 45.342 L 164.99 52.88 Z M 164.822 46.312 L 164.822 45.342 L 168.469 45.342 L 168.469 46.312 Z M 164.822 49.503 L 164.822 48.551 L 168.124 48.551 L 168.124 49.503 Z M 164.822 52.889 L 164.822 51.919 L 168.497 51.919 L 168.497 52.889 Z M 173.498 53.01 C 173.097 53.01 172.733 52.964 172.407 52.87 C 172.106 52.787 171.82 52.658 171.558 52.488 C 171.332 52.341 171.13 52.158 170.961 51.948 C 170.809 51.76 170.695 51.544 170.625 51.313 L 171.651 50.977 C 171.763 51.276 171.959 51.527 172.267 51.742 C 172.565 51.957 172.939 52.069 173.377 52.078 C 173.909 52.078 174.329 51.975 174.627 51.761 C 174.935 51.546 175.084 51.266 175.084 50.911 C 175.091 50.597 174.94 50.3 174.683 50.119 C 174.422 49.914 174.067 49.755 173.629 49.652 L 172.761 49.428 C 172.429 49.343 172.111 49.208 171.819 49.028 C 171.549 48.862 171.32 48.639 171.147 48.374 C 170.98 48.114 170.896 47.787 170.896 47.414 C 170.896 46.724 171.119 46.182 171.567 45.8 C 172.015 45.417 172.668 45.221 173.508 45.221 C 173.993 45.221 174.422 45.296 174.776 45.454 C 175.131 45.613 175.429 45.809 175.663 46.061 C 175.896 46.313 176.064 46.593 176.166 46.891 L 175.14 47.236 C 175.023 46.913 174.804 46.638 174.515 46.453 C 174.217 46.257 173.862 46.154 173.424 46.154 C 172.967 46.154 172.612 46.266 172.351 46.481 C 172.09 46.695 171.959 46.994 171.959 47.367 C 171.959 47.684 172.062 47.927 172.267 48.094 C 172.472 48.262 172.743 48.393 173.088 48.477 L 173.965 48.692 C 174.664 48.859 175.215 49.149 175.597 49.55 C 175.98 49.95 176.176 50.38 176.176 50.856 C 176.176 51.266 176.073 51.63 175.868 51.956 C 175.649 52.298 175.334 52.567 174.963 52.731 C 174.562 52.917 174.077 53.021 173.489 53.021 L 173.498 53.011 Z M 178.723 52.88 L 178.723 45.342 L 179.777 45.342 L 179.777 52.88 Z M 186.185 53.01 C 185.42 53.01 184.749 52.843 184.152 52.507 C 183.57 52.185 183.088 51.707 182.762 51.127 C 182.426 50.538 182.258 49.867 182.258 49.12 C 182.258 48.374 182.426 47.675 182.762 47.087 C 183.088 46.507 183.57 46.029 184.152 45.707 C 184.739 45.37 185.42 45.202 186.185 45.202 C 186.996 45.198 187.786 45.46 188.434 45.949 C 188.741 46.182 189.003 46.453 189.189 46.751 L 188.34 47.311 C 188.194 47.08 188.004 46.881 187.781 46.723 C 187.55 46.553 187.295 46.418 187.025 46.322 C 186.755 46.226 186.471 46.176 186.185 46.172 C 185.635 46.172 185.14 46.294 184.711 46.546 C 184.287 46.792 183.939 47.15 183.704 47.581 C 183.461 48.02 183.34 48.533 183.34 49.111 C 183.34 49.69 183.461 50.184 183.704 50.623 C 183.946 51.061 184.282 51.406 184.711 51.658 C 185.14 51.91 185.644 52.031 186.204 52.031 C 186.625 52.039 187.042 51.943 187.417 51.751 C 187.771 51.565 188.051 51.304 188.256 50.968 C 188.462 50.632 188.564 50.24 188.564 49.792 L 189.59 49.699 C 189.59 50.371 189.441 50.949 189.152 51.443 C 188.866 51.933 188.449 52.334 187.948 52.6 C 187.435 52.87 186.848 53.01 186.185 53.01 Z M 186.736 49.867 L 186.736 48.981 L 189.59 48.981 L 189.59 49.755 L 189.049 49.867 Z M 192.016 52.88 L 192.016 45.342 L 193.107 45.342 L 193.07 46.228 L 193.07 52.889 L 192.016 52.889 L 192.016 52.879 Z M 197.37 52.88 L 192.268 45.93 L 193.107 45.333 L 198.21 52.273 Z M 197.37 52.88 L 197.37 45.342 L 198.434 45.342 L 198.434 52.88 Z M 201.383 52.88 L 201.383 45.342 L 202.437 45.342 L 202.437 52.88 Z M 202.269 46.313 L 202.269 45.343 L 205.917 45.343 L 205.917 46.313 Z M 202.269 49.503 L 202.269 48.552 L 205.571 48.552 L 205.571 49.503 Z M 202.269 52.89 L 202.269 51.92 L 205.945 51.92 L 205.945 52.89 Z M 208.555 52.88 L 208.555 45.342 L 209.609 45.342 L 209.609 52.88 Z M 209.534 49.997 L 209.534 49.027 L 211.195 49.027 C 211.683 49.036 212.138 48.783 212.389 48.365 C 212.51 48.16 212.575 47.926 212.575 47.665 C 212.575 47.265 212.436 46.938 212.156 46.685 C 211.876 46.434 211.512 46.313 211.064 46.313 L 209.534 46.313 L 209.534 45.343 L 211.092 45.343 C 211.596 45.323 212.034 45.417 212.426 45.623 C 212.818 45.828 213.117 46.098 213.331 46.453 C 213.555 46.807 213.658 47.208 213.658 47.665 C 213.658 48.122 213.546 48.524 213.303 48.869 C 213.07 49.223 212.753 49.494 212.352 49.689 C 211.927 49.892 211.461 49.994 210.99 49.989 L 209.525 49.989 L 209.534 49.998 Z M 212.762 52.88 L 210.971 49.802 L 211.81 49.242 L 213.956 52.88 Z\" fill=\"rgb(40,50,113)\"></path></svg>',svgContentId:1225728095,tabIndex:0,title:\"Tyler Miller Graphic Designer Logo\",withExternalLayout:!0,...k({lxHpHdsVO:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 273 50\"><path d=\"M 38.306 48.817 L 38.306 42.053 L 31.253 42.053 L 31.253 17.271 C 31.253 17.271 38.212 11.302 42.649 11.509 C 42.649 11.509 45.144 11.285 46.482 13.375 C 46.482 13.375 47.647 14.895 47.647 19.517 L 47.647 48.817 Z M 63.143 48.816 L 63.143 42.131 L 56.09 42.131 L 56.09 17.573 C 56.09 17.573 63.049 11.665 67.487 11.872 C 67.487 11.872 69.981 11.647 71.319 13.72 C 71.319 13.72 72.485 15.224 72.485 19.802 L 72.485 48.815 L 63.142 48.815 Z\" fill=\"rgb(40,50,113)\"></path><path d=\"M 78.467 9.35 C 77.979 8.757 77.429 8.219 76.827 7.744 C 71.681 3.744 64.463 6.966 59.732 10.049 C 59.732 10.049 58.343 10.879 56.098 12.529 C 55.986 10.697 54.147 8.581 52.748 7.614 C 51.048 6.438 49.036 5.852 46.982 5.748 C 42.855 5.531 38.685 7.026 35.172 9.091 C 33.333 10.196 31.183 11.829 31.183 11.829 L 31.183 7.329 L 22.808 7.329 L 22.808 48.963 L 9.263 48.963 L 9.263 42.234 L 14.435 42.234 L 14.435 7.329 L 5.871 7.329 L 5.871 18.792 L 0 18.792 L 0 0.704 L 78.467 0.704\" fill=\"rgb(40,50,113)\"></path><path d=\"M 100.785 24.069 L 100.785 20.069 L 97.367 20.069 L 97.367 32.525 L 99.525 32.525 L 99.525 34.599 L 92.748 34.599 L 92.748 32.525 L 94.863 32.525 L 94.863 20.069 L 91.461 20.069 L 91.461 24.069 L 89.416 24.069 L 89.416 18.005 L 102.84 18.005 L 102.84 24.069 L 100.785 24.069 Z M 110.316 20.069 L 113.95 25.192 L 117.309 20.069 L 115.237 20.069 L 115.237 17.996 L 121.859 17.996 L 121.859 20.07 L 119.692 20.07 L 115.047 27.041 L 115.047 32.525 L 117.326 32.525 L 117.326 34.599 L 110.316 34.599 L 110.316 32.525 L 112.552 32.525 L 112.552 27.041 L 107.614 20.069 L 105.585 20.069 L 105.585 17.996 L 112.396 17.996 L 112.396 20.07 L 110.316 20.07 Z M 129.067 20.069 L 129.067 32.525 L 134.515 32.525 L 134.515 27.386 L 136.569 27.386 L 136.569 34.599 L 124.422 34.599 L 124.422 32.525 L 126.554 32.525 L 126.554 20.069 L 124.422 20.069 L 124.422 17.996 L 131.199 17.996 L 131.199 20.07 L 129.067 20.07 Z M 151.013 22.852 L 151.013 20.079 L 143.917 20.079 L 143.917 25.019 L 150.09 25.019 L 150.09 27.093 L 143.917 27.093 L 143.917 32.534 L 151.013 32.534 L 151.013 29.502 L 153.06 29.502 L 153.06 34.598 L 139.273 34.598 L 139.273 32.525 L 141.405 32.525 L 141.405 20.069 L 139.273 20.069 L 139.273 17.996 L 153.06 17.996 L 153.06 22.843 L 151.013 22.843 Z M 168.72 22.35 C 168.72 23.412 168.418 24.311 167.822 25.028 C 167.218 25.754 166.38 26.245 165.301 26.522 L 168.228 32.525 L 170.257 32.525 L 170.257 34.599 L 166.536 34.599 L 162.866 26.868 L 160.544 26.868 L 160.544 32.525 L 162.66 32.525 L 162.66 34.599 L 155.788 34.599 L 155.788 32.525 L 158.032 32.525 L 158.032 20.069 L 155.788 20.069 L 155.788 17.996 L 162.677 17.996 C 164.809 17.996 166.354 18.342 167.295 19.043 C 168.245 19.742 168.711 20.839 168.711 22.342 Z M 166.13 22.306 C 166.13 21.538 165.889 20.968 165.405 20.614 C 164.922 20.251 164.153 20.078 163.109 20.078 L 160.544 20.078 L 160.544 24.794 L 162.953 24.794 C 164.032 24.794 164.835 24.605 165.353 24.233 C 165.871 23.862 166.139 23.222 166.139 22.316 Z M 194.015 18.006 L 199.756 18.006 L 199.756 20.078 L 197.754 20.078 L 197.754 32.534 L 199.756 32.534 L 199.756 34.607 L 193.514 34.607 L 193.514 32.533 L 195.474 32.533 L 195.474 20.079 L 189.777 34.781 L 189.284 34.781 L 183.63 20.08 L 183.63 32.535 L 185.46 32.535 L 185.46 34.608 L 179.572 34.608 L 179.572 32.534 L 181.584 32.534 L 181.584 20.079 L 179.572 20.079 L 179.572 18.006 L 185.261 18.006 L 189.629 29.373 L 194.024 18.006 L 194.015 18.006 Z M 206.903 20.069 L 206.903 32.525 L 208.708 32.525 L 208.708 34.599 L 202.605 34.599 L 202.605 32.525 L 204.4 32.525 L 204.4 20.069 L 202.605 20.069 L 202.605 17.996 L 208.708 17.996 L 208.708 20.07 L 206.903 20.07 Z M 216.046 20.069 L 216.046 32.525 L 221.494 32.525 L 221.494 27.386 L 223.548 27.386 L 223.548 34.599 L 211.402 34.599 L 211.402 32.525 L 213.534 32.525 L 213.534 20.069 L 211.402 20.069 L 211.402 17.996 L 218.179 17.996 L 218.179 20.07 L 216.046 20.07 Z M 230.888 20.069 L 230.888 32.525 L 236.335 32.525 L 236.335 27.386 L 238.389 27.386 L 238.389 34.599 L 226.243 34.599 L 226.243 32.525 L 228.375 32.525 L 228.375 20.069 L 226.243 20.069 L 226.243 17.996 L 233.02 17.996 L 233.02 20.07 L 230.888 20.07 Z M 252.834 22.852 L 252.834 20.079 L 245.737 20.079 L 245.737 25.019 L 251.911 25.019 L 251.911 27.093 L 245.737 27.093 L 245.737 32.534 L 252.834 32.534 L 252.834 29.502 L 254.88 29.502 L 254.88 34.598 L 241.092 34.598 L 241.092 32.525 L 243.225 32.525 L 243.225 20.069 L 241.092 20.069 L 241.092 17.996 L 254.88 17.996 L 254.88 22.843 L 252.834 22.843 Z M 270.54 22.35 C 270.54 23.412 270.238 24.311 269.643 25.028 C 269.038 25.754 268.201 26.245 267.122 26.522 L 270.048 32.525 L 272.076 32.525 L 272.076 34.599 L 268.356 34.599 L 264.687 26.868 L 262.364 26.868 L 262.364 32.525 L 264.48 32.525 L 264.48 34.599 L 257.607 34.599 L 257.607 32.525 L 259.853 32.525 L 259.853 20.069 L 257.607 20.069 L 257.607 17.996 L 264.497 17.996 C 266.629 17.996 268.175 18.342 269.116 19.043 C 270.065 19.742 270.531 20.839 270.531 22.342 Z M 267.95 22.306 C 267.95 21.538 267.708 20.968 267.225 20.614 C 266.741 20.251 265.973 20.078 264.928 20.078 L 262.364 20.078 L 262.364 24.794 L 264.773 24.794 C 265.852 24.794 266.655 24.605 267.174 24.233 C 267.691 23.862 267.959 23.222 267.959 22.316 Z\" fill=\"rgb(40,50,113)\" stroke-width=\"0.47\" stroke=\"rgb(40,50,113)\" stroke-miterlimit=\"10\"></path><path d=\"M 92.996 49.083 C 92.288 49.083 91.666 48.929 91.114 48.618 C 90.575 48.319 90.129 47.877 89.827 47.34 C 89.516 46.794 89.361 46.173 89.361 45.481 C 89.361 44.791 89.516 44.144 89.827 43.599 C 90.129 43.062 90.575 42.62 91.114 42.321 C 91.658 42.009 92.288 41.854 92.996 41.854 C 93.746 41.851 94.476 42.094 95.076 42.544 C 95.361 42.761 95.603 43.012 95.776 43.288 L 94.99 43.806 C 94.855 43.593 94.679 43.408 94.472 43.262 C 94.258 43.105 94.023 42.98 93.773 42.891 C 93.523 42.802 93.261 42.755 92.996 42.752 C 92.487 42.752 92.029 42.865 91.632 43.098 C 91.234 43.331 90.924 43.651 90.699 44.056 C 90.475 44.463 90.363 44.938 90.363 45.473 C 90.363 46.009 90.474 46.467 90.7 46.873 C 90.924 47.279 91.235 47.598 91.632 47.831 C 92.03 48.065 92.495 48.177 93.013 48.177 C 93.436 48.177 93.807 48.091 94.135 47.918 C 94.456 47.752 94.725 47.501 94.912 47.193 C 95.107 46.863 95.206 46.486 95.197 46.104 L 96.147 46.018 C 96.147 46.64 96.009 47.175 95.742 47.632 C 95.477 48.086 95.091 48.457 94.627 48.704 C 94.153 48.954 93.608 49.083 92.996 49.083 Z M 93.505 46.173 L 93.505 45.353 L 96.147 45.353 L 96.147 46.069 L 95.646 46.173 Z M 98.391 48.963 L 98.391 41.983 L 99.366 41.983 L 99.366 48.963 Z M 99.298 46.294 L 99.298 45.395 L 100.834 45.395 C 101.077 45.395 101.292 45.344 101.482 45.231 C 101.876 45.008 102.117 44.587 102.112 44.134 C 102.112 43.764 101.983 43.461 101.723 43.227 C 101.464 42.994 101.128 42.882 100.714 42.882 L 99.298 42.882 L 99.298 41.984 L 100.74 41.984 C 101.206 41.966 101.612 42.053 101.974 42.244 C 102.337 42.433 102.613 42.683 102.812 43.012 C 103.019 43.34 103.113 43.711 103.113 44.134 C 103.113 44.557 103.01 44.93 102.786 45.249 C 102.567 45.578 102.262 45.84 101.905 46.008 C 101.512 46.196 101.08 46.291 100.644 46.286 L 99.29 46.286 L 99.298 46.294 Z M 102.285 48.963 L 100.627 46.113 L 101.404 45.594 L 103.39 48.963 Z M 104.884 48.963 L 107.698 41.983 L 108.691 41.983 L 105.929 48.963 Z M 106.214 47.097 L 106.214 46.217 L 110.228 46.217 L 110.228 47.097 Z M 110.512 48.963 L 107.75 41.983 L 108.743 41.983 L 111.557 48.963 Z M 113.285 48.963 L 113.285 41.983 L 114.26 41.983 L 114.26 48.963 Z M 114.192 46.467 L 114.192 45.559 L 115.814 45.559 C 116.168 45.559 116.453 45.439 116.677 45.189 C 116.902 44.938 117.014 44.619 117.014 44.23 C 117.028 43.742 116.768 43.288 116.341 43.055 C 116.118 42.936 115.868 42.879 115.616 42.891 L 114.182 42.891 L 114.182 41.993 L 115.624 41.993 C 116.053 41.977 116.478 42.072 116.859 42.269 C 117.213 42.459 117.498 42.727 117.696 43.064 C 117.904 43.401 117.999 43.789 117.999 44.238 C 117.999 44.688 117.904 45.059 117.722 45.395 C 117.543 45.726 117.278 46.001 116.954 46.191 C 116.609 46.384 116.219 46.483 115.823 46.475 L 114.192 46.475 Z M 120.034 48.963 L 120.034 41.983 L 121.009 41.983 L 121.009 48.963 Z M 120.854 45.819 L 120.854 44.921 L 125.084 44.921 L 125.084 45.819 Z M 124.774 48.963 L 124.774 41.983 L 125.749 41.983 L 125.749 48.963 Z M 128.469 48.963 L 128.469 41.983 L 129.445 41.983 L 129.445 48.963 Z M 135.195 49.083 C 134.531 49.083 133.935 48.929 133.416 48.618 C 132.901 48.311 132.48 47.869 132.2 47.34 C 131.906 46.795 131.759 46.173 131.759 45.465 C 131.759 44.756 131.906 44.134 132.2 43.591 C 132.477 43.061 132.895 42.619 133.408 42.312 C 133.917 42.001 134.505 41.845 135.169 41.845 C 135.6 41.845 136.015 41.923 136.404 42.079 C 136.792 42.234 137.146 42.45 137.457 42.727 C 137.768 43.003 138.001 43.322 138.173 43.685 L 137.293 44.083 C 137.169 43.815 136.993 43.574 136.775 43.374 C 136.557 43.176 136.306 43.018 136.033 42.908 C 135.759 42.795 135.466 42.736 135.169 42.735 C 134.703 42.735 134.288 42.847 133.926 43.081 C 133.56 43.318 133.265 43.649 133.071 44.04 C 132.864 44.445 132.76 44.912 132.76 45.447 C 132.76 45.983 132.864 46.449 133.071 46.864 C 133.279 47.279 133.572 47.598 133.935 47.823 C 134.297 48.047 134.72 48.169 135.195 48.169 C 135.497 48.169 135.791 48.108 136.059 47.987 C 136.334 47.867 136.576 47.694 136.792 47.478 C 137.008 47.261 137.18 47.011 137.319 46.734 L 138.199 47.123 C 138.032 47.503 137.792 47.847 137.491 48.133 C 137.189 48.428 136.835 48.652 136.438 48.816 C 136.041 48.979 135.616 49.061 135.187 49.058 L 135.195 49.084 Z M 143.854 48.963 L 143.854 41.983 L 144.83 41.983 L 144.83 48.963 Z M 144.562 42.899 L 144.562 41.983 L 146.004 41.983 L 146.004 42.9 L 144.562 42.9 Z M 144.562 48.963 L 144.562 48.047 L 146.004 48.047 L 146.004 48.963 Z M 146.004 48.963 L 146.004 48.047 C 146.341 48.047 146.66 47.987 146.954 47.857 C 147.248 47.728 147.506 47.546 147.723 47.313 C 147.948 47.077 148.124 46.798 148.24 46.493 C 148.361 46.181 148.421 45.844 148.421 45.481 C 148.421 45.119 148.361 44.791 148.24 44.471 C 148.009 43.864 147.546 43.373 146.954 43.106 C 146.654 42.974 146.331 42.907 146.004 42.907 L 146.004 41.993 C 146.669 41.993 147.256 42.139 147.774 42.432 C 148.285 42.723 148.703 43.151 148.983 43.668 C 149.276 44.195 149.423 44.799 149.423 45.482 C 149.423 46.164 149.276 46.76 148.983 47.288 C 148.698 47.801 148.281 48.227 147.774 48.522 C 147.265 48.825 146.669 48.971 146.004 48.971 Z M 151.71 48.963 L 151.71 41.983 L 152.686 41.983 L 152.686 48.963 Z M 152.53 42.881 L 152.53 41.983 L 155.905 41.983 L 155.905 42.881 Z M 152.53 45.836 L 152.53 44.955 L 155.586 44.955 L 155.586 45.836 Z M 152.53 48.971 L 152.53 48.073 L 155.931 48.073 L 155.931 48.971 Z M 160.559 49.083 C 160.188 49.083 159.851 49.041 159.55 48.954 C 159.271 48.876 159.006 48.757 158.764 48.6 C 158.555 48.463 158.368 48.295 158.211 48.1 C 158.071 47.926 157.965 47.726 157.9 47.512 L 158.85 47.201 C 158.954 47.478 159.135 47.71 159.42 47.909 C 159.696 48.108 160.042 48.212 160.447 48.22 C 160.94 48.22 161.328 48.125 161.604 47.927 C 161.889 47.728 162.027 47.469 162.027 47.14 C 162.033 46.849 161.894 46.574 161.656 46.406 C 161.414 46.217 161.086 46.069 160.68 45.974 L 159.877 45.767 C 159.57 45.688 159.276 45.563 159.005 45.396 C 158.756 45.243 158.544 45.036 158.383 44.791 C 158.229 44.55 158.151 44.247 158.151 43.902 C 158.151 43.263 158.358 42.761 158.772 42.407 C 159.187 42.053 159.791 41.871 160.568 41.871 C 161.017 41.871 161.414 41.941 161.742 42.087 C 162.07 42.234 162.346 42.416 162.563 42.649 C 162.778 42.882 162.934 43.142 163.028 43.418 L 162.079 43.737 C 161.971 43.438 161.768 43.184 161.5 43.012 C 161.225 42.831 160.896 42.735 160.491 42.735 C 160.068 42.735 159.739 42.839 159.498 43.038 C 159.256 43.236 159.135 43.513 159.135 43.858 C 159.135 44.152 159.23 44.377 159.42 44.531 C 159.61 44.687 159.86 44.808 160.18 44.886 L 160.991 45.085 C 161.638 45.24 162.148 45.508 162.502 45.88 C 162.856 46.25 163.037 46.648 163.037 47.089 C 163.037 47.469 162.942 47.806 162.752 48.107 C 162.55 48.424 162.259 48.673 161.915 48.825 C 161.544 48.997 161.095 49.094 160.551 49.094 L 160.559 49.084 Z M 165.394 48.963 L 165.394 41.983 L 166.37 41.983 L 166.37 48.963 Z M 172.3 49.083 C 171.592 49.083 170.971 48.929 170.419 48.618 C 169.88 48.319 169.434 47.877 169.132 47.34 C 168.821 46.794 168.666 46.173 168.666 45.481 C 168.666 44.791 168.821 44.144 169.132 43.599 C 169.434 43.062 169.88 42.62 170.419 42.321 C 170.962 42.009 171.592 41.854 172.3 41.854 C 173.051 41.85 173.782 42.093 174.381 42.545 C 174.665 42.761 174.908 43.012 175.08 43.288 L 174.294 43.806 C 174.159 43.593 173.983 43.408 173.777 43.262 C 173.563 43.105 173.327 42.98 173.077 42.891 C 172.828 42.802 172.565 42.755 172.3 42.752 C 171.791 42.752 171.333 42.865 170.936 43.098 C 170.544 43.326 170.221 43.658 170.004 44.056 C 169.779 44.463 169.667 44.938 169.667 45.473 C 169.667 46.009 169.779 46.467 170.004 46.873 C 170.228 47.279 170.539 47.598 170.936 47.831 C 171.333 48.065 171.799 48.177 172.318 48.177 C 172.707 48.184 173.093 48.095 173.44 47.918 C 173.768 47.745 174.027 47.504 174.217 47.193 C 174.407 46.881 174.502 46.519 174.502 46.104 L 175.451 46.018 C 175.451 46.64 175.313 47.175 175.046 47.632 C 174.781 48.086 174.395 48.457 173.932 48.704 C 173.457 48.954 172.914 49.083 172.3 49.083 Z M 172.81 46.173 L 172.81 45.353 L 175.451 45.353 L 175.451 46.069 L 174.95 46.173 Z M 177.696 48.963 L 177.696 41.983 L 178.706 41.983 L 178.672 42.804 L 178.672 48.971 L 177.696 48.971 L 177.696 48.962 Z M 182.651 48.963 L 177.929 42.528 L 178.706 41.975 L 183.428 48.401 Z M 182.651 48.963 L 182.651 41.983 L 183.636 41.983 L 183.636 48.963 Z M 186.365 48.963 L 186.365 41.983 L 187.34 41.983 L 187.34 48.963 Z M 187.185 42.882 L 187.185 41.984 L 190.56 41.984 L 190.56 42.882 Z M 187.185 45.836 L 187.185 44.956 L 190.24 44.956 L 190.24 45.836 Z M 187.185 48.972 L 187.185 48.074 L 190.586 48.074 L 190.586 48.972 Z M 193.002 48.963 L 193.002 41.983 L 193.977 41.983 L 193.977 48.963 Z M 193.908 46.294 L 193.908 45.395 L 195.445 45.395 C 195.896 45.404 196.318 45.17 196.55 44.782 C 196.662 44.593 196.722 44.376 196.722 44.134 C 196.722 43.764 196.593 43.461 196.334 43.227 C 196.075 42.994 195.738 42.882 195.324 42.882 L 193.908 42.882 L 193.908 41.984 L 195.35 41.984 C 195.816 41.966 196.221 42.053 196.584 42.244 C 196.947 42.433 197.224 42.683 197.422 43.012 C 197.629 43.34 197.724 43.711 197.724 44.134 C 197.724 44.557 197.621 44.93 197.396 45.249 C 197.18 45.577 196.887 45.828 196.516 46.008 C 196.122 46.196 195.691 46.291 195.255 46.286 L 193.899 46.286 L 193.908 46.294 Z M 196.895 48.963 L 195.238 46.113 L 196.014 45.594 L 198 48.963 Z\" fill=\"rgb(40,50,113)\"></path></svg>',svgContentId:1760387242},MYZHtk_Yv:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 273 50\"><path d=\"M 38.306 48.817 L 38.306 42.053 L 31.253 42.053 L 31.253 17.271 C 31.253 17.271 38.212 11.302 42.649 11.509 C 42.649 11.509 45.144 11.285 46.482 13.375 C 46.482 13.375 47.647 14.895 47.647 19.517 L 47.647 48.817 Z M 63.143 48.816 L 63.143 42.131 L 56.09 42.131 L 56.09 17.573 C 56.09 17.573 63.049 11.665 67.487 11.872 C 67.487 11.872 69.981 11.647 71.319 13.72 C 71.319 13.72 72.485 15.224 72.485 19.802 L 72.485 48.815 L 63.142 48.815 Z\" fill=\"rgb(40,50,113)\"></path><path d=\"M 78.467 9.35 C 77.979 8.757 77.429 8.219 76.827 7.744 C 71.681 3.744 64.463 6.966 59.732 10.049 C 59.732 10.049 58.343 10.879 56.098 12.529 C 55.986 10.697 54.147 8.581 52.748 7.614 C 51.048 6.438 49.036 5.852 46.982 5.748 C 42.855 5.531 38.685 7.026 35.172 9.091 C 33.333 10.196 31.183 11.829 31.183 11.829 L 31.183 7.329 L 22.808 7.329 L 22.808 48.963 L 9.263 48.963 L 9.263 42.234 L 14.435 42.234 L 14.435 7.329 L 5.871 7.329 L 5.871 18.792 L 0 18.792 L 0 0.704 L 78.467 0.704\" fill=\"rgb(40,50,113)\"></path><path d=\"M 100.785 24.069 L 100.785 20.069 L 97.367 20.069 L 97.367 32.525 L 99.525 32.525 L 99.525 34.599 L 92.748 34.599 L 92.748 32.525 L 94.863 32.525 L 94.863 20.069 L 91.461 20.069 L 91.461 24.069 L 89.416 24.069 L 89.416 18.005 L 102.84 18.005 L 102.84 24.069 L 100.785 24.069 Z M 110.316 20.069 L 113.95 25.192 L 117.309 20.069 L 115.237 20.069 L 115.237 17.996 L 121.859 17.996 L 121.859 20.07 L 119.692 20.07 L 115.047 27.041 L 115.047 32.525 L 117.326 32.525 L 117.326 34.599 L 110.316 34.599 L 110.316 32.525 L 112.552 32.525 L 112.552 27.041 L 107.614 20.069 L 105.585 20.069 L 105.585 17.996 L 112.396 17.996 L 112.396 20.07 L 110.316 20.07 Z M 129.067 20.069 L 129.067 32.525 L 134.515 32.525 L 134.515 27.386 L 136.569 27.386 L 136.569 34.599 L 124.422 34.599 L 124.422 32.525 L 126.554 32.525 L 126.554 20.069 L 124.422 20.069 L 124.422 17.996 L 131.199 17.996 L 131.199 20.07 L 129.067 20.07 Z M 151.013 22.852 L 151.013 20.079 L 143.917 20.079 L 143.917 25.019 L 150.09 25.019 L 150.09 27.093 L 143.917 27.093 L 143.917 32.534 L 151.013 32.534 L 151.013 29.502 L 153.06 29.502 L 153.06 34.598 L 139.273 34.598 L 139.273 32.525 L 141.405 32.525 L 141.405 20.069 L 139.273 20.069 L 139.273 17.996 L 153.06 17.996 L 153.06 22.843 L 151.013 22.843 Z M 168.72 22.35 C 168.72 23.412 168.418 24.311 167.822 25.028 C 167.218 25.754 166.38 26.245 165.301 26.522 L 168.228 32.525 L 170.257 32.525 L 170.257 34.599 L 166.536 34.599 L 162.866 26.868 L 160.544 26.868 L 160.544 32.525 L 162.66 32.525 L 162.66 34.599 L 155.788 34.599 L 155.788 32.525 L 158.032 32.525 L 158.032 20.069 L 155.788 20.069 L 155.788 17.996 L 162.677 17.996 C 164.809 17.996 166.354 18.342 167.295 19.043 C 168.245 19.742 168.711 20.839 168.711 22.342 Z M 166.13 22.306 C 166.13 21.538 165.889 20.968 165.405 20.614 C 164.922 20.251 164.153 20.078 163.109 20.078 L 160.544 20.078 L 160.544 24.794 L 162.953 24.794 C 164.032 24.794 164.835 24.605 165.353 24.233 C 165.871 23.862 166.139 23.222 166.139 22.316 Z M 194.015 18.006 L 199.756 18.006 L 199.756 20.078 L 197.754 20.078 L 197.754 32.534 L 199.756 32.534 L 199.756 34.607 L 193.514 34.607 L 193.514 32.533 L 195.474 32.533 L 195.474 20.079 L 189.777 34.781 L 189.284 34.781 L 183.63 20.08 L 183.63 32.535 L 185.46 32.535 L 185.46 34.608 L 179.572 34.608 L 179.572 32.534 L 181.584 32.534 L 181.584 20.079 L 179.572 20.079 L 179.572 18.006 L 185.262 18.006 L 189.63 29.373 L 194.024 18.006 L 194.015 18.006 Z M 206.903 20.069 L 206.903 32.525 L 208.708 32.525 L 208.708 34.599 L 202.605 34.599 L 202.605 32.525 L 204.4 32.525 L 204.4 20.069 L 202.605 20.069 L 202.605 17.996 L 208.708 17.996 L 208.708 20.07 L 206.903 20.07 Z M 216.046 20.069 L 216.046 32.525 L 221.494 32.525 L 221.494 27.386 L 223.548 27.386 L 223.548 34.599 L 211.402 34.599 L 211.402 32.525 L 213.534 32.525 L 213.534 20.069 L 211.402 20.069 L 211.402 17.996 L 218.179 17.996 L 218.179 20.07 L 216.046 20.07 Z M 230.888 20.069 L 230.888 32.525 L 236.335 32.525 L 236.335 27.386 L 238.389 27.386 L 238.389 34.599 L 226.243 34.599 L 226.243 32.525 L 228.375 32.525 L 228.375 20.069 L 226.243 20.069 L 226.243 17.996 L 233.02 17.996 L 233.02 20.07 L 230.888 20.07 Z M 252.834 22.852 L 252.834 20.079 L 245.737 20.079 L 245.737 25.019 L 251.911 25.019 L 251.911 27.093 L 245.737 27.093 L 245.737 32.534 L 252.834 32.534 L 252.834 29.502 L 254.88 29.502 L 254.88 34.598 L 241.092 34.598 L 241.092 32.525 L 243.225 32.525 L 243.225 20.069 L 241.092 20.069 L 241.092 17.996 L 254.88 17.996 L 254.88 22.843 L 252.834 22.843 Z M 270.54 22.35 C 270.54 23.412 270.238 24.311 269.643 25.028 C 269.038 25.754 268.201 26.245 267.122 26.522 L 270.048 32.525 L 272.076 32.525 L 272.076 34.599 L 268.356 34.599 L 264.687 26.868 L 262.364 26.868 L 262.364 32.525 L 264.48 32.525 L 264.48 34.599 L 257.607 34.599 L 257.607 32.525 L 259.852 32.525 L 259.852 20.069 L 257.607 20.069 L 257.607 17.996 L 264.497 17.996 C 266.629 17.996 268.175 18.342 269.116 19.043 C 270.065 19.742 270.531 20.839 270.531 22.342 Z M 267.95 22.306 C 267.95 21.538 267.708 20.968 267.225 20.614 C 266.741 20.251 265.973 20.078 264.928 20.078 L 262.364 20.078 L 262.364 24.794 L 264.773 24.794 C 265.852 24.794 266.655 24.605 267.174 24.233 C 267.691 23.862 267.959 23.222 267.959 22.316 Z\" fill=\"rgb(40,50,113)\" stroke-width=\"0.47\" stroke=\"rgb(40,50,113)\" stroke-miterlimit=\"10\"></path><path d=\"M 92.996 49.083 C 92.288 49.083 91.666 48.929 91.114 48.618 C 90.575 48.319 90.129 47.877 89.827 47.34 C 89.516 46.794 89.361 46.173 89.361 45.481 C 89.361 44.791 89.516 44.144 89.827 43.599 C 90.129 43.062 90.575 42.62 91.114 42.321 C 91.658 42.009 92.288 41.854 92.996 41.854 C 93.746 41.851 94.476 42.094 95.076 42.544 C 95.361 42.761 95.603 43.012 95.776 43.288 L 94.99 43.806 C 94.855 43.593 94.679 43.408 94.472 43.262 C 94.258 43.105 94.023 42.98 93.773 42.891 C 93.523 42.802 93.261 42.755 92.996 42.752 C 92.487 42.752 92.029 42.865 91.632 43.098 C 91.234 43.331 90.924 43.651 90.699 44.056 C 90.475 44.463 90.363 44.938 90.363 45.473 C 90.363 46.009 90.474 46.467 90.7 46.873 C 90.924 47.279 91.235 47.598 91.632 47.831 C 92.03 48.065 92.495 48.177 93.013 48.177 C 93.436 48.177 93.807 48.091 94.135 47.918 C 94.456 47.752 94.725 47.501 94.912 47.193 C 95.107 46.863 95.206 46.486 95.197 46.104 L 96.147 46.018 C 96.147 46.64 96.009 47.175 95.742 47.632 C 95.477 48.086 95.091 48.457 94.627 48.704 C 94.153 48.954 93.608 49.083 92.996 49.083 Z M 93.505 46.173 L 93.505 45.353 L 96.147 45.353 L 96.147 46.069 L 95.646 46.173 Z M 98.391 48.963 L 98.391 41.983 L 99.366 41.983 L 99.366 48.963 Z M 99.298 46.294 L 99.298 45.395 L 100.834 45.395 C 101.077 45.395 101.292 45.344 101.482 45.231 C 101.876 45.008 102.117 44.587 102.112 44.134 C 102.112 43.764 101.983 43.461 101.724 43.227 C 101.464 42.994 101.128 42.882 100.714 42.882 L 99.298 42.882 L 99.298 41.984 L 100.74 41.984 C 101.206 41.966 101.612 42.053 101.974 42.244 C 102.337 42.433 102.613 42.683 102.812 43.012 C 103.019 43.34 103.113 43.711 103.113 44.134 C 103.113 44.557 103.01 44.93 102.786 45.249 C 102.567 45.578 102.262 45.84 101.905 46.008 C 101.512 46.196 101.08 46.291 100.644 46.286 L 99.29 46.286 L 99.298 46.294 Z M 102.285 48.963 L 100.627 46.113 L 101.404 45.594 L 103.39 48.963 Z M 104.884 48.963 L 107.698 41.983 L 108.691 41.983 L 105.929 48.963 Z M 106.214 47.097 L 106.214 46.217 L 110.228 46.217 L 110.228 47.097 Z M 110.512 48.963 L 107.75 41.983 L 108.743 41.983 L 111.557 48.963 Z M 113.285 48.963 L 113.285 41.983 L 114.26 41.983 L 114.26 48.963 Z M 114.192 46.467 L 114.192 45.559 L 115.814 45.559 C 116.168 45.559 116.453 45.439 116.677 45.189 C 116.902 44.938 117.014 44.619 117.014 44.23 C 117.028 43.742 116.768 43.288 116.341 43.055 C 116.118 42.936 115.868 42.879 115.616 42.891 L 114.182 42.891 L 114.182 41.993 L 115.624 41.993 C 116.053 41.977 116.478 42.072 116.859 42.269 C 117.213 42.459 117.498 42.727 117.696 43.064 C 117.904 43.401 117.999 43.789 117.999 44.238 C 117.999 44.688 117.904 45.059 117.722 45.395 C 117.543 45.726 117.278 46.001 116.954 46.191 C 116.609 46.384 116.219 46.483 115.823 46.475 L 114.192 46.475 Z M 120.034 48.963 L 120.034 41.983 L 121.009 41.983 L 121.009 48.963 Z M 120.854 45.819 L 120.854 44.921 L 125.084 44.921 L 125.084 45.819 Z M 124.774 48.963 L 124.774 41.983 L 125.749 41.983 L 125.749 48.963 Z M 128.469 48.963 L 128.469 41.983 L 129.445 41.983 L 129.445 48.963 Z M 135.195 49.083 C 134.531 49.083 133.935 48.929 133.416 48.618 C 132.901 48.311 132.48 47.869 132.2 47.34 C 131.906 46.795 131.759 46.173 131.759 45.465 C 131.759 44.756 131.906 44.134 132.2 43.591 C 132.477 43.061 132.895 42.619 133.408 42.312 C 133.917 42.001 134.505 41.845 135.169 41.845 C 135.6 41.845 136.015 41.923 136.404 42.079 C 136.792 42.234 137.146 42.45 137.457 42.727 C 137.768 43.003 138.001 43.322 138.173 43.685 L 137.293 44.083 C 137.169 43.815 136.993 43.574 136.775 43.374 C 136.557 43.176 136.306 43.018 136.033 42.908 C 135.759 42.795 135.466 42.736 135.169 42.735 C 134.703 42.735 134.288 42.847 133.926 43.081 C 133.56 43.318 133.265 43.649 133.071 44.04 C 132.864 44.445 132.76 44.912 132.76 45.447 C 132.76 45.983 132.864 46.449 133.071 46.864 C 133.279 47.279 133.572 47.598 133.935 47.823 C 134.297 48.047 134.72 48.169 135.195 48.169 C 135.497 48.169 135.791 48.108 136.059 47.987 C 136.334 47.867 136.576 47.694 136.792 47.478 C 137.008 47.261 137.18 47.011 137.319 46.734 L 138.199 47.123 C 138.032 47.503 137.792 47.847 137.491 48.133 C 137.189 48.428 136.835 48.652 136.438 48.816 C 136.041 48.979 135.616 49.061 135.187 49.058 L 135.195 49.084 Z M 143.854 48.963 L 143.854 41.983 L 144.83 41.983 L 144.83 48.963 Z M 144.562 42.899 L 144.562 41.983 L 146.004 41.983 L 146.004 42.9 L 144.562 42.9 Z M 144.562 48.963 L 144.562 48.047 L 146.004 48.047 L 146.004 48.963 Z M 146.004 48.963 L 146.004 48.047 C 146.341 48.047 146.66 47.987 146.954 47.857 C 147.248 47.728 147.506 47.546 147.723 47.313 C 147.948 47.077 148.124 46.798 148.24 46.493 C 148.361 46.181 148.421 45.844 148.421 45.481 C 148.421 45.119 148.361 44.791 148.24 44.471 C 148.009 43.864 147.546 43.373 146.954 43.106 C 146.654 42.974 146.331 42.907 146.004 42.907 L 146.004 41.993 C 146.669 41.993 147.256 42.139 147.774 42.432 C 148.285 42.723 148.703 43.151 148.983 43.668 C 149.276 44.195 149.423 44.799 149.423 45.482 C 149.423 46.164 149.276 46.76 148.983 47.288 C 148.698 47.801 148.281 48.227 147.774 48.522 C 147.265 48.825 146.669 48.971 146.004 48.971 Z M 151.71 48.963 L 151.71 41.983 L 152.686 41.983 L 152.686 48.963 Z M 152.53 42.881 L 152.53 41.983 L 155.905 41.983 L 155.905 42.881 Z M 152.53 45.836 L 152.53 44.955 L 155.586 44.955 L 155.586 45.836 Z M 152.53 48.971 L 152.53 48.073 L 155.931 48.073 L 155.931 48.971 Z M 160.559 49.083 C 160.188 49.083 159.851 49.041 159.55 48.954 C 159.271 48.876 159.006 48.757 158.764 48.6 C 158.555 48.463 158.368 48.295 158.211 48.1 C 158.071 47.926 157.965 47.726 157.9 47.512 L 158.85 47.201 C 158.954 47.478 159.135 47.71 159.42 47.909 C 159.696 48.108 160.042 48.212 160.447 48.22 C 160.94 48.22 161.328 48.125 161.604 47.927 C 161.889 47.728 162.027 47.469 162.027 47.14 C 162.033 46.849 161.894 46.574 161.656 46.406 C 161.414 46.217 161.086 46.069 160.68 45.974 L 159.877 45.767 C 159.57 45.688 159.276 45.563 159.005 45.396 C 158.756 45.243 158.544 45.036 158.384 44.791 C 158.229 44.55 158.151 44.247 158.151 43.902 C 158.151 43.263 158.358 42.761 158.772 42.407 C 159.187 42.053 159.791 41.871 160.568 41.871 C 161.017 41.871 161.414 41.941 161.742 42.087 C 162.07 42.234 162.346 42.416 162.563 42.649 C 162.778 42.882 162.934 43.142 163.028 43.418 L 162.079 43.737 C 161.971 43.438 161.768 43.184 161.5 43.012 C 161.225 42.831 160.896 42.735 160.491 42.735 C 160.068 42.735 159.739 42.839 159.498 43.038 C 159.256 43.236 159.135 43.513 159.135 43.858 C 159.135 44.152 159.23 44.377 159.42 44.531 C 159.61 44.687 159.86 44.808 160.18 44.886 L 160.991 45.085 C 161.638 45.24 162.148 45.508 162.502 45.88 C 162.856 46.25 163.037 46.648 163.037 47.089 C 163.037 47.469 162.942 47.806 162.752 48.107 C 162.55 48.424 162.259 48.673 161.915 48.825 C 161.544 48.997 161.095 49.094 160.551 49.094 L 160.559 49.084 Z M 165.395 48.963 L 165.395 41.983 L 166.37 41.983 L 166.37 48.963 Z M 172.3 49.083 C 171.592 49.083 170.971 48.929 170.419 48.618 C 169.88 48.319 169.434 47.877 169.132 47.34 C 168.821 46.794 168.666 46.173 168.666 45.481 C 168.666 44.791 168.821 44.144 169.132 43.599 C 169.434 43.062 169.88 42.62 170.419 42.321 C 170.962 42.009 171.592 41.854 172.3 41.854 C 173.051 41.85 173.782 42.093 174.381 42.545 C 174.665 42.761 174.908 43.012 175.08 43.288 L 174.294 43.806 C 174.159 43.593 173.983 43.408 173.777 43.262 C 173.563 43.105 173.327 42.98 173.077 42.891 C 172.828 42.802 172.565 42.755 172.3 42.752 C 171.791 42.752 171.333 42.865 170.936 43.098 C 170.544 43.326 170.221 43.658 170.004 44.056 C 169.779 44.463 169.667 44.938 169.667 45.473 C 169.667 46.009 169.779 46.467 170.004 46.873 C 170.228 47.279 170.539 47.598 170.936 47.831 C 171.333 48.065 171.799 48.177 172.318 48.177 C 172.707 48.184 173.093 48.095 173.44 47.918 C 173.768 47.745 174.027 47.504 174.217 47.193 C 174.407 46.881 174.502 46.519 174.502 46.104 L 175.451 46.018 C 175.451 46.64 175.313 47.175 175.046 47.632 C 174.781 48.086 174.395 48.457 173.932 48.704 C 173.457 48.954 172.914 49.083 172.3 49.083 Z M 172.81 46.173 L 172.81 45.353 L 175.451 45.353 L 175.451 46.069 L 174.95 46.173 Z M 177.696 48.963 L 177.696 41.983 L 178.706 41.983 L 178.672 42.804 L 178.672 48.971 L 177.696 48.971 L 177.696 48.962 Z M 182.651 48.963 L 177.929 42.528 L 178.706 41.975 L 183.428 48.401 Z M 182.651 48.963 L 182.651 41.983 L 183.636 41.983 L 183.636 48.963 Z M 186.365 48.963 L 186.365 41.983 L 187.34 41.983 L 187.34 48.963 Z M 187.185 42.882 L 187.185 41.984 L 190.56 41.984 L 190.56 42.882 Z M 187.185 45.836 L 187.185 44.956 L 190.24 44.956 L 190.24 45.836 Z M 187.185 48.972 L 187.185 48.074 L 190.586 48.074 L 190.586 48.972 Z M 193.002 48.963 L 193.002 41.983 L 193.977 41.983 L 193.977 48.963 Z M 193.908 46.294 L 193.908 45.395 L 195.445 45.395 C 195.896 45.404 196.318 45.17 196.55 44.782 C 196.662 44.593 196.722 44.376 196.722 44.134 C 196.722 43.764 196.593 43.461 196.334 43.227 C 196.075 42.994 195.738 42.882 195.324 42.882 L 193.908 42.882 L 193.908 41.984 L 195.35 41.984 C 195.816 41.966 196.221 42.053 196.584 42.244 C 196.947 42.433 197.224 42.683 197.422 43.012 C 197.629 43.34 197.724 43.711 197.724 44.134 C 197.724 44.557 197.621 44.93 197.396 45.249 C 197.18 45.577 196.887 45.828 196.516 46.008 C 196.122 46.196 195.691 46.291 195.255 46.286 L 193.899 46.286 L 193.908 46.294 Z M 196.895 48.963 L 195.238 46.113 L 196.014 45.594 L 198 48.963 Z\" fill=\"rgb(40,50,113)\"></path></svg>',svgContentId:1743631312},zFhUYG16G:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 273 50\"><path d=\"M 38.306 48.817 L 38.306 42.053 L 31.253 42.053 L 31.253 17.271 C 31.253 17.271 38.212 11.302 42.649 11.509 C 42.649 11.509 45.144 11.285 46.482 13.375 C 46.482 13.375 47.647 14.895 47.647 19.517 L 47.647 48.817 Z M 63.143 48.816 L 63.143 42.131 L 56.09 42.131 L 56.09 17.573 C 56.09 17.573 63.049 11.665 67.487 11.872 C 67.487 11.872 69.981 11.647 71.319 13.72 C 71.319 13.72 72.485 15.224 72.485 19.802 L 72.485 48.815 L 63.142 48.815 Z\" fill=\"rgb(40,50,113)\"></path><path d=\"M 78.467 9.35 C 77.979 8.757 77.429 8.219 76.827 7.744 C 71.681 3.744 64.463 6.966 59.732 10.049 C 59.732 10.049 58.343 10.879 56.098 12.529 C 55.986 10.697 54.147 8.581 52.748 7.614 C 51.048 6.438 49.036 5.852 46.982 5.748 C 42.855 5.531 38.685 7.026 35.172 9.091 C 33.333 10.196 31.183 11.829 31.183 11.829 L 31.183 7.329 L 22.808 7.329 L 22.808 48.963 L 9.263 48.963 L 9.263 42.234 L 14.435 42.234 L 14.435 7.329 L 5.871 7.329 L 5.871 18.792 L 0 18.792 L 0 0.704 L 78.467 0.704\" fill=\"rgb(40,50,113)\"></path><path d=\"M 100.785 24.069 L 100.785 20.069 L 97.367 20.069 L 97.367 32.525 L 99.525 32.525 L 99.525 34.599 L 92.748 34.599 L 92.748 32.525 L 94.863 32.525 L 94.863 20.069 L 91.461 20.069 L 91.461 24.069 L 89.416 24.069 L 89.416 18.005 L 102.84 18.005 L 102.84 24.069 L 100.785 24.069 Z M 110.316 20.069 L 113.95 25.192 L 117.309 20.069 L 115.237 20.069 L 115.237 17.996 L 121.859 17.996 L 121.859 20.07 L 119.692 20.07 L 115.047 27.041 L 115.047 32.525 L 117.326 32.525 L 117.326 34.599 L 110.316 34.599 L 110.316 32.525 L 112.552 32.525 L 112.552 27.041 L 107.614 20.069 L 105.585 20.069 L 105.585 17.996 L 112.396 17.996 L 112.396 20.07 L 110.316 20.07 Z M 129.067 20.069 L 129.067 32.525 L 134.515 32.525 L 134.515 27.386 L 136.569 27.386 L 136.569 34.599 L 124.422 34.599 L 124.422 32.525 L 126.554 32.525 L 126.554 20.069 L 124.422 20.069 L 124.422 17.996 L 131.199 17.996 L 131.199 20.07 L 129.067 20.07 Z M 151.013 22.852 L 151.013 20.079 L 143.917 20.079 L 143.917 25.019 L 150.09 25.019 L 150.09 27.093 L 143.917 27.093 L 143.917 32.534 L 151.013 32.534 L 151.013 29.502 L 153.06 29.502 L 153.06 34.598 L 139.273 34.598 L 139.273 32.525 L 141.405 32.525 L 141.405 20.069 L 139.273 20.069 L 139.273 17.996 L 153.06 17.996 L 153.06 22.843 L 151.013 22.843 Z M 168.72 22.35 C 168.72 23.412 168.418 24.311 167.822 25.028 C 167.218 25.754 166.38 26.245 165.301 26.522 L 168.228 32.525 L 170.257 32.525 L 170.257 34.599 L 166.536 34.599 L 162.866 26.868 L 160.544 26.868 L 160.544 32.525 L 162.66 32.525 L 162.66 34.599 L 155.788 34.599 L 155.788 32.525 L 158.032 32.525 L 158.032 20.069 L 155.788 20.069 L 155.788 17.996 L 162.677 17.996 C 164.809 17.996 166.354 18.342 167.295 19.043 C 168.245 19.742 168.711 20.839 168.711 22.342 Z M 166.13 22.306 C 166.13 21.538 165.889 20.968 165.405 20.614 C 164.922 20.251 164.153 20.078 163.109 20.078 L 160.544 20.078 L 160.544 24.794 L 162.953 24.794 C 164.032 24.794 164.835 24.605 165.353 24.233 C 165.871 23.862 166.139 23.222 166.139 22.316 Z M 194.015 18.006 L 199.756 18.006 L 199.756 20.078 L 197.754 20.078 L 197.754 32.534 L 199.756 32.534 L 199.756 34.607 L 193.514 34.607 L 193.514 32.533 L 195.474 32.533 L 195.474 20.079 L 189.777 34.781 L 189.284 34.781 L 183.63 20.08 L 183.63 32.535 L 185.46 32.535 L 185.46 34.608 L 179.572 34.608 L 179.572 32.534 L 181.584 32.534 L 181.584 20.079 L 179.572 20.079 L 179.572 18.006 L 185.261 18.006 L 189.629 29.373 L 194.024 18.006 L 194.015 18.006 Z M 206.903 20.069 L 206.903 32.525 L 208.708 32.525 L 208.708 34.599 L 202.605 34.599 L 202.605 32.525 L 204.4 32.525 L 204.4 20.069 L 202.605 20.069 L 202.605 17.996 L 208.708 17.996 L 208.708 20.07 L 206.903 20.07 Z M 216.046 20.069 L 216.046 32.525 L 221.494 32.525 L 221.494 27.386 L 223.548 27.386 L 223.548 34.599 L 211.402 34.599 L 211.402 32.525 L 213.534 32.525 L 213.534 20.069 L 211.402 20.069 L 211.402 17.996 L 218.179 17.996 L 218.179 20.07 L 216.046 20.07 Z M 230.888 20.069 L 230.888 32.525 L 236.335 32.525 L 236.335 27.386 L 238.389 27.386 L 238.389 34.599 L 226.243 34.599 L 226.243 32.525 L 228.375 32.525 L 228.375 20.069 L 226.243 20.069 L 226.243 17.996 L 233.02 17.996 L 233.02 20.07 L 230.888 20.07 Z M 252.834 22.852 L 252.834 20.079 L 245.737 20.079 L 245.737 25.019 L 251.911 25.019 L 251.911 27.093 L 245.737 27.093 L 245.737 32.534 L 252.834 32.534 L 252.834 29.502 L 254.88 29.502 L 254.88 34.598 L 241.092 34.598 L 241.092 32.525 L 243.225 32.525 L 243.225 20.069 L 241.092 20.069 L 241.092 17.996 L 254.88 17.996 L 254.88 22.843 L 252.834 22.843 Z M 270.54 22.35 C 270.54 23.412 270.238 24.311 269.643 25.028 C 269.038 25.754 268.201 26.245 267.122 26.522 L 270.048 32.525 L 272.076 32.525 L 272.076 34.599 L 268.356 34.599 L 264.687 26.868 L 262.364 26.868 L 262.364 32.525 L 264.48 32.525 L 264.48 34.599 L 257.607 34.599 L 257.607 32.525 L 259.852 32.525 L 259.852 20.069 L 257.607 20.069 L 257.607 17.996 L 264.497 17.996 C 266.629 17.996 268.175 18.342 269.116 19.043 C 270.065 19.742 270.531 20.839 270.531 22.342 Z M 267.95 22.306 C 267.95 21.538 267.708 20.968 267.225 20.614 C 266.741 20.251 265.973 20.078 264.928 20.078 L 262.364 20.078 L 262.364 24.794 L 264.773 24.794 C 265.852 24.794 266.655 24.605 267.174 24.233 C 267.691 23.862 267.959 23.222 267.959 22.316 Z\" fill=\"rgb(40,50,113)\" stroke-width=\"0.47\" stroke=\"rgb(40,50,113)\" stroke-miterlimit=\"10\"></path><path d=\"M 92.996 49.083 C 92.288 49.083 91.666 48.929 91.114 48.618 C 90.575 48.319 90.129 47.877 89.827 47.34 C 89.516 46.794 89.361 46.173 89.361 45.481 C 89.361 44.791 89.516 44.144 89.827 43.599 C 90.129 43.062 90.575 42.62 91.114 42.321 C 91.658 42.009 92.288 41.854 92.996 41.854 C 93.746 41.851 94.476 42.094 95.076 42.544 C 95.361 42.761 95.603 43.012 95.776 43.288 L 94.99 43.806 C 94.855 43.593 94.679 43.408 94.472 43.262 C 94.258 43.105 94.023 42.98 93.773 42.891 C 93.523 42.802 93.261 42.755 92.996 42.752 C 92.487 42.752 92.029 42.865 91.632 43.098 C 91.234 43.331 90.924 43.651 90.699 44.056 C 90.475 44.463 90.363 44.938 90.363 45.473 C 90.363 46.009 90.474 46.467 90.7 46.873 C 90.924 47.279 91.235 47.598 91.632 47.831 C 92.03 48.065 92.495 48.177 93.013 48.177 C 93.436 48.177 93.807 48.091 94.135 47.918 C 94.456 47.752 94.725 47.501 94.912 47.193 C 95.107 46.863 95.206 46.486 95.197 46.104 L 96.147 46.018 C 96.147 46.64 96.009 47.175 95.742 47.632 C 95.477 48.086 95.091 48.457 94.627 48.704 C 94.153 48.954 93.608 49.083 92.996 49.083 Z M 93.505 46.173 L 93.505 45.353 L 96.147 45.353 L 96.147 46.069 L 95.646 46.173 Z M 98.391 48.963 L 98.391 41.983 L 99.366 41.983 L 99.366 48.963 Z M 99.298 46.294 L 99.298 45.395 L 100.834 45.395 C 101.077 45.395 101.292 45.344 101.482 45.231 C 101.876 45.008 102.117 44.587 102.112 44.134 C 102.112 43.764 101.983 43.461 101.723 43.227 C 101.464 42.994 101.128 42.882 100.714 42.882 L 99.298 42.882 L 99.298 41.984 L 100.74 41.984 C 101.206 41.966 101.612 42.053 101.974 42.244 C 102.337 42.433 102.613 42.683 102.812 43.012 C 103.019 43.34 103.113 43.711 103.113 44.134 C 103.113 44.557 103.01 44.93 102.786 45.249 C 102.567 45.578 102.262 45.84 101.905 46.008 C 101.512 46.196 101.08 46.291 100.644 46.286 L 99.29 46.286 L 99.298 46.294 Z M 102.285 48.963 L 100.627 46.113 L 101.404 45.594 L 103.39 48.963 Z M 104.884 48.963 L 107.698 41.983 L 108.691 41.983 L 105.929 48.963 Z M 106.214 47.097 L 106.214 46.217 L 110.228 46.217 L 110.228 47.097 Z M 110.512 48.963 L 107.75 41.983 L 108.743 41.983 L 111.557 48.963 Z M 113.285 48.963 L 113.285 41.983 L 114.26 41.983 L 114.26 48.963 Z M 114.192 46.467 L 114.192 45.559 L 115.814 45.559 C 116.168 45.559 116.453 45.439 116.677 45.189 C 116.902 44.938 117.014 44.619 117.014 44.23 C 117.028 43.742 116.768 43.288 116.341 43.055 C 116.118 42.936 115.868 42.879 115.616 42.891 L 114.182 42.891 L 114.182 41.993 L 115.624 41.993 C 116.053 41.977 116.478 42.072 116.859 42.269 C 117.213 42.459 117.498 42.727 117.696 43.064 C 117.904 43.401 117.999 43.789 117.999 44.238 C 117.999 44.688 117.904 45.059 117.722 45.395 C 117.543 45.726 117.278 46.001 116.954 46.191 C 116.609 46.384 116.219 46.483 115.823 46.475 L 114.192 46.475 Z M 120.034 48.963 L 120.034 41.983 L 121.009 41.983 L 121.009 48.963 Z M 120.854 45.819 L 120.854 44.921 L 125.084 44.921 L 125.084 45.819 Z M 124.774 48.963 L 124.774 41.983 L 125.749 41.983 L 125.749 48.963 Z M 128.469 48.963 L 128.469 41.983 L 129.445 41.983 L 129.445 48.963 Z M 135.195 49.083 C 134.531 49.083 133.935 48.929 133.416 48.618 C 132.901 48.311 132.48 47.869 132.2 47.34 C 131.906 46.795 131.759 46.173 131.759 45.465 C 131.759 44.756 131.906 44.134 132.2 43.591 C 132.477 43.061 132.895 42.619 133.408 42.312 C 133.917 42.001 134.505 41.845 135.169 41.845 C 135.6 41.845 136.015 41.923 136.404 42.079 C 136.792 42.234 137.146 42.45 137.457 42.727 C 137.768 43.003 138.001 43.322 138.173 43.685 L 137.293 44.083 C 137.169 43.815 136.993 43.574 136.775 43.374 C 136.557 43.176 136.306 43.018 136.033 42.908 C 135.759 42.795 135.466 42.736 135.169 42.735 C 134.703 42.735 134.288 42.847 133.926 43.081 C 133.56 43.318 133.265 43.649 133.071 44.04 C 132.864 44.445 132.76 44.912 132.76 45.447 C 132.76 45.983 132.864 46.449 133.071 46.864 C 133.279 47.279 133.572 47.598 133.935 47.823 C 134.297 48.047 134.72 48.169 135.195 48.169 C 135.497 48.169 135.791 48.108 136.059 47.987 C 136.334 47.867 136.576 47.694 136.792 47.478 C 137.008 47.261 137.18 47.011 137.319 46.734 L 138.199 47.123 C 138.032 47.503 137.792 47.847 137.491 48.133 C 137.189 48.428 136.835 48.652 136.438 48.816 C 136.041 48.979 135.616 49.061 135.187 49.058 L 135.195 49.084 Z M 143.854 48.963 L 143.854 41.983 L 144.83 41.983 L 144.83 48.963 Z M 144.562 42.899 L 144.562 41.983 L 146.004 41.983 L 146.004 42.9 L 144.562 42.9 Z M 144.562 48.963 L 144.562 48.047 L 146.004 48.047 L 146.004 48.963 Z M 146.004 48.963 L 146.004 48.047 C 146.341 48.047 146.66 47.987 146.954 47.857 C 147.248 47.728 147.506 47.546 147.723 47.313 C 147.948 47.077 148.124 46.798 148.24 46.493 C 148.361 46.181 148.421 45.844 148.421 45.481 C 148.421 45.119 148.361 44.791 148.24 44.471 C 148.009 43.864 147.546 43.373 146.954 43.106 C 146.654 42.974 146.331 42.907 146.004 42.907 L 146.004 41.993 C 146.669 41.993 147.256 42.139 147.774 42.432 C 148.285 42.723 148.703 43.151 148.983 43.668 C 149.276 44.195 149.423 44.799 149.423 45.482 C 149.423 46.164 149.276 46.76 148.983 47.288 C 148.698 47.801 148.281 48.227 147.774 48.522 C 147.265 48.825 146.669 48.971 146.004 48.971 Z M 151.71 48.963 L 151.71 41.983 L 152.686 41.983 L 152.686 48.963 Z M 152.53 42.881 L 152.53 41.983 L 155.905 41.983 L 155.905 42.881 Z M 152.53 45.836 L 152.53 44.955 L 155.586 44.955 L 155.586 45.836 Z M 152.53 48.971 L 152.53 48.073 L 155.931 48.073 L 155.931 48.971 Z M 160.559 49.083 C 160.188 49.083 159.851 49.041 159.55 48.954 C 159.271 48.876 159.006 48.757 158.764 48.6 C 158.555 48.463 158.368 48.295 158.211 48.1 C 158.071 47.926 157.965 47.726 157.9 47.512 L 158.85 47.201 C 158.954 47.478 159.135 47.71 159.42 47.909 C 159.696 48.108 160.042 48.212 160.447 48.22 C 160.94 48.22 161.328 48.125 161.604 47.927 C 161.889 47.728 162.027 47.469 162.027 47.14 C 162.033 46.849 161.894 46.574 161.656 46.406 C 161.414 46.217 161.086 46.069 160.68 45.974 L 159.877 45.767 C 159.57 45.688 159.276 45.563 159.005 45.396 C 158.756 45.243 158.544 45.036 158.383 44.791 C 158.229 44.55 158.151 44.247 158.151 43.902 C 158.151 43.263 158.358 42.761 158.772 42.407 C 159.187 42.053 159.791 41.871 160.568 41.871 C 161.017 41.871 161.414 41.941 161.742 42.087 C 162.07 42.234 162.346 42.416 162.563 42.649 C 162.778 42.882 162.934 43.142 163.028 43.418 L 162.079 43.737 C 161.971 43.438 161.768 43.184 161.5 43.012 C 161.225 42.831 160.896 42.735 160.491 42.735 C 160.068 42.735 159.739 42.839 159.498 43.038 C 159.256 43.236 159.135 43.513 159.135 43.858 C 159.135 44.152 159.23 44.377 159.42 44.531 C 159.61 44.687 159.86 44.808 160.18 44.886 L 160.991 45.085 C 161.638 45.24 162.148 45.508 162.502 45.88 C 162.856 46.25 163.037 46.648 163.037 47.089 C 163.037 47.469 162.942 47.806 162.752 48.107 C 162.55 48.424 162.259 48.673 161.915 48.825 C 161.544 48.997 161.095 49.094 160.551 49.094 L 160.559 49.084 Z M 165.395 48.963 L 165.395 41.983 L 166.37 41.983 L 166.37 48.963 Z M 172.3 49.083 C 171.592 49.083 170.971 48.929 170.419 48.618 C 169.88 48.319 169.434 47.877 169.132 47.34 C 168.821 46.794 168.666 46.173 168.666 45.481 C 168.666 44.791 168.821 44.144 169.132 43.599 C 169.434 43.062 169.88 42.62 170.419 42.321 C 170.962 42.009 171.592 41.854 172.3 41.854 C 173.051 41.85 173.782 42.093 174.381 42.545 C 174.665 42.761 174.908 43.012 175.08 43.288 L 174.294 43.806 C 174.159 43.593 173.983 43.408 173.777 43.262 C 173.563 43.105 173.327 42.98 173.077 42.891 C 172.828 42.802 172.565 42.755 172.3 42.752 C 171.791 42.752 171.333 42.865 170.936 43.098 C 170.544 43.326 170.221 43.658 170.004 44.056 C 169.779 44.463 169.667 44.938 169.667 45.473 C 169.667 46.009 169.779 46.467 170.004 46.873 C 170.228 47.279 170.539 47.598 170.936 47.831 C 171.333 48.065 171.799 48.177 172.318 48.177 C 172.707 48.184 173.093 48.095 173.44 47.918 C 173.768 47.745 174.027 47.504 174.217 47.193 C 174.407 46.881 174.502 46.519 174.502 46.104 L 175.451 46.018 C 175.451 46.64 175.313 47.175 175.046 47.632 C 174.781 48.086 174.395 48.457 173.932 48.704 C 173.457 48.954 172.914 49.083 172.3 49.083 Z M 172.81 46.173 L 172.81 45.353 L 175.451 45.353 L 175.451 46.069 L 174.95 46.173 Z M 177.696 48.963 L 177.696 41.983 L 178.706 41.983 L 178.672 42.804 L 178.672 48.971 L 177.696 48.971 L 177.696 48.962 Z M 182.651 48.963 L 177.929 42.528 L 178.706 41.975 L 183.428 48.401 Z M 182.651 48.963 L 182.651 41.983 L 183.636 41.983 L 183.636 48.963 Z M 186.365 48.963 L 186.365 41.983 L 187.34 41.983 L 187.34 48.963 Z M 187.185 42.882 L 187.185 41.984 L 190.56 41.984 L 190.56 42.882 Z M 187.185 45.836 L 187.185 44.956 L 190.24 44.956 L 190.24 45.836 Z M 187.185 48.972 L 187.185 48.074 L 190.586 48.074 L 190.586 48.972 Z M 193.002 48.963 L 193.002 41.983 L 193.977 41.983 L 193.977 48.963 Z M 193.908 46.294 L 193.908 45.395 L 195.445 45.395 C 195.896 45.404 196.318 45.17 196.55 44.782 C 196.662 44.593 196.722 44.376 196.722 44.134 C 196.722 43.764 196.593 43.461 196.334 43.227 C 196.075 42.994 195.738 42.882 195.324 42.882 L 193.908 42.882 L 193.908 41.984 L 195.35 41.984 C 195.816 41.966 196.221 42.053 196.584 42.244 C 196.947 42.433 197.224 42.683 197.422 43.012 C 197.629 43.34 197.724 43.711 197.724 44.134 C 197.724 44.557 197.621 44.93 197.396 45.249 C 197.18 45.577 196.887 45.828 196.516 46.008 C 196.122 46.196 195.691 46.291 195.255 46.286 L 193.899 46.286 L 193.908 46.294 Z M 196.895 48.963 L 195.238 46.113 L 196.014 45.594 L 198 48.963 Z\" fill=\"rgb(40,50,113)\"></path></svg>',svgContentId:1814279846}},G,R)})}),!![\"zFhUYG16G\",\"lxHpHdsVO\"].includes(G)&&/*#__PURE__*/r(Z.div,{className:\"framer-1qijf1x\",\"data-framer-name\":\"Icon\",layoutDependency:P,layoutId:\"G8SJo2qfG\",...k({lxHpHdsVO:{\"data-highlight\":!0,onTap:E},zFhUYG16G:{\"data-highlight\":!0,onTap:q}},G,R),children:[/*#__PURE__*/L(Z.div,{className:\"framer-jgreyv\",\"data-framer-name\":\"Bottom\",layoutDependency:P,layoutId:\"IldiZpE7E\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{lxHpHdsVO:{backgroundColor:\"rgb(40, 50, 113)\",rotate:-45},zFhUYG16G:{backgroundColor:\"rgb(40, 50, 113)\"}}}),/*#__PURE__*/L(Z.div,{className:\"framer-137pwvv\",\"data-framer-name\":\"Mid\",layoutDependency:P,layoutId:\"k029fkJHW\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{lxHpHdsVO:{backgroundColor:\"rgb(40, 50, 113)\"},zFhUYG16G:{backgroundColor:\"rgb(40, 50, 113)\"}}}),/*#__PURE__*/L(Z.div,{className:\"framer-1h5lioi\",\"data-framer-name\":\"Top\",layoutDependency:P,layoutId:\"DakUvPAaj\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{lxHpHdsVO:{backgroundColor:\"rgb(40, 50, 113)\",rotate:45},zFhUYG16G:{backgroundColor:\"rgb(40, 50, 113)\"}}})]})]}),\"zFhUYG16G\"!==G&&/*#__PURE__*/L(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/L(g.Fragment,{children:/*#__PURE__*/L(Z.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/L(s,{href:{webPageId:\"augiA20Il\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/L(Z.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"HOME\"})})})}),className:\"framer-1pppoqp\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:P,layoutId:\"WNYOJWTor\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0,...k({lxHpHdsVO:{children:/*#__PURE__*/L(g.Fragment,{children:/*#__PURE__*/L(Z.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/L(s,{href:{webPageId:\"augiA20Il\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/L(Z.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"HOME\"})})})})}},G,R)}),\"zFhUYG16G\"!==G&&/*#__PURE__*/L(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/L(g.Fragment,{children:/*#__PURE__*/L(Z.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/L(s,{href:{webPageId:\"RBemUBJMZ\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/L(Z.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"PORTFOLIO\"})})})}),className:\"framer-hcykue\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:P,layoutId:\"VYhTDlydt\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0,...k({lxHpHdsVO:{children:/*#__PURE__*/L(g.Fragment,{children:/*#__PURE__*/L(Z.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/L(s,{href:{webPageId:\"RBemUBJMZ\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/L(Z.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"PORTFOLIO\"})})})})}},G,R)}),\"zFhUYG16G\"!==G&&/*#__PURE__*/L(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/L(g.Fragment,{children:/*#__PURE__*/L(Z.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/L(s,{href:{webPageId:\"fyxHY82ZH\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/L(Z.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"ABOUT\"})})})}),className:\"framer-qjqkqu\",fonts:[\"CUSTOM;Rokkitt Bold\"],layoutDependency:P,layoutId:\"ZNHAZ3p6n\",style:{\"--extracted-r6o4lv\":\"rgb(113, 166, 217)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0,...k({lxHpHdsVO:{children:/*#__PURE__*/L(g.Fragment,{children:/*#__PURE__*/L(Z.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jva2tpdHQgQm9sZA==\",\"--framer-font-family\":'\"Rokkitt Bold\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 166, 217))\"},children:/*#__PURE__*/L(s,{href:{webPageId:\"fyxHY82ZH\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/L(Z.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"ABOUT\"})})})})}},G,R)}),\"zFhUYG16G\"!==G&&/*#__PURE__*/L(Z.div,{className:\"framer-m3pwmm-container\",layoutDependency:P,layoutId:\"xgbC0sjEO-container\",children:/*#__PURE__*/L(y,{callToAction:\"CONTACT\",height:\"100%\",id:\"xgbC0sjEO\",layoutId:\"xgbC0sjEO\",link:i({webPageId:\"U3p1UAzL7\"},A),variant:\"Vggbx1wcn\",width:\"100%\",...k({lxHpHdsVO:{variant:\"uJxRpnZoO\"}},G,R)})})]})})})});}),R=['.framer-82yss [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-82yss .framer-7ymlg1 { display: block; }\",\".framer-82yss .framer-1bohwt6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: 95px; justify-content: center; padding: 24px 24px 24px 24px; position: relative; width: 1200px; }\",\".framer-82yss .framer-gos7tq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 32px; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-82yss .framer-18d3b0w { flex: none; height: 54px; position: relative; text-decoration: none; width: 295px; }\",\".framer-82yss .framer-1qijf1x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-82yss .framer-jgreyv { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-82yss .framer-137pwvv { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-82yss .framer-1h5lioi { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-82yss .framer-1pppoqp, .framer-82yss .framer-hcykue, .framer-82yss .framer-qjqkqu { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-82yss .framer-m3pwmm-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-82yss .framer-1bohwt6 { gap: 0px; } .framer-82yss .framer-1bohwt6 > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-82yss .framer-1bohwt6 > :first-child { margin-left: 0px; } .framer-82yss .framer-1bohwt6 > :last-child { margin-right: 0px; } }\",\".framer-82yss.framer-v-7irk5y .framer-1bohwt6 { gap: 34px; width: 810px; }\",\".framer-82yss.framer-v-7irk5y .framer-18d3b0w, .framer-82yss.framer-v-1d6vfsw .framer-18d3b0w, .framer-82yss.framer-v-fm6rdd .framer-18d3b0w { height: 50px; width: 273px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-82yss.framer-v-7irk5y .framer-1bohwt6 { gap: 0px; } .framer-82yss.framer-v-7irk5y .framer-1bohwt6 > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-82yss.framer-v-7irk5y .framer-1bohwt6 > :first-child { margin-left: 0px; } .framer-82yss.framer-v-7irk5y .framer-1bohwt6 > :last-child { margin-right: 0px; } }\",\".framer-82yss.framer-v-1d6vfsw .framer-1bohwt6 { width: 390px; }\",\".framer-82yss.framer-v-1d6vfsw .framer-gos7tq { height: min-content; }\",\".framer-82yss.framer-v-1d6vfsw .framer-1qijf1x, .framer-82yss.framer-v-fm6rdd .framer-1qijf1x { cursor: pointer; }\",\".framer-82yss.framer-v-fm6rdd .framer-1bohwt6 { flex-direction: column; height: min-content; padding: 24px 24px 60px 24px; width: 390px; }\",\".framer-82yss.framer-v-fm6rdd .framer-gos7tq { flex: none; height: min-content; width: 100%; }\",\".framer-82yss.framer-v-fm6rdd .framer-jgreyv { bottom: 15px; }\",\".framer-82yss.framer-v-fm6rdd .framer-137pwvv { left: calc(50.00000000000002% - 2px / 2); width: 2px; }\",\".framer-82yss.framer-v-fm6rdd .framer-1h5lioi { top: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-82yss.framer-v-fm6rdd .framer-1bohwt6 { gap: 0px; } .framer-82yss.framer-v-fm6rdd .framer-1bohwt6 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-82yss.framer-v-fm6rdd .framer-1bohwt6 > :first-child { margin-top: 0px; } .framer-82yss.framer-v-fm6rdd .framer-1bohwt6 > :last-child { margin-bottom: 0px; } }\",...x.css],B=h(N,R,\"framer-82yss\");export default B;B.displayName=\"Navbar\",B.defaultProps={height:95,width:1200},C(B,{variant:{options:[\"X5BoG6Uce\",\"MYZHtk_Yv\",\"zFhUYG16G\",\"lxHpHdsVO\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:a.Enum}}),e(B,[{family:\"Rokkitt Bold\",url:\"https://framerusercontent.com/assets/PkVx4MLp7cz3SmR95Sd54eIIE.ttf\"},...v,...x.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTsT1uSLmo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MYZHtk_Yv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zFhUYG16G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lxHpHdsVO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"95\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TsT1uSLmo.map"],
  "mappings": "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",
  "names": ["t", "e", "i", "s", "Animate", "r", "o", "l", "Dimensions", "n", "window", "Emitter", "VirtualScroll", "Lenis", "h", "a", "c", "d", "p", "u", "m", "v", "g", "w", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "Lenis", "raf", "time", "p", "l", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "callToAction", "height", "id", "link", "width", "props", "ref", "_variant", "ref1", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "PQe6s_mWx", "lsvDXX3UC", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "RichText2", "x", "css", "FramernMKAzaPai", "withCSS", "nMKAzaPai_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "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", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "css", "Framerqrf8KmoXV", "withCSS", "qrf8KmoXV_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "v", "getFonts", "nMKAzaPai_default", "b", "u", "k", "L", "r", "e", "H", "O", "C", "re", "MotionConfigContext", "t", "se", "p", "G", "T", "a", "I", "N", "Y", "useLocaleInfo", "o", "h", "c", "v", "w", "R", "B", "U", "V", "useVariantState", "b", "P", "z", "F", "useActiveVariantCallback", "q", "E", "j", "pe", "A", "useRouter", "Q", "ae", "D", "className", "LayoutGroup", "motion", "cx", "Link", "SVG", "RichText2", "x", "nMKAzaPai_default", "resolveLink", "css", "withCSS", "TsT1uSLmo_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
