{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/tOXCPdQYpsUj2MdDQefp/YbFkYIY4yQrhDEXLhb4D/c86B2sMpk.js", "ssg:https://framerusercontent.com/modules/lHwoIO2QSZT8YTLFON0a/mOZBIBsgvaUvSq4qWARO/l_0_loIIl.js", "ssg:https://framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js", "ssg:https://framerusercontent.com/modules/D6nWiXFnWwpzi9827aKu/BP0H7pxs0Q8Ht99LZrNp/pIO1OIe3S.js", "ssg:https://framerusercontent.com/modules/n3g4LEHd4SKHHcZrJExX/EDTRZuSIVjunbnvu77mj/IKBI1IOxj.js", "ssg:https://framerusercontent.com/modules/cE5XNkCOrhSvZL5BY2Aa/YBOpXHmo7iI3IYjcam9c/KJtR3Li1S.js"],
  "sourcesContent": ["function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,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(t,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import Lenis from\"lenis\";import{useEffect,useRef}from\"react\";function SmoothScrollComponent(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current){try{lenis.current.scrollTo(0,{immediate:true});}catch(error){console.error(\"Error scrolling to top:\",error);}}},[lenis]);// Watch for stop scroll elements\nuseEffect(()=>{const checkForStopScroll=()=>{try{const stopScrollElement=document.querySelector(\"[data-frameruni-stop-scroll]\");const htmlElement=document.documentElement;const hasHiddenOverflow=htmlElement&&htmlElement.style&&htmlElement.style.overflow===\"hidden\";if(lenis.current){if(stopScrollElement||hasHiddenOverflow){lenis.current.stop();}else{lenis.current.start();}}}catch(error){console.error(\"Error in checkForStopScroll:\",error);}};// Initial check\ncheckForStopScroll();// Set up observers\nlet stopScrollObserver;let htmlStyleObserver;try{stopScrollObserver=new MutationObserver(checkForStopScroll);htmlStyleObserver=new MutationObserver(checkForStopScroll);// Observe document for data-frameruni-stop-scroll attribute\nif(document&&document.documentElement){stopScrollObserver.observe(document.documentElement,{childList:true,subtree:true,attributes:true,attributeFilter:[\"data-frameruni-stop-scroll\"]});// Observe only the HTML element for style changes\nhtmlStyleObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});}}catch(error){console.error(\"Error setting up observers:\",error);}return()=>{try{if(stopScrollObserver)stopScrollObserver.disconnect();if(htmlStyleObserver)htmlStyleObserver.disconnect();}catch(error){console.error(\"Error disconnecting observers:\",error);}};},[]);useEffect(()=>{try{if(!document)return;const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];if(!element)continue;try{const computedStyle=window.getComputedStyle(element);if(computedStyle&&computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}catch(styleError){console.error(\"Error getting computed style:\",styleError);}}}catch(error){console.error(\"Error in overflow detection:\",error);}},[]);useEffect(()=>{try{if(typeof Lenis!==\"function\"){console.error(\"Lenis is not available\");return;}lenis.current=new Lenis({duration:(intensity||10)/10});const raf=time=>{if(lenis.current){try{lenis.current.raf(time);requestAnimationFrame(raf);}catch(error){console.error(\"Error in animation frame:\",error);}}};const animationId=requestAnimationFrame(raf);return()=>{cancelAnimationFrame(animationId);if(lenis.current){try{lenis.current.destroy();lenis.current=null;}catch(error){console.error(\"Error destroying Lenis:\",error);}}};}catch(error){console.error(\"Error initializing Lenis:\",error);return()=>{};}},[intensity]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{try{if(!document||!lenis.current)return;// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=Array.from(document.querySelectorAll(\"a[href]\")||[]).filter(element=>{if(!element)return false;const anchor=element;if(!anchor.href)return false;// Only handle internal anchor links\nconst isInternalLink=anchor.href.startsWith(window.location.origin)||anchor.href.startsWith(\"./\")||anchor.href.startsWith(\"/\");const hasHash=anchor.href.includes(\"#\");return isInternalLink&&hasHash;}).map(anchor=>{try{const anchorElement=anchor;const href=anchorElement.href.includes(\"#\")?`#${anchorElement.href.split(\"#\").pop()}`:\"\";const decodedHref=href?decodeURIComponent(href):\"\";let scrollMargin=0;try{if(decodedHref){const targetElement=document.querySelector(decodedHref);if(targetElement){const marginStyle=window.getComputedStyle(targetElement).scrollMarginTop;scrollMargin=marginStyle?parseInt(marginStyle)||0:0;}}}catch(targetError){console.error(\"Error finding target element:\",targetError);}return{href,scrollMargin,anchorElement:anchorElement};}catch(anchorError){console.error(\"Error processing anchor:\",anchorError);return null;}}).filter(Boolean);const handleClick=(e,href,scrollMargin)=>{try{if(e&&e.preventDefault)e.preventDefault();if(lenis.current&&href){lenis.current.scrollTo(href,{offset:-(scrollMargin||0)});}}catch(error){console.error(\"Error in anchor click handler:\",error);}};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.addEventListener(\"click\",handlers[index]);}});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.removeEventListener(\"click\",handlers[index]);}});};}catch(error){console.error(\"Error setting up anchor links:\",error);return()=>{};}},[lenis]);return /*#__PURE__*/_jsx(\"div\",{style:props.style});}/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */const SmoothScroll=withCSS(SmoothScrollComponent,[\"html.lenis { height: auto; }\",\".lenis.lenis-smooth { scroll-behavior: auto !important; }\",\".lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }\",\".lenis.lenis-stopped { overflow: hidden; }\",\".lenis.lenis-scrolling iframe { pointer-events: none; }\"],\"\");export default SmoothScroll;SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:0,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (cf4c6d7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Fx0q5 .framer-styles-preset-16hytu0:not(.rich-text-wrapper), .framer-Fx0q5 .framer-styles-preset-16hytu0.rich-text-wrapper a { --framer-link-current-text-color: var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, #88857c); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #66635c); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, #88857c); --framer-link-text-decoration: underline; transition: color 0.2s cubic-bezier(0.5, 0, 0.88, 0.77) 0s; }\"];export const className=\"framer-Fx0q5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BDO Grotesk Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BDO Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/yI5Y8rw8NKuGVlhjGzBEiYxA4j4.woff2\"}]}];export const css=[\".framer-TbTKm .framer-styles-preset-b7ltg5:not(.rich-text-wrapper), .framer-TbTKm .framer-styles-preset-b7ltg5.rich-text-wrapper p { --framer-font-family: \\\"BDO Grotesk Medium\\\", \\\"BDO Grotesk Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'case' on; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 158%; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #6e6b63); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-TbTKm .framer-styles-preset-b7ltg5:not(.rich-text-wrapper), .framer-TbTKm .framer-styles-preset-b7ltg5.rich-text-wrapper p { --framer-font-family: \\\"BDO Grotesk Medium\\\", \\\"BDO Grotesk Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'case' on; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 158%; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #6e6b63); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-TbTKm .framer-styles-preset-b7ltg5:not(.rich-text-wrapper), .framer-TbTKm .framer-styles-preset-b7ltg5.rich-text-wrapper p { --framer-font-family: \\\"BDO Grotesk Medium\\\", \\\"BDO Grotesk Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'case' on; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 158%; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #6e6b63); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-TbTKm\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef,useMemo}from\"react\";import{useInView,animate}from\"framer-motion\";const HIDDEN=0;const SCRAMBLED=1;const REVEALED=2;/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function ScrambleAppear(props){var _props_style;const{from,scrambledLetters,text,scrambledColor,animation,speed}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const Tag=props.tag;const ref=useRef(null);const encryptedText=useRef(randomString(props));const[progress,setProgress]=useState(0);const[currentAnimation,setCurrentAnimation]=useState(null);const intervalRef=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const characterDelay=mapRange(speed,1,100,.2,.002)// seconds per character\n;const shuffledIndices=useMemo(()=>{if(from===\"random\"){const indices=Array.from({length:text.length},(_,i)=>i);return indices.sort(()=>Math.random()-.5);}return[];},[text,from]);const runAnimation=()=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}if(intervalRef.current){clearInterval(intervalRef.current);}// Add timeout for delay\nsetTimeout(()=>{intervalRef.current=setInterval(()=>{encryptedText.current=randomString(props);},characterDelay*1e3);setCurrentAnimation(animate(0,1,{type:\"ease\",ease:\"linear\",duration:characterDelay*(text.length+scrambledLetters),onUpdate:setProgress,onComplete:()=>{if(intervalRef.current){clearInterval(intervalRef.current);}}}));},animation.delay*1e3);}};useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}return()=>{if(intervalRef.current){clearInterval(intervalRef.current);}};},[]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else{if(currentAnimation){currentAnimation.stop();setProgress(0);if(intervalRef.current){clearInterval(intervalRef.current);}}}}},[isInView]);let segments=[];switch(from){case\"left\":{const leftCutoff=mapRange(progress,0,1,-scrambledLetters,text.length);const rightCutoff=mapRange(progress,0,1,0,text.length+scrambledLetters);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),REVEALED],[encryptedText.current.substring(clamp(leftCutoff,0,text.length),clamp(rightCutoff,0,text.length)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,text.length)),HIDDEN]);break;}case\"center\":{const center=Math.ceil(text.length/2);const letters=Math.max(Math.floor(scrambledLetters/2),1);const leftCutoff=mapRange(progress,0,1,center,-letters);const rightCutoff=mapRange(progress,0,1,center+letters,0);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),HIDDEN],[encryptedText.current.substring(clamp(leftCutoff,0,center),clamp(rightCutoff,0,center)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,center),clamp(text.length-rightCutoff,center,text.length)),REVEALED],[encryptedText.current.substring(clamp(text.length-leftCutoff,center,text.length),clamp(text.length-rightCutoff,center,text.length)),SCRAMBLED],[text.substring(clamp(text.length-leftCutoff,0,text.length),text.length),HIDDEN]);break;}case\"right\":{const leftCutoff=mapRange(progress,0,1,text.length,-scrambledLetters);const rightCutoff=mapRange(progress,0,1,text.length+scrambledLetters,0);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),HIDDEN],[encryptedText.current.substring(clamp(leftCutoff,0,text.length),clamp(rightCutoff,0,text.length)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,text.length),text.length),REVEALED]);break;}case\"random\":{// Show all hidden characters if progress is 0 (during delay)\nif(progress===0){segments.push([text,HIDDEN]);}else if(progress>=1){segments.push([text,REVEALED]);}else{// Calculate two thresholds for each character based on its position in shuffledIndices\nfor(let i=0;i<text.length;i++){const indexInSequence=shuffledIndices.indexOf(i);// Adjust the windows to maintain consistent number of scrambled letters\nconst scrambleWindow=scrambledLetters/text.length// Size of the \"window\" of scrambled letters\n;const startScrambleAt=indexInSequence/text.length*(1-scrambleWindow)// When this character starts scrambling\n;const startRevealAt=startScrambleAt+scrambleWindow// When this character starts revealing\n;if(progress>=startRevealAt){// Past reveal threshold - show actual character\nsegments.push([text[i],REVEALED]);}else if(progress>=startScrambleAt){// Between scramble and reveal threshold - show scrambled\nsegments.push([encryptedText.current[i],SCRAMBLED]);}else{// Before scramble threshold - show hidden\nsegments.push([text[i],HIDDEN]);}}}break;}}return /*#__PURE__*/_jsx(Tag,{ref:ref,style:{color:props.color,userSelect:\"none\",pointerEvents:\"none\",margin:0,whiteSpace:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)?undefined:\"nowrap\",...props.font,...props.style},children:isCanvas?text:consolidateSegments(segments).map(([text,state],index)=>{switch(state){case HIDDEN:return /*#__PURE__*/_jsx(\"span\",{style:{opacity:0},children:text},index);case SCRAMBLED:return scrambledColor?/*#__PURE__*/_jsx(\"span\",{style:{color:scrambledColor},children:text},index):text;case REVEALED:return text;}})});}ScrambleAppear.displayName=\"Scramble Appear\";addPropertyControls(ScrambleAppear,{text:{type:ControlType.String,defaultValue:\"Learn Framer With Framer University\",displayTextArea:true},characters:{type:ControlType.String,defaultValue:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",displayTextArea:true},from:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"center\",\"right\",\"random\"],optionTitles:[\"Left\",\"Center\",\"Right\",\"Random\"]},font:{type:\"font\",controls:\"extended\",defaultFontType:\"monospace\",defaultValue:{fontSize:24,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#000\"},scrambledColor:{type:ControlType.Color,optional:true,title:\"Scrambled\"},speed:{type:ControlType.Number,defaultValue:75,min:1,max:100,step:1,unit:\"%\"},scrambledLetters:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,title:\"Letters\"},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.trigger!==\"layerInView\"},delay:{type:ControlType.Number,defaultValue:0,min:0,step:.01}}},options:{type:ControlType.Object,buttonTitle:\"Options\",controls:{matchCase:{type:ControlType.Boolean,defaultValue:true},keepSpaces:{type:ControlType.Boolean,defaultValue:false,title:\"Spaces\",enabledTitle:\"Keep\",disabledTitle:\"Replace\",description:\"\"}}},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const randomString=props=>{const length=props.text.length;const characters=props.characters;const originalText=props.text;const matchCase=props.options.matchCase;const keepSpaces=props.options.keepSpaces;if(length<=0){return\"\";}let result=\"\";let lastChar=\"\";for(let i=0;i<length;i++){const originalChar=originalText[i];// Preserve spaces and tabs if keepSpaces is true\nif(keepSpaces&&(originalChar===\" \"||originalChar===\"\t\")){result+=originalChar;continue;}let newChar;do{newChar=characters[Math.floor(Math.random()*characters.length)];// Match case if matchCase is true\nif(matchCase&&originalChar){newChar=originalChar===originalChar.toUpperCase()?newChar.toUpperCase():newChar.toLowerCase();}}while(newChar===lastChar&&characters.length>=8)result+=newChar;lastChar=newChar;}return result;};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}function clamp(value,min,max){return Math.max(min,Math.min(value,max));}function consolidateSegments(segments){return segments.filter(([text])=>text.length>0).reduce((acc,curr)=>{// If array is empty or last segment has different state, add new segment\nif(acc.length===0||acc[acc.length-1][1]!==curr[1]){acc.push(curr);}else{// Combine text with the last segment that has the same state\nacc[acc.length-1][0]+=curr[0];}return acc;},[]);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrambleAppear\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrambleAppear_Prod.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Link,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ScrambleAppear from\"https://framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js\";const ScrambleAppearFonts=getFonts(ScrambleAppear);const enabledGestures={AOtezifos:{hover:true}};const serializationHash=\"framer-L3khs\";const variantClassNames={AOtezifos:\"framer-v-3r185b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"AOtezifos\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"AOtezifos-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://connormckenzie.ca/\",motionChild:true,nodeId:\"AOtezifos\",openInNewTab:true,scopeId:\"pIO1OIe3S\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-3r185b\",className,classNames)} framer-1qm67b5`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"AOtezifos\",ref:refBinding,style:{...style},...addPropertyOverrides({\"AOtezifos-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bchl20-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"x9_qcw_BR-container\",nodeId:\"x9_qcw_BR\",rendersWithMotion:true,scopeId:\"pIO1OIe3S\",children:/*#__PURE__*/_jsx(ScrambleAppear,{animation:{delay:0,replay:true,trigger:\"layerInView\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",color:\"var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(112, 110, 102))\",font:{fontFamily:'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',fontFeatureSettings:\"'ss01' on\",fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1%\"},from:\"left\",height:\"100%\",id:\"x9_qcw_BR\",layoutId:\"x9_qcw_BR\",options:{keepSpaces:false,matchCase:true},scrambledLetters:10,speed:75,style:{height:\"100%\"},tag:\"p\",text:\"Built by Kintsu Labs\",userSelect:true,width:\"100%\",...addPropertyOverrides({\"AOtezifos-hover\":{color:\"var(--token-228c8879-4292-4f7e-9c28-dc53d02a6cd9, rgb(78, 73, 70))\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h78fvp\",\"data-framer-name\":\"Unknown\",fill:'var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(112, 110, 102)) /* {\"name\":\"low-emphasis\"} */',intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"lr9Ztcwwu\",style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M6.4 18 5 16.6 14.6 7H6V5h12v12h-2V8.4z\"/></svg>',variants:{\"AOtezifos-hover\":{opacity:1}},withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L3khs.framer-1qm67b5, .framer-L3khs .framer-1qm67b5 { display: block; }\",\".framer-L3khs.framer-3r185b { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 17px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 134px; }\",\".framer-L3khs .framer-bchl20-container { flex: none; height: 1px; position: relative; width: auto; }\",\".framer-L3khs .framer-h78fvp { flex: none; height: 18px; position: relative; width: 18px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L3khs.framer-3r185b { gap: 0px; } .framer-L3khs.framer-3r185b > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-L3khs.framer-3r185b > :first-child { margin-left: 0px; } .framer-L3khs.framer-3r185b > :last-child { margin-right: 0px; } }\",\".framer-L3khs.framer-v-3r185b.hover.framer-3r185b { gap: 4px; width: 156px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L3khs.framer-v-3r185b.hover.framer-3r185b { gap: 0px; } .framer-L3khs.framer-v-3r185b.hover.framer-3r185b > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-L3khs.framer-v-3r185b.hover.framer-3r185b > :first-child { margin-left: 0px; } .framer-L3khs.framer-v-3r185b.hover.framer-3r185b > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17\n * @framerIntrinsicWidth 134\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IQfYdv_Cu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpIO1OIe3S=withCSS(Component,css,\"framer-L3khs\");export default FramerpIO1OIe3S;FramerpIO1OIe3S.displayName=\"n-button/footer-credit\";FramerpIO1OIe3S.defaultProps={height:17,width:134};addFonts(FramerpIO1OIe3S,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/4B27WrlzB4AxIVHj6sX0roVKw.woff2\"}]},...ScrambleAppearFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpIO1OIe3S\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"134\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"17\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IQfYdv_Cu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pIO1OIe3S.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/tOXCPdQYpsUj2MdDQefp/YbFkYIY4yQrhDEXLhb4D/c86B2sMpk.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/74Pu1rr6abztkB3F3pbp/TtzJ6uu5MbmTcfozyXcv/HBocL9_Yn.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/fvRpvbCaeFsye3ihO2W5/V9wUU3rJcb3pTCJLeZf3/hnfbU_1Oq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tstAabYSZmnK5enCdCCs/WJRzK8TYhc17HAPsDjxy/KGG7Ld_43.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/l7jrchVlfoVbe9Xj4QlR/iiX6UbVLhUXrwjfdqqxy/kGgkAs5Fk.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/lHwoIO2QSZT8YTLFON0a/mOZBIBsgvaUvSq4qWARO/l_0_loIIl.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8eWxxjpHgglEQCxUrmkb/7g16rodLwxKQD2ykqO6B/qB6rJF5Oa.js\";import DefaultButtons from\"https://framerusercontent.com/modules/vl4p6aghYU7ZFPlmCIse/srrp6uSZQAzGFvklOwu1/bNtPL4xT9.js\";import ComingSoonDel from\"https://framerusercontent.com/modules/ljjG7GzAAd2WZ7yQ5YbF/HcuWEJ8gKL6hQCjZOEwD/OYz_O34n6.js\";import ElementSectionDivider from\"https://framerusercontent.com/modules/gux0Lt2mnBmef88v8SWh/BGchmLK9CWz99bGzLz45/OzZy2ETjR.js\";import ElementBgNoise from\"https://framerusercontent.com/modules/zTwCiA8389AESJn2y1lb/RymnKqwX8fj2Vf68t2st/PIA3oVW4N.js\";import NButtonFooterCredit from\"https://framerusercontent.com/modules/D6nWiXFnWwpzi9827aKu/BP0H7pxs0Q8Ht99LZrNp/pIO1OIe3S.js\";const ElementBgNoiseFonts=getFonts(ElementBgNoise);const DefaultButtonsFonts=getFonts(DefaultButtons);const ComingSoonDelFonts=getFonts(ComingSoonDel);const MotionDivWithFX=withFX(motion.div);const ElementSectionDividerFonts=getFonts(ElementSectionDivider);const NButtonFooterCreditFonts=getFonts(NButtonFooterCredit);const cycleOrder=[\"oh25YprNK\",\"pYaeQ3xiR\",\"anz_3irvz\"];const serializationHash=\"framer-pXdW3\";const variantClassNames={anz_3irvz:\"framer-v-1epmjf1\",oh25YprNK:\"framer-v-1l6782o\",pYaeQ3xiR:\"framer-v-hmu757\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-4,y:0};const transition2={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"oh25YprNK\",Phone:\"anz_3irvz\",Tablet:\"pYaeQ3xiR\"};const getProps=({animationTrigger,height,id,width,...props})=>{return{...props,fRyyj0gQ_:animationTrigger??props.fRyyj0gQ_,variant:humanReadableVariantMap[props.variant]??props.variant??\"oh25YprNK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,fRyyj0gQ_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oh25YprNK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1l6782o\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oh25YprNK\",ref:refBinding,style:{backgroundColor:\"var(--token-f22a20e5-6f57-41dd-b4a1-c014b89eff48, rgb(243, 239, 237))\",...style},...addPropertyOverrides({anz_3irvz:{\"data-framer-name\":\"Phone\"},pYaeQ3xiR:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||1241)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,...addPropertyOverrides({anz_3irvz:{height:(componentViewport?.height||2690.5)-0},pYaeQ3xiR:{height:(componentViewport?.height||1674.5)-0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17vocoq-container\",layoutDependency:layoutDependency,layoutId:\"wKZorrVUt-container\",nodeId:\"wKZorrVUt\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(ElementBgNoise,{height:\"100%\",id:\"wKZorrVUt\",layoutId:\"wKZorrVUt\",style:{height:\"100%\",width:\"100%\"},variant:\"xC7bBsxQL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t93s45\",\"data-framer-name\":\"padding\",layoutDependency:layoutDependency,layoutId:\"JMcXdmi_3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ozqpre\",\"data-framer-name\":\"max-width\",layoutDependency:layoutDependency,layoutId:\"boN0UoS2g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-69rx0l\",layoutDependency:layoutDependency,layoutId:\"bG4Bl5Sel\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:fRyyj0gQ_,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sgq171\",\"data-framer-name\":\"header\",layoutDependency:layoutDependency,layoutId:\"z9dz6zz6P\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bdsri0\",\"data-framer-name\":\"footer-header\",layoutDependency:layoutDependency,layoutId:\"w64WNK4TN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rf3wd\",layoutDependency:layoutDependency,layoutId:\"xAuf7r1P5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-144yzyo\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"E4wXre94f\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+0+0+0+0+0+0+0+2.56),pixelHeight:281,pixelWidth:280,src:\"https://framerusercontent.com/images/0fX2M8upX6fBBfRj76cpReKGoHc.svg\"},className:\"framer-1gmetku\",layoutDependency:layoutDependency,layoutId:\"BAYV0fZRG\",style:{filter:\"brightness(0.88) contrast(0.88)\",WebkitFilter:\"brightness(0.88) contrast(0.88)\"},...addPropertyOverrides({anz_3irvz:{background:{alt:\"\",fit:\"fill\",pixelHeight:281,pixelWidth:280,src:\"https://framerusercontent.com/images/0fX2M8upX6fBBfRj76cpReKGoHc.svg\"}},pYaeQ3xiR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+0+0+0+0+0+0+0+0+2.56),pixelHeight:281,pixelWidth:280,src:\"https://framerusercontent.com/images/0fX2M8upX6fBBfRj76cpReKGoHc.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ztiwa6\",layoutDependency:layoutDependency,layoutId:\"HsvCzm4lo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-q6fse6\",\"data-styles-preset\":\"qB6rJF5Oa\",children:\"The Calgary Legal Team\"})}),className:\"framer-euzy63\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DOjbOuUFH\",variants:{anz_3irvz:{\"--extracted-a0htzi\":\"var(--token-228c8879-4292-4f7e-9c28-dc53d02a6cd9, rgb(78, 73, 70))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"128%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-228c8879-4292-4f7e-9c28-dc53d02a6cd9, rgb(78, 73, 70)))\"},children:\"The Calgary Legal Team\"})}),fonts:[\"CUSTOM;BDO Grotesk Regular\"],viewBox:\"0 0 327.3 37\"}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rukhth\",\"data-framer-name\":\"subheading\",layoutDependency:layoutDependency,layoutId:\"eqLV6TXwV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124)))\"},children:\"We are The Calgary Legal Team \u2014 a firm with expertise trusted by leading publications, professional bodies, and clients alike. We help protect your interests and secure new opportunities.\"})}),className:\"framer-147kgme\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UUf_YlwDa\",style:{\"--extracted-r6o4lv\":\"var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124)))\"},children:\"We are The Calgary Legal Team \u2014 a firm with expertise trusted by leading publications, professional bodies, and clients alike. We help protect your interests and secure new opportunities.\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dx9wxu\",layoutDependency:layoutDependency,layoutId:\"TCuA6zzCZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px, 1440px), 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+0+0+0+0+37.21+0+0,...addPropertyOverrides({anz_3irvz:{height:56,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 1440px), 1px)`,y:undefined},pYaeQ3xiR:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 64px, 1440px), 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+0+0+0+0+0+227.42+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ysnqt-container\",layoutDependency:layoutDependency,layoutId:\"SjUljY7f4-container\",nodeId:\"SjUljY7f4\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(DefaultButtons,{dJvf3VzXz:\"https://calgarylegalteam.lawbrokr.com/\",DQk6MOD08:true,Fl76NfXR2:\"arrowforward\",height:\"100%\",id:\"SjUljY7f4\",layoutId:\"SjUljY7f4\",mwCLWGN_z:\"12px 16px 12px 16px\",n00zyfODV:\"Request a Consultation\",oRAD_qb7M:\"pointer\",p1pTGpOwr:\"PFfE2Ytb3\",p7FIi4UnE:true,style:{height:\"100%\",width:\"100%\"},T4vSNe2IZ:false,variant:\"j0hUnKInM\",width:\"100%\",WZIseqKmb:\"var(--token-58089363-c701-4e6e-8349-739ea24dbcbf, rgb(248, 246, 244))\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19h1al4\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XPk308hJA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+0+0+0+0+37.21+0+70+-12,...addPropertyOverrides({anz_3irvz:{y:undefined},pYaeQ3xiR:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+0+0+0+0+0+227.42+0+70+-12}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ar1xwd-container\",layoutDependency:layoutDependency,layoutId:\"XPk308hJAHd65f75go-container\",nodeId:\"XPk308hJAHd65f75go\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(ComingSoonDel,{height:\"100%\",id:\"XPk308hJAHd65f75go\",layoutId:\"XPk308hJAHd65f75go\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px, 1440px), 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+0+0+0+0+37.21+0+70+0,...addPropertyOverrides({anz_3irvz:{height:56,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 1440px), 1px)`,y:undefined},pYaeQ3xiR:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 64px, 1440px), 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+0+0+0+0+0+227.42+0+70+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rsfcw4-container\",layoutDependency:layoutDependency,layoutId:\"XPk308hJAvzoe_zTuE-container\",nodeId:\"XPk308hJAvzoe_zTuE\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(DefaultButtons,{DQk6MOD08:false,Fl76NfXR2:\"arrowforward\",height:\"100%\",id:\"XPk308hJAvzoe_zTuE\",layoutId:\"XPk308hJAvzoe_zTuE\",mwCLWGN_z:\"14px 28px 14px 28px\",n00zyfODV:\"View Our Consultation Guide\",oRAD_qb7M:\"not-allowed\",p1pTGpOwr:\"BbT_B_IUb\",p7FIi4UnE:false,style:{width:\"100%\"},T4vSNe2IZ:true,variant:\"mExLLicZ7\",width:\"100%\",WZIseqKmb:\"var(--token-58089363-c701-4e6e-8349-739ea24dbcbf, rgb(248, 246, 244))\",...addPropertyOverrides({anz_3irvz:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px, 1440px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+259.42,...addPropertyOverrides({anz_3irvz:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 1440px)`,y:undefined},pYaeQ3xiR:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 64px, 1440px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+394.42}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ktnsp1-container\",layoutDependency:layoutDependency,layoutId:\"PAQCJrr66-container\",nodeId:\"PAQCJrr66\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(ElementSectionDivider,{height:\"100%\",id:\"PAQCJrr66\",layoutId:\"PAQCJrr66\",PXljihJXD:\"var(--token-e3d81bf4-d994-40ee-8959-ed7c090f7836, rgb(216, 206, 201))\",style:{width:\"100%\"},variant:\"DICJQ4h81\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qpih9j\",\"data-framer-name\":\"global-nav-links\",layoutDependency:layoutDependency,layoutId:\"s4iFaOy7k\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yi08vo\",\"data-framer-name\":\"footer-main-links\",layoutDependency:layoutDependency,layoutId:\"hmcSSaCUh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-auqtu3\",\"data-framer-name\":\"01-main\",layoutDependency:layoutDependency,layoutId:\"UbNByMZ1V\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7ltg5\",\"data-styles-preset\":\"l_0_loIIl\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CIgvTOIFN\"},motionChild:true,nodeId:\"KB7yWpHrL\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1b1uzli\",\"data-styles-preset\":\"hnfbU_1Oq\",children:\"Main\"})})})}),className:\"framer-s4anwa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KB7yWpHrL\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3gq853\",\"data-framer-name\":\"nest\",layoutDependency:layoutDependency,layoutId:\"TugRWdK0d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CIgvTOIFN\"},motionChild:true,nodeId:\"UXeVMWMfT\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Home\"})})})}),className:\"framer-109wd39\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UXeVMWMfT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"I7nld2_cU\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Practice Areas\"})})})}),className:\"framer-1oog7x5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I7nld2_cU\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ccvKkv6OT\"},motionChild:true,nodeId:\"ttDjc_z7m\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"About\"})})})}),className:\"framer-1ha8zp1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ttDjc_z7m\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nyqFCg9Wz\"},motionChild:true,nodeId:\"RJX_D9Rm1\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Notable Work\"})})})}),className:\"framer-1b0p8vf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RJX_D9Rm1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hvDhfgSf_\"},motionChild:true,nodeId:\"j15wbo_cP\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Contact\"})})})}),className:\"framer-11l53uo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j15wbo_cP\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s7gsj1\",\"data-framer-name\":\"02-services\",layoutDependency:layoutDependency,layoutId:\"sUrntxMMt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7ltg5\",\"data-styles-preset\":\"l_0_loIIl\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"o_HcBkzP0\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1b1uzli\",\"data-styles-preset\":\"hnfbU_1Oq\",children:\"Practice Areas\"})})})}),className:\"framer-cyut2e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o_HcBkzP0\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8savyb\",\"data-framer-name\":\"nest\",layoutDependency:layoutDependency,layoutId:\"XhmphlKXL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":kSfMX8dDo\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"RD3lGMxyz\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Civil Litigation\"})})})}),className:\"framer-irikjw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RD3lGMxyz\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":fTCh8ikDP\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"GiKgA6zUp\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Corporate\"})})})}),className:\"framer-6og3f7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GiKgA6zUp\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":OCOBaZgi7\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"ZwSy0Ssjt\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Crypto & Blockchain\"})})})}),className:\"framer-1k5bqnx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZwSy0Ssjt\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":huS9QF0Fs\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"lF8dTTZRd\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Employment\"})})})}),className:\"framer-g6g6k2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lF8dTTZRd\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":hur6HQz84\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"S7aY5h2be\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Estate Litigation\"})})})}),className:\"framer-wy52i6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7aY5h2be\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":mqwVK_7r5\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"CMMZBXnEJ\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Family\"})})})}),className:\"framer-18dmra0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CMMZBXnEJ\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":H4kdNe8_F\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"DuYwUOyi5\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Tax\"})})})}),className:\"framer-1pnxdyl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DuYwUOyi5\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":JjsMBbsRS\",webPageId:\"uKiOScibL\"},motionChild:true,nodeId:\"kKgqugjsF\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Wills & Estates\"})})})}),className:\"framer-1ayhito\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kKgqugjsF\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bq4k2r\",\"data-framer-name\":\"03-about\",layoutDependency:layoutDependency,layoutId:\"tQG_MYIXa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7ltg5\",\"data-styles-preset\":\"l_0_loIIl\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ccvKkv6OT\"},motionChild:true,nodeId:\"occjNZKNa\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1b1uzli\",\"data-styles-preset\":\"hnfbU_1Oq\",children:\"About\"})})})}),className:\"framer-1byc80q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"occjNZKNa\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pcbn3u\",\"data-framer-name\":\"nest\",layoutDependency:layoutDependency,layoutId:\"caKu8wGcs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":PCjbv2oHT\",webPageId:\"ccvKkv6OT\"},motionChild:true,nodeId:\"QNvfR4ynl\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Our Firm\"})})})}),className:\"framer-6k1zqs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QNvfR4ynl\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":RCk6xZ8Oy\",webPageId:\"ccvKkv6OT\"},motionChild:true,nodeId:\"R9E8ImZ30\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"The Team\"})})})}),className:\"framer-1i1j7j6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R9E8ImZ30\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gd8ib2\",\"data-framer-name\":\"04-notable-work\",layoutDependency:layoutDependency,layoutId:\"SI9kk5Vr1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7ltg5\",\"data-styles-preset\":\"l_0_loIIl\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nyqFCg9Wz\"},motionChild:true,nodeId:\"YgpTQkmC2\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1b1uzli\",\"data-styles-preset\":\"hnfbU_1Oq\",children:\"Notable Work\"})})})}),className:\"framer-d188lz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YgpTQkmC2\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ixy466\",layoutDependency:layoutDependency,layoutId:\"l6yGkLvLI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Z4yju066i\",webPageId:\"nyqFCg9Wz\"},motionChild:true,nodeId:\"UK3Y_a50C\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Articles\"})})})}),className:\"framer-1elbgp6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UK3Y_a50C\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ivGVZ4ZDw\",webPageId:\"nyqFCg9Wz\"},motionChild:true,nodeId:\"WDtr27vsJ\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Recent Decisions\"})})})}),className:\"framer-2ota21\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WDtr27vsJ\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-899e6r\",\"data-framer-name\":\"05-contact\",layoutDependency:layoutDependency,layoutId:\"HOHFuiNYr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7ltg5\",\"data-styles-preset\":\"l_0_loIIl\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hvDhfgSf_\"},motionChild:true,nodeId:\"Vow4Yxhsl\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1b1uzli\",\"data-styles-preset\":\"hnfbU_1Oq\",children:\"Contact\"})})})}),className:\"framer-ri5n07\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Vow4Yxhsl\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9yi1x\",layoutDependency:layoutDependency,layoutId:\"yePyC5Vmp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calgarylegalteam.lawbrokr.com/\",motionChild:true,nodeId:\"VK5MaioHT\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Request a Consultation\"})})})}),className:\"framer-hmieo6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VK5MaioHT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Jlwk09egT\",webPageId:\"hvDhfgSf_\"},motionChild:true,nodeId:\"ZVLnLnjVp\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Contact Information\"})})})}),className:\"framer-kxnbqb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZVLnLnjVp\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":JiJB2ZzmT\",webPageId:\"hvDhfgSf_\"},motionChild:true,nodeId:\"Ow5MijdLa\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Hours of Operation\"})})})}),className:\"framer-l446d2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ow5MijdLa\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WWWXLzwwJ\",webPageId:\"hvDhfgSf_\"},motionChild:true,nodeId:\"FzUMwTfkY\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Staff Directory\"})})})}),className:\"framer-17fgpo0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FzUMwTfkY\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jtlk0i\",\"data-styles-preset\":\"KGG7Ld_43\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":FCuguo197\",webPageId:\"hvDhfgSf_\"},motionChild:true,nodeId:\"sU1F0nBys\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1kh54xn\",\"data-styles-preset\":\"kGgkAs5Fk\",children:\"Frequently Asked\"})})})}),className:\"framer-18td4hq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sU1F0nBys\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px, 1440px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+702.16,...addPropertyOverrides({anz_3irvz:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 32px, 1440px)`,y:undefined},pYaeQ3xiR:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 64px, 1440px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+1146.9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-81ovay-container\",layoutDependency:layoutDependency,layoutId:\"b7nGkALXr-container\",nodeId:\"b7nGkALXr\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(ElementSectionDivider,{height:\"100%\",id:\"b7nGkALXr\",layoutId:\"b7nGkALXr\",PXljihJXD:\"var(--token-e3d81bf4-d994-40ee-8959-ed7c090f7836, rgb(216, 206, 201))\",style:{width:\"100%\"},variant:\"DICJQ4h81\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hlqltc\",layoutDependency:layoutDependency,layoutId:\"Ksd7F_KXS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124)))\"},children:[\"If you have an urgent legal matter requiring immediate attention, current clients should contact their lawyer on file directly as outlined in your retainer agreement. Prospective clients should call our main office at \",/*#__PURE__*/_jsx(Link,{href:\"tel:5875345010\",motionChild:true,nodeId:\"QmMEyJGvV\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"(587) 534-5010\"})}),\". Our consultation form is not monitored for emergency situations.\"]})}),className:\"framer-1rryi5s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QmMEyJGvV\",style:{\"--extracted-r6o4lv\":\"var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124)))\"},children:\"Our pre-screening questionnaire powered by Lawbrokr helps us understand your legal needs before we meet, allowing us to prepare effectively and determine if we are the right fit for your situation. While we treat all information confidentially, completing this questionnaire does not establish a solicitor-client relationship, and information shared is not yet protected by solicitor-client privilege. For complete details on how your information is handled, please review our legal documentation.\"})}),className:\"framer-1gr9o2a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ENr9ZS5of\",style:{\"--extracted-r6o4lv\":\"var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x2x8of\",\"data-framer-name\":\"footer-end\",layoutDependency:layoutDependency,layoutId:\"QsFKSvxdM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19grhww\",\"data-framer-name\":\"social-links\",layoutDependency:layoutDependency,layoutId:\"jE2VCjnw4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12h3q2r\",layoutDependency:layoutDependency,layoutId:\"DL0mpfApn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cd4mpc\",\"data-framer-name\":\"language\",layoutDependency:layoutDependency,layoutId:\"a6O3VWa5F\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wv6rss\",\"data-framer-name\":\"Unknown\",fill:\"var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124))\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"iQpDcCpwT\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M12 22q-2.05 0-3.875-.788t-3.187-2.15-2.15-3.187T2 12q0-2.075.788-3.887t2.15-3.175 3.187-2.15T12 2q2.075 0 3.888.788t3.174 2.15 2.15 3.175T22 12q0 2.05-.788 3.875t-2.15 3.188-3.175 2.15T12 22m0-2.05q.65-.9 1.125-1.875T13.9 16h-3.8q.3 1.1.775 2.075T12 19.95m-2.6-.4q-.45-.825-.787-1.713T8.05 16H5.1q.725 1.25 1.813 2.175T9.4 19.55m5.2 0q1.4-.45 2.488-1.375T18.9 16h-2.95q-.225.95-.562 1.838T14.6 19.55M4.25 14h3.4q-.075-.5-.112-.987T7.5 12t.038-1.012T7.65 10h-3.4q-.125.5-.187.988T4 12t.063 1.013.187.987m5.4 0h4.7q.075-.5.113-.987T14.5 12t-.038-1.012T14.35 10h-4.7q-.075.5-.112.988T9.5 12t.038 1.013.112.987m6.7 0h3.4q.125-.5.188-.987T20 12t-.062-1.012T19.75 10h-3.4q.075.5.113.988T16.5 12t-.038 1.013-.112.987m-.4-6h2.95q-.725-1.25-1.812-2.175T14.6 4.45q.45.825.788 1.713T15.95 8M10.1 8h3.8q-.3-1.1-.775-2.075T12 4.05q-.65.9-1.125 1.875T10.1 8m-5 0h2.95q.225-.95.563-1.838T9.4 4.45Q8 4.9 6.912 5.825T5.1 8\"/></svg>',withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{fill:'var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, rgb(102, 99, 92)) /* {\"name\":\"medium-emphasis\"} */'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124)))\"},children:\"Canada | English\"})}),className:\"framer-1loz2jc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"P7AXpc3Ix\",style:{\"--extracted-r6o4lv\":\"var(--token-f0107b08-6d56-4f45-810f-e661a17b00b1, rgb(136, 133, 124))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{anz_3irvz:{\"--extracted-r6o4lv\":\"var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, rgb(102, 99, 92))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, rgb(102, 99, 92)))\"},children:\"Canada | English\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eFUN41v0r\"},motionChild:true,nodeId:\"h9_y0TWVM\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Calculations\"})})})}),className:\"framer-jr250y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h9_y0TWVM\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eFUN41v0r\"},motionChild:true,nodeId:\"h9_y0TWVM\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Child and Spousal Support Calculations\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mrT9OI7NM\"},motionChild:true,nodeId:\"ocKfS4K_c\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Terms\"})})})}),className:\"framer-dclxl9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ocKfS4K_c\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mrT9OI7NM\"},motionChild:true,nodeId:\"ocKfS4K_c\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Terms and Conditions\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Hiyyu_8xJ\"},motionChild:true,nodeId:\"bchFA4jC1\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Privacy\"})})})}),className:\"framer-y6zlfo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bchFA4jC1\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Hiyyu_8xJ\"},motionChild:true,nodeId:\"bchFA4jC1\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"daenJBxGC\"},motionChild:true,nodeId:\"tNnxvdXGv\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Feedback\"})})})}),className:\"framer-1f8xr9g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tNnxvdXGv\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"daenJBxGC\"},motionChild:true,nodeId:\"tNnxvdXGv\",openInNewTab:false,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Website Feedback Form\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4lsowf\",layoutDependency:layoutDependency,layoutId:\"o62SLIc0z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/calgarylegalteam/\",motionChild:true,nodeId:\"p1HDCk8Cy\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"LinkedIn\"})})})}),className:\"framer-za7hfp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p1HDCk8Cy\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/calgarylegalteam/\",motionChild:true,nodeId:\"p1HDCk8Cy\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"LinkedIn\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/Calgarylegalteam.ca\",motionChild:true,nodeId:\"XvQntE8BS\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Facebook\"})})})}),className:\"framer-11k4jom\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XvQntE8BS\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/Calgarylegalteam.ca\",motionChild:true,nodeId:\"XvQntE8BS\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Facebook\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCsWnpa-Tn5HXs91qUdU-LBA\",motionChild:true,nodeId:\"vQfu3UFuY\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"YouTube\"})})})}),className:\"framer-pxml8s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vQfu3UFuY\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCsWnpa-Tn5HXs91qUdU-LBA\",motionChild:true,nodeId:\"vQfu3UFuY\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"YouTube\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/thecalgarylegalteam/\",motionChild:true,nodeId:\"yEhUmSmNI\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Instagram\"})})})}),className:\"framer-19jn9g0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yEhUmSmNI\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/thecalgarylegalteam/\",motionChild:true,nodeId:\"yEhUmSmNI\",openInNewTab:true,scopeId:\"IKBI1IOxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16hytu0\",\"data-styles-preset\":\"c86B2sMpk\",children:\"Instagram\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kg65db\",layoutDependency:layoutDependency,layoutId:\"WwSvwVQWR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zprx9q\",layoutDependency:layoutDependency,layoutId:\"uexscgn19\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, rgb(102, 99, 92)))\"},children:\"Copyright 2025 The Calgary Legal Team. All rights reserved.\"})}),className:\"framer-38bi2x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HVwkewB5N\",style:{\"--extracted-r6o4lv\":\"var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, rgb(102, 99, 92))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({anz_3irvz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-vy6div\",\"data-styles-preset\":\"HBocL9_Yn\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, rgb(102, 99, 92)))\"},children:[\"Copyright 2025 The Calgary Legal Team. \",/*#__PURE__*/_jsx(motion.br,{}),\"All rights reserved.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16jpdyz\",layoutDependency:layoutDependency,layoutId:\"Veaqffky4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+(0+((componentViewport?.height||1241)-0-1467.86)/2)+126+0+0+1058.96+0+69+0+0+46.45+0,...addPropertyOverrides({anz_3irvz:{y:undefined},pYaeQ3xiR:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||1674.5)-0-1853.56)/2)+88+0+0+1467.7+0+123.96+0+0+46.45+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gxiphz-container\",layoutDependency:layoutDependency,layoutId:\"IMNxAnubh-container\",nodeId:\"IMNxAnubh\",rendersWithMotion:true,scopeId:\"IKBI1IOxj\",children:/*#__PURE__*/_jsx(NButtonFooterCredit,{height:\"100%\",id:\"IMNxAnubh\",layoutId:\"IMNxAnubh\",width:\"100%\"})})})})]})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pXdW3.framer-1yi7ja5, .framer-pXdW3 .framer-1yi7ja5 { display: block; }\",\".framer-pXdW3.framer-1l6782o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-pXdW3 .framer-17vocoq-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-pXdW3 .framer-t93s45 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 126px 64px 104px 64px; position: relative; width: 1px; z-index: 1; }\",\".framer-pXdW3 .framer-1ozqpre { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-69rx0l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-sgq171 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 104px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-1bdsri0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-pXdW3 .framer-1rf3wd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-144yzyo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-1gmetku { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-pXdW3 .framer-ztiwa6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-euzy63, .framer-pXdW3 .framer-147kgme, .framer-pXdW3 .framer-1rryi5s, .framer-pXdW3 .framer-1gr9o2a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pXdW3 .framer-rukhth { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 660px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-dx9wxu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-1ysnqt-container { flex: none; height: 54px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-19h1al4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-1ar1xwd-container { flex: none; height: auto; position: absolute; right: 16px; top: -12px; width: auto; z-index: 1; }\",\".framer-pXdW3 .framer-rsfcw4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-ktnsp1-container, .framer-pXdW3 .framer-81ovay-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-1qpih9j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-1yi08vo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-auqtu3, .framer-pXdW3 .framer-1s7gsj1, .framer-pXdW3 .framer-bq4k2r, .framer-pXdW3 .framer-1gd8ib2, .framer-pXdW3 .framer-899e6r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-pXdW3 .framer-s4anwa, .framer-pXdW3 .framer-109wd39, .framer-pXdW3 .framer-1oog7x5, .framer-pXdW3 .framer-1ha8zp1, .framer-pXdW3 .framer-1b0p8vf, .framer-pXdW3 .framer-11l53uo, .framer-pXdW3 .framer-cyut2e, .framer-pXdW3 .framer-irikjw, .framer-pXdW3 .framer-6og3f7, .framer-pXdW3 .framer-1k5bqnx, .framer-pXdW3 .framer-g6g6k2, .framer-pXdW3 .framer-wy52i6, .framer-pXdW3 .framer-18dmra0, .framer-pXdW3 .framer-1pnxdyl, .framer-pXdW3 .framer-1ayhito, .framer-pXdW3 .framer-1byc80q, .framer-pXdW3 .framer-6k1zqs, .framer-pXdW3 .framer-1i1j7j6, .framer-pXdW3 .framer-d188lz, .framer-pXdW3 .framer-1elbgp6, .framer-pXdW3 .framer-2ota21, .framer-pXdW3 .framer-ri5n07, .framer-pXdW3 .framer-hmieo6, .framer-pXdW3 .framer-kxnbqb, .framer-pXdW3 .framer-l446d2, .framer-pXdW3 .framer-17fgpo0, .framer-pXdW3 .framer-18td4hq, .framer-pXdW3 .framer-jr250y, .framer-pXdW3 .framer-dclxl9, .framer-pXdW3 .framer-y6zlfo, .framer-pXdW3 .framer-1f8xr9g, .framer-pXdW3 .framer-za7hfp, .framer-pXdW3 .framer-11k4jom, .framer-pXdW3 .framer-pxml8s, .framer-pXdW3 .framer-19jn9g0 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-pXdW3 .framer-3gq853, .framer-pXdW3 .framer-8savyb, .framer-pXdW3 .framer-1pcbn3u, .framer-pXdW3 .framer-ixy466, .framer-pXdW3 .framer-1x9yi1x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-hlqltc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-x2x8of { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-19grhww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 21px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-12h3q2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pXdW3 .framer-1cd4mpc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pXdW3 .framer-1wv6rss { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-pXdW3 .framer-1loz2jc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pXdW3 .framer-4lsowf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 21px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 524px; }\",\".framer-pXdW3 .framer-1kg65db { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-zprx9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pXdW3 .framer-38bi2x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-pXdW3 .framer-16jpdyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pXdW3 .framer-1gxiphz-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pXdW3.framer-1l6782o, .framer-pXdW3 .framer-t93s45, .framer-pXdW3 .framer-1ozqpre, .framer-pXdW3 .framer-69rx0l, .framer-pXdW3 .framer-sgq171, .framer-pXdW3 .framer-1bdsri0, .framer-pXdW3 .framer-1rf3wd, .framer-pXdW3 .framer-144yzyo, .framer-pXdW3 .framer-ztiwa6, .framer-pXdW3 .framer-rukhth, .framer-pXdW3 .framer-dx9wxu, .framer-pXdW3 .framer-19h1al4, .framer-pXdW3 .framer-1qpih9j, .framer-pXdW3 .framer-1yi08vo, .framer-pXdW3 .framer-auqtu3, .framer-pXdW3 .framer-3gq853, .framer-pXdW3 .framer-1s7gsj1, .framer-pXdW3 .framer-8savyb, .framer-pXdW3 .framer-bq4k2r, .framer-pXdW3 .framer-1pcbn3u, .framer-pXdW3 .framer-1gd8ib2, .framer-pXdW3 .framer-ixy466, .framer-pXdW3 .framer-899e6r, .framer-pXdW3 .framer-1x9yi1x, .framer-pXdW3 .framer-hlqltc, .framer-pXdW3 .framer-x2x8of, .framer-pXdW3 .framer-12h3q2r, .framer-pXdW3 .framer-1cd4mpc, .framer-pXdW3 .framer-4lsowf, .framer-pXdW3 .framer-1kg65db, .framer-pXdW3 .framer-zprx9q, .framer-pXdW3 .framer-16jpdyz { gap: 0px; } .framer-pXdW3.framer-1l6782o > *, .framer-pXdW3 .framer-69rx0l > *, .framer-pXdW3 .framer-19h1al4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pXdW3.framer-1l6782o > :first-child, .framer-pXdW3 .framer-69rx0l > :first-child, .framer-pXdW3 .framer-1bdsri0 > :first-child, .framer-pXdW3 .framer-144yzyo > :first-child, .framer-pXdW3 .framer-19h1al4 > :first-child, .framer-pXdW3 .framer-1qpih9j > :first-child, .framer-pXdW3 .framer-1yi08vo > :first-child, .framer-pXdW3 .framer-12h3q2r > :first-child, .framer-pXdW3 .framer-1cd4mpc > :first-child, .framer-pXdW3 .framer-4lsowf > :first-child, .framer-pXdW3 .framer-zprx9q > :first-child, .framer-pXdW3 .framer-16jpdyz > :first-child { margin-left: 0px; } .framer-pXdW3.framer-1l6782o > :last-child, .framer-pXdW3 .framer-69rx0l > :last-child, .framer-pXdW3 .framer-1bdsri0 > :last-child, .framer-pXdW3 .framer-144yzyo > :last-child, .framer-pXdW3 .framer-19h1al4 > :last-child, .framer-pXdW3 .framer-1qpih9j > :last-child, .framer-pXdW3 .framer-1yi08vo > :last-child, .framer-pXdW3 .framer-12h3q2r > :last-child, .framer-pXdW3 .framer-1cd4mpc > :last-child, .framer-pXdW3 .framer-4lsowf > :last-child, .framer-pXdW3 .framer-zprx9q > :last-child, .framer-pXdW3 .framer-16jpdyz > :last-child { margin-right: 0px; } .framer-pXdW3 .framer-t93s45 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pXdW3 .framer-t93s45 > :first-child, .framer-pXdW3 .framer-1ozqpre > :first-child, .framer-pXdW3 .framer-sgq171 > :first-child, .framer-pXdW3 .framer-1rf3wd > :first-child, .framer-pXdW3 .framer-ztiwa6 > :first-child, .framer-pXdW3 .framer-rukhth > :first-child, .framer-pXdW3 .framer-dx9wxu > :first-child, .framer-pXdW3 .framer-auqtu3 > :first-child, .framer-pXdW3 .framer-3gq853 > :first-child, .framer-pXdW3 .framer-1s7gsj1 > :first-child, .framer-pXdW3 .framer-8savyb > :first-child, .framer-pXdW3 .framer-bq4k2r > :first-child, .framer-pXdW3 .framer-1pcbn3u > :first-child, .framer-pXdW3 .framer-1gd8ib2 > :first-child, .framer-pXdW3 .framer-ixy466 > :first-child, .framer-pXdW3 .framer-899e6r > :first-child, .framer-pXdW3 .framer-1x9yi1x > :first-child, .framer-pXdW3 .framer-hlqltc > :first-child, .framer-pXdW3 .framer-x2x8of > :first-child, .framer-pXdW3 .framer-1kg65db > :first-child { margin-top: 0px; } .framer-pXdW3 .framer-t93s45 > :last-child, .framer-pXdW3 .framer-1ozqpre > :last-child, .framer-pXdW3 .framer-sgq171 > :last-child, .framer-pXdW3 .framer-1rf3wd > :last-child, .framer-pXdW3 .framer-ztiwa6 > :last-child, .framer-pXdW3 .framer-rukhth > :last-child, .framer-pXdW3 .framer-dx9wxu > :last-child, .framer-pXdW3 .framer-auqtu3 > :last-child, .framer-pXdW3 .framer-3gq853 > :last-child, .framer-pXdW3 .framer-1s7gsj1 > :last-child, .framer-pXdW3 .framer-8savyb > :last-child, .framer-pXdW3 .framer-bq4k2r > :last-child, .framer-pXdW3 .framer-1pcbn3u > :last-child, .framer-pXdW3 .framer-1gd8ib2 > :last-child, .framer-pXdW3 .framer-ixy466 > :last-child, .framer-pXdW3 .framer-899e6r > :last-child, .framer-pXdW3 .framer-1x9yi1x > :last-child, .framer-pXdW3 .framer-hlqltc > :last-child, .framer-pXdW3 .framer-x2x8of > :last-child, .framer-pXdW3 .framer-1kg65db > :last-child { margin-bottom: 0px; } .framer-pXdW3 .framer-1ozqpre > *, .framer-pXdW3 .framer-1kg65db > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-pXdW3 .framer-sgq171 > * { margin: 0px; margin-bottom: calc(104px / 2); margin-top: calc(104px / 2); } .framer-pXdW3 .framer-1bdsri0 > *, .framer-pXdW3 .framer-12h3q2r > *, .framer-pXdW3 .framer-4lsowf > *, .framer-pXdW3 .framer-16jpdyz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-pXdW3 .framer-1rf3wd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-pXdW3 .framer-144yzyo > *, .framer-pXdW3 .framer-1qpih9j > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-pXdW3 .framer-ztiwa6 > *, .framer-pXdW3 .framer-3gq853 > *, .framer-pXdW3 .framer-8savyb > *, .framer-pXdW3 .framer-1pcbn3u > *, .framer-pXdW3 .framer-ixy466 > *, .framer-pXdW3 .framer-1x9yi1x > *, .framer-pXdW3 .framer-hlqltc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-pXdW3 .framer-rukhth > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-pXdW3 .framer-dx9wxu > *, .framer-pXdW3 .framer-auqtu3 > *, .framer-pXdW3 .framer-1s7gsj1 > *, .framer-pXdW3 .framer-bq4k2r > *, .framer-pXdW3 .framer-1gd8ib2 > *, .framer-pXdW3 .framer-899e6r > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pXdW3 .framer-1yi08vo > *, .framer-pXdW3 .framer-zprx9q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-pXdW3 .framer-x2x8of > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-pXdW3 .framer-1cd4mpc > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-pXdW3.framer-v-hmu757.framer-1l6782o { width: 810px; }\",\".framer-pXdW3.framer-v-hmu757 .framer-t93s45 { padding: 88px 32px 64px 32px; }\",\".framer-pXdW3.framer-v-hmu757 .framer-1ozqpre, .framer-pXdW3.framer-v-1epmjf1 .framer-1ozqpre { gap: 46px; }\",\".framer-pXdW3.framer-v-hmu757 .framer-1bdsri0, .framer-pXdW3.framer-v-1epmjf1 .framer-1bdsri0 { flex-direction: column; }\",\".framer-pXdW3.framer-v-hmu757 .framer-1rf3wd, .framer-pXdW3.framer-v-hmu757 .framer-dx9wxu, .framer-pXdW3.framer-v-1epmjf1 .framer-1rf3wd, .framer-pXdW3.framer-v-1epmjf1 .framer-dx9wxu, .framer-pXdW3.framer-v-1epmjf1 .framer-38bi2x { flex: none; width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-1yi08vo { align-content: unset; align-items: unset; display: grid; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; }\",\".framer-pXdW3.framer-v-hmu757 .framer-auqtu3 { align-self: start; flex: none; justify-self: start; order: 0; width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-1s7gsj1 { align-self: start; flex: none; justify-self: start; order: 1; width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-bq4k2r { align-self: start; flex: none; justify-self: start; order: 2; width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-1gd8ib2 { align-self: start; flex: none; justify-self: start; order: 3; width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-899e6r { align-self: start; flex: none; justify-self: start; order: 4; width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-19grhww { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; height: min-content; justify-content: flex-start; }\",\".framer-pXdW3.framer-v-hmu757 .framer-12h3q2r { width: 100%; }\",\".framer-pXdW3.framer-v-hmu757 .framer-4lsowf { height: min-content; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pXdW3.framer-v-hmu757 .framer-1ozqpre, .framer-pXdW3.framer-v-hmu757 .framer-1bdsri0, .framer-pXdW3.framer-v-hmu757 .framer-1yi08vo, .framer-pXdW3.framer-v-hmu757 .framer-19grhww { gap: 0px; } .framer-pXdW3.framer-v-hmu757 .framer-1ozqpre > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-pXdW3.framer-v-hmu757 .framer-1ozqpre > :first-child, .framer-pXdW3.framer-v-hmu757 .framer-1bdsri0 > :first-child, .framer-pXdW3.framer-v-hmu757 .framer-19grhww > :first-child { margin-top: 0px; } .framer-pXdW3.framer-v-hmu757 .framer-1ozqpre > :last-child, .framer-pXdW3.framer-v-hmu757 .framer-1bdsri0 > :last-child, .framer-pXdW3.framer-v-hmu757 .framer-19grhww > :last-child { margin-bottom: 0px; } .framer-pXdW3.framer-v-hmu757 .framer-1bdsri0 > *, .framer-pXdW3.framer-v-hmu757 .framer-19grhww > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pXdW3.framer-v-hmu757 .framer-1yi08vo > *, .framer-pXdW3.framer-v-hmu757 .framer-1yi08vo > :first-child, .framer-pXdW3.framer-v-hmu757 .framer-1yi08vo > :last-child { margin: 0px; } }\",\".framer-pXdW3.framer-v-1epmjf1.framer-1l6782o { width: 390px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-t93s45 { padding: 88px 16px 64px 16px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-144yzyo { gap: 10px; padding: 0px 2px 0px 0px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1gmetku { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-euzy63 { white-space: pre; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1ysnqt-container, .framer-pXdW3.framer-v-1epmjf1 .framer-rsfcw4-container { height: 56px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1yi08vo { flex-direction: column; gap: 32px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-auqtu3 { flex: none; order: 0; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-3gq853, .framer-pXdW3.framer-v-1epmjf1 .framer-8savyb, .framer-pXdW3.framer-v-1epmjf1 .framer-1pcbn3u, .framer-pXdW3.framer-v-1epmjf1 .framer-ixy466, .framer-pXdW3.framer-v-1epmjf1 .framer-1x9yi1x { gap: 12px; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1s7gsj1 { flex: none; order: 1; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-bq4k2r { flex: none; order: 2; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1gd8ib2 { flex: none; order: 3; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-899e6r { flex: none; order: 4; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-19grhww { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; height: min-content; justify-content: flex-start; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-12h3q2r { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1cd4mpc { order: 0; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-jr250y { order: 1; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-dclxl9 { order: 2; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-y6zlfo { order: 3; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-1f8xr9g { order: 4; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-4lsowf { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; height: min-content; justify-content: flex-start; width: 100%; }\",\".framer-pXdW3.framer-v-1epmjf1 .framer-zprx9q { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pXdW3.framer-v-1epmjf1 .framer-1ozqpre, .framer-pXdW3.framer-v-1epmjf1 .framer-1bdsri0, .framer-pXdW3.framer-v-1epmjf1 .framer-144yzyo, .framer-pXdW3.framer-v-1epmjf1 .framer-1yi08vo, .framer-pXdW3.framer-v-1epmjf1 .framer-3gq853, .framer-pXdW3.framer-v-1epmjf1 .framer-8savyb, .framer-pXdW3.framer-v-1epmjf1 .framer-1pcbn3u, .framer-pXdW3.framer-v-1epmjf1 .framer-ixy466, .framer-pXdW3.framer-v-1epmjf1 .framer-1x9yi1x, .framer-pXdW3.framer-v-1epmjf1 .framer-19grhww, .framer-pXdW3.framer-v-1epmjf1 .framer-12h3q2r, .framer-pXdW3.framer-v-1epmjf1 .framer-4lsowf, .framer-pXdW3.framer-v-1epmjf1 .framer-zprx9q { gap: 0px; } .framer-pXdW3.framer-v-1epmjf1 .framer-1ozqpre > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-pXdW3.framer-v-1epmjf1 .framer-1ozqpre > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1bdsri0 > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1yi08vo > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-3gq853 > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-8savyb > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1pcbn3u > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-ixy466 > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1x9yi1x > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-19grhww > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-12h3q2r > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-4lsowf > :first-child, .framer-pXdW3.framer-v-1epmjf1 .framer-zprx9q > :first-child { margin-top: 0px; } .framer-pXdW3.framer-v-1epmjf1 .framer-1ozqpre > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1bdsri0 > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1yi08vo > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-3gq853 > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-8savyb > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1pcbn3u > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-ixy466 > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-1x9yi1x > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-19grhww > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-12h3q2r > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-4lsowf > :last-child, .framer-pXdW3.framer-v-1epmjf1 .framer-zprx9q > :last-child { margin-bottom: 0px; } .framer-pXdW3.framer-v-1epmjf1 .framer-1bdsri0 > *, .framer-pXdW3.framer-v-1epmjf1 .framer-1yi08vo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pXdW3.framer-v-1epmjf1 .framer-144yzyo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pXdW3.framer-v-1epmjf1 .framer-144yzyo > :first-child { margin-left: 0px; } .framer-pXdW3.framer-v-1epmjf1 .framer-144yzyo > :last-child { margin-right: 0px; } .framer-pXdW3.framer-v-1epmjf1 .framer-3gq853 > *, .framer-pXdW3.framer-v-1epmjf1 .framer-8savyb > *, .framer-pXdW3.framer-v-1epmjf1 .framer-1pcbn3u > *, .framer-pXdW3.framer-v-1epmjf1 .framer-ixy466 > *, .framer-pXdW3.framer-v-1epmjf1 .framer-1x9yi1x > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-pXdW3.framer-v-1epmjf1 .framer-19grhww > *, .framer-pXdW3.framer-v-1epmjf1 .framer-12h3q2r > *, .framer-pXdW3.framer-v-1epmjf1 .framer-4lsowf > *, .framer-pXdW3.framer-v-1epmjf1 .framer-zprx9q > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1241\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pYaeQ3xiR\":{\"layout\":[\"fixed\",\"auto\"]},\"anz_3irvz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fRyyj0gQ_\":\"animationTrigger\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIKBI1IOxj=withCSS(Component,css,\"framer-pXdW3\");export default FramerIKBI1IOxj;FramerIKBI1IOxj.displayName=\"footer\";FramerIKBI1IOxj.defaultProps={height:1241,width:1200};addPropertyControls(FramerIKBI1IOxj,{variant:{options:[\"oh25YprNK\",\"pYaeQ3xiR\",\"anz_3irvz\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},fRyyj0gQ_:{title:\"animation-trigger\",type:ControlType.ScrollSectionRef}});addFonts(FramerIKBI1IOxj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"BDO Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/4B27WrlzB4AxIVHj6sX0roVKw.woff2\"}]},...ElementBgNoiseFonts,...DefaultButtonsFonts,...ComingSoonDelFonts,...ElementSectionDividerFonts,...NButtonFooterCreditFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIKBI1IOxj\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1241\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pYaeQ3xiR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"anz_3irvz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"fRyyj0gQ_\\\":\\\"animationTrigger\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf4c6d7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-xn3WM .framer-styles-preset-l59u1x:not(.rich-text-wrapper), .framer-xn3WM .framer-styles-preset-l59u1x.rich-text-wrapper a { --framer-link-current-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #66635c); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #66635c); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-93549cae-fda8-4bc2-a6f3-198879239b5f, #66635c); --framer-link-text-decoration: underline; transition: color 0.2s cubic-bezier(0.5, 0, 0.88, 0.77) 0s; }\"];export const className=\"framer-xn3WM\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "i", "e", "Animate", "s", "o", "n", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "r", "h", "Lenis", "a", "c", "d", "u", "p", "m", "v", "g", "w", "S", "f", "SmoothScrollComponent", "props", "intensity", "lenis", "pe", "ue", "error", "checkForStopScroll", "stopScrollElement", "htmlElement", "hasHiddenOverflow", "stopScrollObserver", "htmlStyleObserver", "allElements", "i", "element", "computedStyle", "window", "styleError", "Lenis", "raf", "time", "animationId", "anchorLinksData", "anchor", "isInternalLink", "hasHash", "anchorElement", "href", "decodedHref", "scrollMargin", "targetElement", "marginStyle", "targetError", "anchorError", "handleClick", "e", "handlers", "index", "p", "SmoothScroll", "withCSS", "SmoothScroll_Prod_default", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HIDDEN", "SCRAMBLED", "REVEALED", "ScrambleAppear", "props", "_props_style", "from", "scrambledLetters", "text", "scrambledColor", "animation", "speed", "isCanvas", "RenderTarget", "Tag", "ref", "pe", "encryptedText", "randomString", "progress", "setProgress", "ye", "currentAnimation", "setCurrentAnimation", "intervalRef", "isInView", "useInView", "characterDelay", "mapRange", "shuffledIndices", "se", "_", "i", "runAnimation", "animate", "ue", "segments", "leftCutoff", "rightCutoff", "clamp", "center", "letters", "indexInSequence", "scrambleWindow", "startScrambleAt", "startRevealAt", "p", "consolidateSegments", "state", "index", "addPropertyControls", "ControlType", "length", "characters", "originalText", "matchCase", "keepSpaces", "result", "lastChar", "originalChar", "newChar", "value", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "min", "max", "acc", "curr", "ScrambleAppearFonts", "getFonts", "ScrambleAppear", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerpIO1OIe3S", "withCSS", "pIO1OIe3S_default", "addFonts", "ElementBgNoiseFonts", "getFonts", "PIA3oVW4N_default", "DefaultButtonsFonts", "bNtPL4xT9_default", "ComingSoonDelFonts", "OYz_O34n6_default", "MotionDivWithFX", "withFX", "motion", "ElementSectionDividerFonts", "OzZy2ETjR_default", "NButtonFooterCreditFonts", "pIO1OIe3S_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "animationTrigger", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fRyyj0gQ_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "SVG", "css", "FramerIKBI1IOxj", "withCSS", "IKBI1IOxj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
