{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lYJBWykb0lZqfOJU7gdK/NsqTjaWos9dpcE0xEfF6/Pulse.js", "ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/qpjhCcDm4G1NbFAlpMKV/OnyZiTlIjOBuSKcKQWFv/AnimatedNumberCounter_Prod.js", "ssg:https://framerusercontent.com/modules/BTye5eJbgSDnr9YILSCo/Gdkn0D28gjV3Q1cWhSMy/Bo19ROU9F.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/uMx4wOSX4oVx5bRVXu7V/UlZoFNiayeVWu3zKwMzV/yIMQUT0Rk.js", "ssg:https://framerusercontent.com/modules/8Jquf67sOcHrYZvWR0h0/NNDo3B6nMszCfeYLB7hR/CqhQrNMB3.js", "ssg:https://framerusercontent.com/modules/EtxFnKBSOvie0iG7dwwx/tvmXAoocwhLSzIK5Bkqa/EwpMNoGuG.js", "ssg:https://framerusercontent.com/modules/k8TRvHvr5X3hrY6sl7wL/cvjxQNCd2VKVMLMd0Sge/Jbao3h2M8.js", "ssg:https://framerusercontent.com/modules/2AV5YRlSoRq3KbL484J0/HS8cDY0YeZqc4QLCIVqJ/pbWDwBUaf.js", "ssg:https://framerusercontent.com/modules/m0VtEQJUGF4OjwsjdxrM/mqrLdU3zkvaQqHroAHfw/XOSkZc1rZ.js", "ssg:https://framerusercontent.com/modules/o0uNxFMg8XsuhFwfqvbr/A5FtacBi7lmMNlNFVIoX/SofTjBAi7.js", "ssg:https://framerusercontent.com/modules/YKPVkC9GVsMSJfsDI2Lc/U8ikQHzvTFooGu8oCWhW/yAcpE9ch2.js", "ssg:https://framerusercontent.com/modules/zhNqcSZHT36zQhtLaZJs/LAr18BXSPHJc6GIdEAF1/uTdpXkb83.js", "ssg:https://framerusercontent.com/modules/th56Eo5tU6tIaOFhCXxI/Td3aSHPVLPGlBwwSKgPv/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{useEffect,useState}from\"react\";function Pulse({props,onAnimationComplete}){const animateOut=props.direction===\"out\";return /*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",backgroundColor:props.style===\"border\"?\"none\":props.color,border:props.style===\"border\"?`${props.borderWidth}px solid ${props.color}`:\"none\"},variants:{in:{opacity:props.pulseOpacity,inset:\"0px\",borderRadius:props.radiusType==\"full\"?1e4:props.radiusValue},out:{opacity:0,inset:`-${props.pulseSize}px`,borderRadius:props.radiusType==\"full\"?1e4:props.radiusValue+props.pulseSize}},initial:animateOut?\"in\":\"out\",animate:animateOut?\"out\":\"in\",transition:props.transition,onAnimationComplete:onAnimationComplete});}/*\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 20\n * @framerIntrinsicHeight 20\n */export default function PulseEffect(props){const[pulses,setPulses]=useState([]);useEffect(()=>{const createPulse=()=>{const newPulseKey=Date.now()// Unique key for new pulse\n;setPulses(prevPulses=>[...prevPulses,newPulseKey]);};const interval=setInterval(createPulse,props.delay*1e3);createPulse();return()=>clearInterval(interval)// Clear interval on component unmount\n;},[]);const handleAnimationComplete=completedPulseKey=>{setPulses(prevPulses=>prevPulses.filter(key=>key!==completedPulseKey));};return /*#__PURE__*/_jsxs(\"div\",{children:[pulses.map(key=>/*#__PURE__*/_jsx(Pulse,{props:props,onAnimationComplete:()=>handleAnimationComplete(key)},key)),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,backgroundColor:props.color,borderRadius:props.radiusType==\"full\"?1e4:props.radiusValue}})]});}PulseEffect.displayName=\"Pulse\";addPropertyControls(PulseEffect,{color:{type:ControlType.Color},delay:{type:ControlType.Number,defaultValue:1,min:.1,step:.01,unit:\"s\"},direction:{type:ControlType.Enum,defaultValue:\"out\",options:[\"in\",\"out\"],optionTitles:[\"In\",\"Out\"],displaySegmentedControl:true},pulseSize:{type:ControlType.Number,defaultValue:20,min:1,step:1},pulseOpacity:{type:ControlType.Number,defaultValue:.5,min:0,max:1,step:.01},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"border\"],optionTitles:[\"Solid\",\"Outline\"],displaySegmentedControl:true},borderWidth:{type:ControlType.Number,defaultValue:5,min:1,step:1,title:\"Outline Width\",hidden:props=>props.style!==\"border\"},radiusType:{type:ControlType.Enum,defaultValue:\"full\",options:[\"full\",\"custom\"],optionTitles:[\"Full\",\"Custom\"],displaySegmentedControl:true,title:\"Radius\"},radiusValue:{type:ControlType.Number,defaultValue:20,min:1,step:1,title:\" \",hidden:props=>props.radiusType!==\"custom\"},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:150,damping:60}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PulseEffect\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"20\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pulse.map", "function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx}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", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{motion,useMotionValue,animate,useInView}from\"framer-motion\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n */export default function AnimatedNumberCounter(props){const{mode,start,end,value,decimals,commas,color,animation}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const Tag=props.tag;const MotionTag=motion[props.tag];const isDefault=mode==\"default\";const initialValue=isDefault?start:value;const transition=isDefault?animation.transition:props.transition;const formatNumber=number=>{let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;};const[number,setNumber]=useState(initialValue);const[finalValue,setFinalValue]=useState(number);const[currentAnimation,setCurrentAnimation]=useState(null);const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const motionValue=useMotionValue(value);const runAnimation=(from,to)=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setFinalValue(to);setCurrentAnimation(animate(from,to,{...transition,onUpdate:latest=>{setNumber(latest);}}));}};useEffect(()=>{if(isDefault&&animation.trigger==\"appear\"){runAnimation(start,end);}},[]);useEffect(()=>{if(isDefault&&animation.trigger==\"layerInView\"){if(isInView){runAnimation(start,end);}else{if(currentAnimation){currentAnimation.stop();}setNumber(start);}}},[isInView]);useEffect(()=>{if(!isDefault){runAnimation(number,value);}},[value]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(Tag,{style:{...props.style,margin:0,opacity:0,pointerEvents:\"none\",userSelect:\"none\",textWrap:props.balance?\"balance\":undefined,fontVariantNumeric:props.monospace?\"tabular-nums\":undefined,textAlign:\"center\",...props.font},children:[props.prefix,formatNumber(isCanvas?initialValue:finalValue),props.suffix]}),/*#__PURE__*/_jsxs(MotionTag,{ref:ref,style:{position:\"absolute\",inset:0,userSelect:props.userSelect?\"auto\":\"none\",fontVariantNumeric:props.monospace?\"tabular-nums\":undefined,margin:0,...color.mode==\"solid\"?{color:color.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${color.angle}deg, ${color.startColor}, ${color.endColor})`},textDecoration:props.decoration,textWrap:props.balance?\"balance\":undefined,textAlign:\"center\",...props.font,...props.style},children:[props.prefix,formatNumber(isCanvas?initialValue:number),props.suffix]})]});}AnimatedNumberCounter.displayName=\"Animated Number Counter\";addPropertyControls(AnimatedNumberCounter,{mode:{type:ControlType.Enum,options:[\"default\",\"variants\"],optionTitles:[\"Default\",\"Variants\"],displaySegmentedControl:true},value:{type:ControlType.Number,defaultValue:0,hidden:props=>props.mode!==\"variants\"},start:{type:ControlType.Number,defaultValue:0,hidden:props=>props.mode!==\"default\"},end:{type:ControlType.Number,defaultValue:100,hidden:props=>props.mode!==\"default\"},animation:{type:ControlType.Object,icon:\"effect\",hidden:props=>props.mode!==\"default\",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){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:1,bounce:0}}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:1,bounce:0},hidden:props=>props.mode!==\"variants\"},decimals:{type:ControlType.Enum,defaultValue:0,options:[0,1,2,3],optionTitles:[\"Off\",\"1\",\"2\",\"3\"],displaySegmentedControl:true},commas:{type:ControlType.Boolean,defaultValue:true},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},color:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!==\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!==\"gradient\"}}},prefix:{type:ControlType.String,placeholder:\"Prefix\"},suffix:{type:ControlType.String,placeholder:\"Suffix\"},decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"underline\",\"line-through\"],optionTitles:[\"None\",\"Underline\",\"Strikethrough\"]},balance:{type:ControlType.Boolean,defaultValue:false},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},monospace:{type:ControlType.Boolean,defaultValue:false,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedNumberCounter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedNumberCounter_Prod.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnimatedNumberCounter from\"https://framerusercontent.com/modules/qpjhCcDm4G1NbFAlpMKV/OnyZiTlIjOBuSKcKQWFv/AnimatedNumberCounter_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qiOolg3ssghRIM2iolsA/Mfb2ErygHy5ygxFFqCpX/kTR3NcFcQ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/x8GpfTlcST4x7QzySgqc/moIm6IazDLwAbxD1aNcQ/MHmNpcoFD.js\";const AnimatedNumberCounterFonts=getFonts(AnimatedNumberCounter);const cycleOrder=[\"MBOJkUZZp\",\"EwSheA2tJ\"];const serializationHash=\"framer-HrT2o\";const variantClassNames={EwSheA2tJ:\"framer-v-10r6rw2\",MBOJkUZZp:\"framer-v-1et02he\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={L:\"MBOJkUZZp\",S:\"EwSheA2tJ\"};const getProps=({bodyText,end,height,id,start,suffix,title,width,...props})=>{return{...props,bfksRWO1v:bodyText??props.bfksRWO1v??\"partnerships through proven legal results.\",cR_MXQpEk:end??props.cR_MXQpEk??80,Eymyq0ud7:start??props.Eymyq0ud7,mFwQsRO7Q:title??props.mFwQsRO7Q??\"We build long-term\",ODtuWUt7w:suffix??props.ODtuWUt7w??\"+\",variant:humanReadableVariantMap[props.variant]??props.variant??\"MBOJkUZZp\"};};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,Eymyq0ud7,cR_MXQpEk,ODtuWUt7w,mFwQsRO7Q,bfksRWO1v,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MBOJkUZZp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1et02he\",className,classNames),\"data-framer-name\":\"L\",layoutDependency:layoutDependency,layoutId:\"MBOJkUZZp\",ref:refBinding,style:{...style},...addPropertyOverrides({EwSheA2tJ:{\"data-framer-name\":\"S\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p04m2\",\"data-framer-name\":\"Counter\",layoutDependency:layoutDependency,layoutId:\"B3fv5wG3a\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i7rt2z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TcuTwOT0s-container\",nodeId:\"TcuTwOT0s\",rendersWithMotion:true,scopeId:\"Bo19ROU9F\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-f79d02c7-1774-42e8-8ffe-88585b6d572d, rgb(30, 30, 30))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:cR_MXQpEk,font:{fontFamily:'\"Manrope\", \"Manrope Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"128px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-10px\",lineHeight:\"148px\"},height:\"100%\",id:\"TcuTwOT0s\",layoutId:\"TcuTwOT0s\",mode:\"default\",monospace:false,prefix:\"\",start:Eymyq0ud7,suffix:ODtuWUt7w,tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\",...addPropertyOverrides({EwSheA2tJ:{font:{fontFamily:'\"Manrope\", \"Manrope Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"82px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-4px\",lineHeight:\"90px\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2t0ba1\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"DtRAgpYM6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:\"We build long-term\"})}),className:\"framer-1a7y1c7\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DbgzGIcdt\",style:{\"--extracted-r6o4lv\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",\"--framer-paragraph-spacing\":\"0px\"},text:mFwQsRO7Q,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18tc05i\",\"data-styles-preset\":\"MHmNpcoFD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71)))\"},children:\"partnerships through proven legal results.\"})}),className:\"framer-1x8g2fn\",\"data-framer-name\":\"Text 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WFkZ2U6Mv\",style:{\"--extracted-r6o4lv\":\"var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71))\",\"--framer-paragraph-spacing\":\"0px\"},text:bfksRWO1v,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HrT2o.framer-ry6kua, .framer-HrT2o .framer-ry6kua { display: block; }\",\".framer-HrT2o.framer-1et02he { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 341px; }\",\".framer-HrT2o .framer-1p04m2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HrT2o .framer-1i7rt2z-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HrT2o .framer-2t0ba1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HrT2o .framer-1a7y1c7, .framer-HrT2o .framer-1x8g2fn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HrT2o.framer-1et02he, .framer-HrT2o .framer-1p04m2, .framer-HrT2o .framer-2t0ba1 { gap: 0px; } .framer-HrT2o.framer-1et02he > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-HrT2o.framer-1et02he > :first-child, .framer-HrT2o .framer-1p04m2 > :first-child, .framer-HrT2o .framer-2t0ba1 > :first-child { margin-top: 0px; } .framer-HrT2o.framer-1et02he > :last-child, .framer-HrT2o .framer-1p04m2 > :last-child, .framer-HrT2o .framer-2t0ba1 > :last-child { margin-bottom: 0px; } .framer-HrT2o .framer-1p04m2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HrT2o .framer-2t0ba1 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-HrT2o.framer-v-10r6rw2.framer-1et02he { gap: 16px; }\",\".framer-HrT2o.framer-v-10r6rw2 .framer-2t0ba1 { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HrT2o.framer-v-10r6rw2.framer-1et02he, .framer-HrT2o.framer-v-10r6rw2 .framer-2t0ba1 { gap: 0px; } .framer-HrT2o.framer-v-10r6rw2.framer-1et02he > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HrT2o.framer-v-10r6rw2.framer-1et02he > :first-child, .framer-HrT2o.framer-v-10r6rw2 .framer-2t0ba1 > :first-child { margin-top: 0px; } .framer-HrT2o.framer-v-10r6rw2.framer-1et02he > :last-child, .framer-HrT2o.framer-v-10r6rw2 .framer-2t0ba1 > :last-child { margin-bottom: 0px; } .framer-HrT2o.framer-v-10r6rw2 .framer-2t0ba1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 213\n * @framerIntrinsicWidth 341\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EwSheA2tJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Eymyq0ud7\":\"start\",\"cR_MXQpEk\":\"end\",\"ODtuWUt7w\":\"suffix\",\"mFwQsRO7Q\":\"title\",\"bfksRWO1v\":\"bodyText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBo19ROU9F=withCSS(Component,css,\"framer-HrT2o\");export default FramerBo19ROU9F;FramerBo19ROU9F.displayName=\"Stats\";FramerBo19ROU9F.defaultProps={height:213,width:341};addPropertyControls(FramerBo19ROU9F,{variant:{options:[\"MBOJkUZZp\",\"EwSheA2tJ\"],optionTitles:[\"L\",\"S\"],title:\"Variant\",type:ControlType.Enum},Eymyq0ud7:{defaultValue:0,title:\"Start\",type:ControlType.Number},cR_MXQpEk:{defaultValue:80,title:\"End\",type:ControlType.Number},ODtuWUt7w:{defaultValue:\"+\",placeholder:\"Suffix\",title:\"Suffix\",type:ControlType.String},mFwQsRO7Q:{defaultValue:\"We build long-term\",displayTextArea:false,title:\"Title\",type:ControlType.String},bfksRWO1v:{defaultValue:\"partnerships through proven legal results.\",displayTextArea:true,title:\"Body Text\",type:ControlType.String}});addFonts(FramerBo19ROU9F,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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\"}]},...AnimatedNumberCounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBo19ROU9F\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"213\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EwSheA2tJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Eymyq0ud7\\\":\\\"start\\\",\\\"cR_MXQpEk\\\":\\\"end\\\",\\\"ODtuWUt7w\\\":\\\"suffix\\\",\\\"mFwQsRO7Q\\\":\\\"title\\\",\\\"bfksRWO1v\\\":\\\"bodyText\\\"}\",\"framerIntrinsicWidth\":\"341\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pPrB7LbTceVCBIKWIglU/OjtbcE5yyBjv4AmwG01a/EIB3gUiL9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qiOolg3ssghRIM2iolsA/Mfb2ErygHy5ygxFFqCpX/kTR3NcFcQ.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={ooU7XWSXz:{hover:true},ZPg7egCWm:{hover:true}};const cycleOrder=[\"ZPg7egCWm\",\"ooU7XWSXz\"];const serializationHash=\"framer-JxiEw\";const variantClassNames={ooU7XWSXz:\"framer-v-179xzgn\",ZPg7egCWm:\"framer-v-pwi2g6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"ooU7XWSXz\",Open:\"ZPg7egCWm\"};const getProps=({click,height,id,text,title,width,...props})=>{return{...props,fbMdJnqyQ:title??props.fbMdJnqyQ??\"Accordion title\",Q0WMNUDZo:click??props.Q0WMNUDZo,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZPg7egCWm\",Vbz66tjr6:text??props.Vbz66tjr6??\"At Refit, we design and build stunning kitchens tailored to your style and needs. Whether you're after a sleek modern space or a classic, timeless look, our expert team delivers high-quality craftsmanship, functionality, and attention to detail to create the heart of your home.\"};};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,fbMdJnqyQ,Q0WMNUDZo,Vbz66tjr6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZPg7egCWm\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapkhpjtk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ooU7XWSXz\");});const onTappp2tny=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Q0WMNUDZo){const res=await Q0WMNUDZo(...args);if(res===false)return false;}});const onTap1f71a9p=activeVariantCallback(async(...args)=>{setVariant(\"ZPg7egCWm\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-pwi2g6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZPg7egCWm\",onTap:onTapkhpjtk,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac728068-b0a8-49a3-8b2a-7c06001e6872, rgb(219, 218, 217))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"ooU7XWSXz-hover\":{\"data-framer-name\":undefined},\"ZPg7egCWm-hover\":{\"data-framer-name\":undefined},ooU7XWSXz:{\"data-framer-name\":\"Closed\",onTap:onTappp2tny}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c6yqfd\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"buFmsEosW\",...addPropertyOverrides({ooU7XWSXz:{\"data-highlight\":true,onTap:onTap1f71a9p}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsy4c1\",\"data-framer-name\":\"Icon + Title\",layoutDependency:layoutDependency,layoutId:\"cQ4wnJvpj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7kxp10\",\"data-styles-preset\":\"EIB3gUiL9\",children:\"Accordion title\"})}),className:\"framer-1e8rse9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WhOTzn8bB\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fbMdJnqyQ,variants:{\"ooU7XWSXz-hover\":{\"--extracted-1eung3n\":\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"},\"ZPg7egCWm-hover\":{\"--extracted-1eung3n\":\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ooU7XWSXz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7kxp10\",\"data-styles-preset\":\"EIB3gUiL9\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62)))\"},children:\"Accordion title\"})})},\"ZPg7egCWm-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7kxp10\",\"data-styles-preset\":\"EIB3gUiL9\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62)))\"},children:\"Accordion title\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qhpdbk-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kfB4Gamet-container\",nodeId:\"kfB4Gamet\",rendersWithMotion:true,scopeId:\"yIMQUT0Rk\",style:{rotate:45},variants:{ooU7XWSXz:{rotate:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"kfB4Gamet\",layoutId:\"kfB4Gamet\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"ooU7XWSXz-hover\":{color:\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"},\"ZPg7egCWm-hover\":{color:\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w2rb50\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"TVnADTQ6x\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a5lb7x\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"z5r7H_CMd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",children:\"At Refit, we design and build stunning kitchens tailored to your style and needs. Whether you're after a sleek modern space or a classic, timeless look, our expert team delivers high-quality craftsmanship, functionality, and attention to detail to create the heart of your home.\"})}),className:\"framer-u8j1mf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mxn4PZgm_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Vbz66tjr6,verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JxiEw.framer-1c0cw0e, .framer-JxiEw .framer-1c0cw0e { display: block; }\",\".framer-JxiEw.framer-pwi2g6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-JxiEw .framer-1c6yqfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-JxiEw .framer-fsy4c1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JxiEw .framer-1e8rse9 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-JxiEw .framer-1qhpdbk-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-JxiEw .framer-w2rb50 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JxiEw .framer-1a5lb7x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 32px 32px 0px; position: relative; width: 100%; }\",\".framer-JxiEw .framer-u8j1mf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JxiEw.framer-pwi2g6, .framer-JxiEw .framer-fsy4c1, .framer-JxiEw .framer-w2rb50, .framer-JxiEw .framer-1a5lb7x { gap: 0px; } .framer-JxiEw.framer-pwi2g6 > *, .framer-JxiEw .framer-w2rb50 > *, .framer-JxiEw .framer-1a5lb7x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JxiEw.framer-pwi2g6 > :first-child, .framer-JxiEw .framer-w2rb50 > :first-child, .framer-JxiEw .framer-1a5lb7x > :first-child { margin-top: 0px; } .framer-JxiEw.framer-pwi2g6 > :last-child, .framer-JxiEw .framer-w2rb50 > :last-child, .framer-JxiEw .framer-1a5lb7x > :last-child { margin-bottom: 0px; } .framer-JxiEw .framer-fsy4c1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-JxiEw .framer-fsy4c1 > :first-child { margin-left: 0px; } .framer-JxiEw .framer-fsy4c1 > :last-child { margin-right: 0px; } }\",\".framer-JxiEw.framer-v-179xzgn.framer-pwi2g6 { height: 80px; }\",\".framer-JxiEw.framer-v-179xzgn .framer-1c6yqfd { cursor: pointer; height: 100%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-JxiEw[data-border=\"true\"]::after, .framer-JxiEw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 157\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ooU7XWSXz\":{\"layout\":[\"fixed\",\"fixed\"]},\"FOq25Wzp8\":{\"layout\":[\"fixed\",\"fixed\"]},\"iaWa4UCqn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fbMdJnqyQ\":\"title\",\"Q0WMNUDZo\":\"click\",\"Vbz66tjr6\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryIMQUT0Rk=withCSS(Component,css,\"framer-JxiEw\");export default FrameryIMQUT0Rk;FrameryIMQUT0Rk.displayName=\"Services Row\";FrameryIMQUT0Rk.defaultProps={height:157,width:1280};addPropertyControls(FrameryIMQUT0Rk,{variant:{options:[\"ZPg7egCWm\",\"ooU7XWSXz\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},fbMdJnqyQ:{defaultValue:\"Accordion title\",displayTextArea:true,title:\"Title\",type:ControlType.String},Q0WMNUDZo:{title:\"Click\",type:ControlType.EventHandler},Vbz66tjr6:{defaultValue:\"At Refit, we design and build stunning kitchens tailored to your style and needs. Whether you're after a sleek modern space or a classic, timeless look, our expert team delivers high-quality craftsmanship, functionality, and attention to detail to create the heart of your home.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FrameryIMQUT0Rk,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryIMQUT0Rk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"fbMdJnqyQ\\\":\\\"title\\\",\\\"Q0WMNUDZo\\\":\\\"click\\\",\\\"Vbz66tjr6\\\":\\\"text\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ooU7XWSXz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FOq25Wzp8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iaWa4UCqn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"157\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ServicesRow from\"https://framerusercontent.com/modules/uMx4wOSX4oVx5bRVXu7V/UlZoFNiayeVWu3zKwMzV/yIMQUT0Rk.js\";const MotionDivWithFX=withFX(motion.div);const ServicesRowFonts=getFonts(ServicesRow);const cycleOrder=[\"QDfYGxs2l\",\"H7_YPkqyz\",\"L0AyCHCHe\",\"zAFG3QXVq\",\"cWP8kjAl_\",\"n_kk3wZQf\",\"e1DJeH6JF\",\"jheFFY1n9\",\"YpvZKvXha\",\"Bi8HzdATW\",\"oTCD6c21Q\",\"yFUgcuNuy\"];const serializationHash=\"framer-bm2VG\";const variantClassNames={Bi8HzdATW:\"framer-v-auijyz\",cWP8kjAl_:\"framer-v-b515rt\",e1DJeH6JF:\"framer-v-1dqsvvu\",H7_YPkqyz:\"framer-v-89hkaa\",jheFFY1n9:\"framer-v-1himpz9\",L0AyCHCHe:\"framer-v-xogjii\",n_kk3wZQf:\"framer-v-1dv2gqx\",oTCD6c21Q:\"framer-v-3qbfx1\",QDfYGxs2l:\"framer-v-13tzzy8\",yFUgcuNuy:\"framer-v-140739n\",YpvZKvXha:\"framer-v-8iavn7\",zAFG3QXVq:\"framer-v-i5kv9h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={damping:80,delay:0,mass:1,stiffness:250,type:\"spring\"};const transition3={damping:80,delay:.3,mass:1,stiffness:250,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"2 (tablet/mobile)\":\"jheFFY1n9\",\"2\":\"H7_YPkqyz\",\"3 (tablet/mobile)\":\"YpvZKvXha\",\"3\":\"L0AyCHCHe\",\"4 (tablet/mobile)\":\"Bi8HzdATW\",\"4\":\"zAFG3QXVq\",\"5 (tablet/mobile)\":\"oTCD6c21Q\",\"5\":\"cWP8kjAl_\",\"6 (tablet/mobile)\":\"yFUgcuNuy\",\"6\":\"n_kk3wZQf\",\"First open (tablet/mobile)\":\"e1DJeH6JF\",\"First open\":\"QDfYGxs2l\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QDfYGxs2l\"};};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({cycleOrder,defaultVariant:\"QDfYGxs2l\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Q0WMNUDZo1lskwr5=activeVariantCallback(async(...args)=>{setVariant(\"QDfYGxs2l\");});const Q0WMNUDZo55kk1r=activeVariantCallback(async(...args)=>{setVariant(\"e1DJeH6JF\");});const Q0WMNUDZoo1s67s=activeVariantCallback(async(...args)=>{setVariant(\"H7_YPkqyz\");});const Q0WMNUDZowdkp4k=activeVariantCallback(async(...args)=>{setVariant(\"jheFFY1n9\");});const Q0WMNUDZoq61ghr=activeVariantCallback(async(...args)=>{setVariant(\"L0AyCHCHe\");});const Q0WMNUDZopch84z=activeVariantCallback(async(...args)=>{setVariant(\"YpvZKvXha\");});const Q0WMNUDZojc9v32=activeVariantCallback(async(...args)=>{setVariant(\"zAFG3QXVq\");});const Q0WMNUDZo1nie6mt=activeVariantCallback(async(...args)=>{setVariant(\"Bi8HzdATW\");});const Q0WMNUDZo1ml4gz6=activeVariantCallback(async(...args)=>{setVariant(\"cWP8kjAl_\");});const Q0WMNUDZo1d6577n=activeVariantCallback(async(...args)=>{setVariant(\"oTCD6c21Q\");});const Q0WMNUDZo1p0vpxg=activeVariantCallback(async(...args)=>{setVariant(\"n_kk3wZQf\");});const Q0WMNUDZo5z2fed=activeVariantCallback(async(...args)=>{setVariant(\"yFUgcuNuy\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13tzzy8\",className,classNames),\"data-framer-name\":\"First open\",layoutDependency:layoutDependency,layoutId:\"QDfYGxs2l\",ref:refBinding,style:{...style},...addPropertyOverrides({Bi8HzdATW:{\"data-framer-name\":\"4 (tablet/mobile)\"},cWP8kjAl_:{\"data-framer-name\":\"5\"},e1DJeH6JF:{\"data-framer-name\":\"First open (tablet/mobile)\"},H7_YPkqyz:{\"data-framer-name\":\"2\"},jheFFY1n9:{\"data-framer-name\":\"2 (tablet/mobile)\"},L0AyCHCHe:{\"data-framer-name\":\"3\"},n_kk3wZQf:{\"data-framer-name\":\"6\"},oTCD6c21Q:{\"data-framer-name\":\"5 (tablet/mobile)\"},yFUgcuNuy:{\"data-framer-name\":\"6 (tablet/mobile)\"},YpvZKvXha:{\"data-framer-name\":\"3 (tablet/mobile)\"},zAFG3QXVq:{\"data-framer-name\":\"4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zab4iu\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"nCmFATCFy\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-.2185),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"},className:\"framer-135q3ur\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"BHxlpAKl3\",style:{opacity:1},variants:{Bi8HzdATW:{opacity:0},cWP8kjAl_:{opacity:1},e1DJeH6JF:{opacity:1},jheFFY1n9:{opacity:0},n_kk3wZQf:{opacity:1},oTCD6c21Q:{opacity:0},yFUgcuNuy:{opacity:0},YpvZKvXha:{opacity:0},zAFG3QXVq:{opacity:0}},...addPropertyOverrides({Bi8HzdATW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"}},e1DJeH6JF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"}},jheFFY1n9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"}},oTCD6c21Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"}},yFUgcuNuy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"}},YpvZKvXha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:2560,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp\",srcSet:\"https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp?scale-down-to=2048 1536w,https://framerusercontent.com/images/oIyPUduXXoVtIqcMiY04fOvnpY.webp 1920w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:814,pixelWidth:1266,sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"},className:\"framer-1cqtiis\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"pajqMAqKW\",style:{opacity:0},variants:{H7_YPkqyz:{opacity:1},jheFFY1n9:{opacity:1}},...addPropertyOverrides({Bi8HzdATW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:814,pixelWidth:1266,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"}},e1DJeH6JF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:814,pixelWidth:1266,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"}},jheFFY1n9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:814,pixelWidth:1266,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"}},oTCD6c21Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:814,pixelWidth:1266,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"}},yFUgcuNuy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:814,pixelWidth:1266,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"}},YpvZKvXha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:814,pixelWidth:1266,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HYK7ScVhIEUYGmMLk9hxnQQYqwQ.jpg 1266w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:933,pixelWidth:1600,sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"},className:\"framer-681678\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"OOSFrRKSW\",style:{opacity:0},variants:{L0AyCHCHe:{opacity:1},YpvZKvXha:{opacity:1}},...addPropertyOverrides({Bi8HzdATW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:933,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"}},e1DJeH6JF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:933,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"}},jheFFY1n9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:933,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"}},oTCD6c21Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:933,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"}},yFUgcuNuy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:933,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"}},YpvZKvXha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:933,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp\",srcSet:\"https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzGv7MZ78Fvy7vakvPwzUE7nyS8.webp 1600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-.2185),pixelHeight:3648,pixelWidth:5472,sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"},className:\"framer-188hlnm\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"tP60abE4M\",style:{opacity:0},variants:{Bi8HzdATW:{opacity:1},zAFG3QXVq:{opacity:1}},...addPropertyOverrides({Bi8HzdATW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"}},e1DJeH6JF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"}},jheFFY1n9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"}},oTCD6c21Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"}},yFUgcuNuy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"}},YpvZKvXha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+-.2622),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp\",srcSet:\"https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/2vBAGgon5JAdGgPiwXdtuYXFTQg.webp 5472w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:4160,pixelWidth:6240,sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"},className:\"framer-1efl6nz\",\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"Ym6RiUhy0\",style:{opacity:0},variants:{cWP8kjAl_:{opacity:1},oTCD6c21Q:{opacity:1}},...addPropertyOverrides({Bi8HzdATW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"}},e1DJeH6JF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"}},jheFFY1n9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"}},oTCD6c21Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"}},yFUgcuNuy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"}},YpvZKvXha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp\",srcSet:\"https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Tqv4h0hSsJoNTgmU1jp0IZeT2Y.webp 6240w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:4160,pixelWidth:6240,sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"},className:\"framer-lwqmjb\",\"data-framer-name\":\"Image 6\",layoutDependency:layoutDependency,layoutId:\"Ji6ip5Ldp\",style:{opacity:0},variants:{n_kk3wZQf:{opacity:1},yFUgcuNuy:{opacity:1}},...addPropertyOverrides({Bi8HzdATW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"}},e1DJeH6JF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"}},jheFFY1n9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"}},oTCD6c21Q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"}},yFUgcuNuy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"}},YpvZKvXha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1002+0),pixelHeight:4160,pixelWidth:6240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp\",srcSet:\"https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/59WJnhQDVPglA6aZDQq3FTQKQk.webp 6240w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zcem0c\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"ZVQ9Qetnn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({Bi8HzdATW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},e1DJeH6JF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},jheFFY1n9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},oTCD6c21Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},yFUgcuNuy:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},YpvZKvXha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kwrlef-container\",\"data-framer-name\":\"Accordion Row 1\",layoutDependency:layoutDependency,layoutId:\"ohkO5s4vU-container\",name:\"Accordion Row 1\",nodeId:\"ohkO5s4vU\",rendersWithMotion:true,scopeId:\"CqhQrNMB3\",children:/*#__PURE__*/_jsx(ServicesRow,{fbMdJnqyQ:\"Th\u1EDDi gian l\\xe0m vi\u1EC7c kh\\xf4ng gi\u1EDBi h\u1EA1n\",height:\"100%\",id:\"ohkO5s4vU\",layoutId:\"ohkO5s4vU\",name:\"Accordion Row 1\",Q0WMNUDZo:Q0WMNUDZo1lskwr5,style:{width:\"100%\"},variant:\"ZPg7egCWm\",Vbz66tjr6:\"T\u1EA1i CoGo, b\u1EA1n c\\xf3 th\u1EC3 b\u1EAFt \u0111\u1EA7u m\u1ED9t ng\\xe0y m\u1EDBi t\u1EEB 5h s\\xe1ng hay k\u1EBFt th\\xfac \\xfd t\u01B0\u1EDFng l\\xfac 2h \u0111\\xeam,  t\u1EA5t c\u1EA3 \u0111\u1EC1u kh\\xf4ng ph\\xe1t sinh chi ph\\xed ngo\\xe0i gi\u1EDD. Ch\\xfang t\\xf4i tin r\u1EB1ng \u0111am m\\xea v\\xe0 s\\xe1ng t\u1EA1o kh\\xf4ng n\\xean b\u1ECB gi\u1EDBi h\u1EA1n b\u1EDFi \u0111\u1ED3ng h\u1ED3.\",width:\"100%\",...addPropertyOverrides({Bi8HzdATW:{Q0WMNUDZo:Q0WMNUDZo55kk1r,variant:\"ooU7XWSXz\"},cWP8kjAl_:{variant:\"ooU7XWSXz\"},e1DJeH6JF:{Q0WMNUDZo:Q0WMNUDZo55kk1r},H7_YPkqyz:{variant:\"ooU7XWSXz\"},jheFFY1n9:{Q0WMNUDZo:Q0WMNUDZo55kk1r,variant:\"ooU7XWSXz\"},L0AyCHCHe:{variant:\"ooU7XWSXz\"},n_kk3wZQf:{variant:\"ooU7XWSXz\"},oTCD6c21Q:{Q0WMNUDZo:Q0WMNUDZo55kk1r,variant:\"ooU7XWSXz\"},yFUgcuNuy:{Q0WMNUDZo:Q0WMNUDZo55kk1r,variant:\"ooU7XWSXz\"},YpvZKvXha:{Q0WMNUDZo:Q0WMNUDZo55kk1r,variant:\"ooU7XWSXz\"},zAFG3QXVq:{variant:\"ooU7XWSXz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+157,...addPropertyOverrides({Bi8HzdATW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+157},e1DJeH6JF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+157},jheFFY1n9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+157},oTCD6c21Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+157},yFUgcuNuy:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+157},YpvZKvXha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+157}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12qnp2m-container\",\"data-framer-name\":\"Accordion Row 3\",layoutDependency:layoutDependency,layoutId:\"gYakPF6u_-container\",name:\"Accordion Row 3\",nodeId:\"gYakPF6u_\",rendersWithMotion:true,scopeId:\"CqhQrNMB3\",children:/*#__PURE__*/_jsx(ServicesRow,{fbMdJnqyQ:\"V\u1ECB tr\\xed trung t\\xe2m, d\u1EC5 d\\xe0ng k\u1EBFt n\u1ED1i m\u1ECDi h\u01B0\u1EDBng\",height:\"100%\",id:\"gYakPF6u_\",layoutId:\"gYakPF6u_\",name:\"Accordion Row 3\",Q0WMNUDZo:Q0WMNUDZoo1s67s,style:{width:\"100%\"},variant:\"ooU7XWSXz\",Vbz66tjr6:\"CoGo hi\u1EC7n di\u1EC7n t\u1EA1i v\u1ECB tr\\xed \u0111\u1EAFc \u0111\u1ECBa, thu\u1EADn ti\u1EC7n giao th\\xf4ng v\\xe0 g\u1EA7n k\u1EC1 c\\xe1c c\u01A1 quan h\\xe0nh ch\\xednh,  gi\\xfap b\u1EA1n ti\u1EBFt ki\u1EC7m th\u1EDDi gian di chuy\u1EC3n, g\u1EB7p g\u1EE1 \u0111\u1ED1i t\\xe1c hay x\u1EED l\\xfd th\u1EE7 t\u1EE5c doanh nghi\u1EC7p m\u1ED9t c\\xe1ch nhanh ch\\xf3ng.\",width:\"100%\",...addPropertyOverrides({Bi8HzdATW:{Q0WMNUDZo:Q0WMNUDZowdkp4k},e1DJeH6JF:{Q0WMNUDZo:Q0WMNUDZowdkp4k},H7_YPkqyz:{variant:\"ZPg7egCWm\"},jheFFY1n9:{Q0WMNUDZo:Q0WMNUDZowdkp4k,variant:\"ZPg7egCWm\"},oTCD6c21Q:{Q0WMNUDZo:Q0WMNUDZowdkp4k},yFUgcuNuy:{Q0WMNUDZo:Q0WMNUDZowdkp4k},YpvZKvXha:{Q0WMNUDZo:Q0WMNUDZowdkp4k}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+314,...addPropertyOverrides({Bi8HzdATW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+314},e1DJeH6JF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+314},jheFFY1n9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+314},oTCD6c21Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+314},yFUgcuNuy:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+314},YpvZKvXha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+314}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2oa6hn-container\",\"data-framer-name\":\"Accordion Row 4\",layoutDependency:layoutDependency,layoutId:\"ZvzsAV8ET-container\",name:\"Accordion Row 4\",nodeId:\"ZvzsAV8ET\",rendersWithMotion:true,scopeId:\"CqhQrNMB3\",children:/*#__PURE__*/_jsx(ServicesRow,{fbMdJnqyQ:\"T\u1ED1i \u01B0u th\u1EDDi gian v\\xe0 chi ph\\xed\",height:\"100%\",id:\"ZvzsAV8ET\",layoutId:\"ZvzsAV8ET\",name:\"Accordion Row 4\",Q0WMNUDZo:Q0WMNUDZoq61ghr,style:{width:\"100%\"},variant:\"ooU7XWSXz\",Vbz66tjr6:\"Ch\\xfang t\\xf4i hi\u1EC3u r\u1EB1ng m\u1ED7i ph\\xfat gi\\xe2y c\u1EE7a b\u1EA1n \u0111\u1EC1u qu\\xfd gi\\xe1. V\\xec th\u1EBF, CoGo cung c\u1EA5p gi\u1EA3i ph\\xe1p l\\xe0m vi\u1EC7c tr\u1ECDn g\\xf3i, gi\\xfap b\u1EA1n lo\u1EA1i b\u1ECF m\u1ECDi lo toan v\u1EC1 v\u1EADn h\\xe0nh v\u0103n ph\\xf2ng:  \u0111i\u1EC7n, n\u01B0\u1EDBc, internet, l\u1EC5 t\\xe2n, v\u1EC7 sinh, b\u1EA3o v\u1EC7, ti\u1EBFp kh\\xe1ch\u2026 T\u1EA5t c\u1EA3 \u0111\\xe3 c\\xf3 CoGo lo.\",width:\"100%\",...addPropertyOverrides({Bi8HzdATW:{Q0WMNUDZo:Q0WMNUDZopch84z},e1DJeH6JF:{Q0WMNUDZo:Q0WMNUDZopch84z},jheFFY1n9:{Q0WMNUDZo:Q0WMNUDZopch84z},L0AyCHCHe:{Q0WMNUDZo:undefined,variant:\"ZPg7egCWm\"},oTCD6c21Q:{Q0WMNUDZo:Q0WMNUDZopch84z},yFUgcuNuy:{Q0WMNUDZo:Q0WMNUDZopch84z},YpvZKvXha:{Q0WMNUDZo:Q0WMNUDZopch84z,variant:\"ZPg7egCWm\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+471,...addPropertyOverrides({Bi8HzdATW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+471},e1DJeH6JF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+471},jheFFY1n9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+471},oTCD6c21Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+471},yFUgcuNuy:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+471},YpvZKvXha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+471}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j5gldm-container\",\"data-framer-name\":\"Accordion Row 2\",layoutDependency:layoutDependency,layoutId:\"b81dGwxvU-container\",name:\"Accordion Row 2\",nodeId:\"b81dGwxvU\",rendersWithMotion:true,scopeId:\"CqhQrNMB3\",children:/*#__PURE__*/_jsx(ServicesRow,{fbMdJnqyQ:\"H\u1EA1 t\u1EA7ng hi\u1EC7n \u0111\u1EA1i, ti\u1EC7n \\xedch chu\u1EA9n qu\u1ED1c t\u1EBF\",height:\"100%\",id:\"b81dGwxvU\",layoutId:\"b81dGwxvU\",name:\"Accordion Row 2\",Q0WMNUDZo:Q0WMNUDZojc9v32,style:{width:\"100%\"},variant:\"ooU7XWSXz\",Vbz66tjr6:\"T\u1EEB ph\\xf2ng h\u1ECDp th\\xf4ng minh, h\u1EC7 th\u1ED1ng c\\xe1ch \\xe2m ti\\xeau chu\u1EA9n, m\\xe1y in, khu pantry\u2026 \u0111\u1EBFn c\\xe1c chi ti\u1EBFt nh\u1ECF nh\u1EA5t \u0111\u1EC1u \u0111\u01B0\u1EE3c \u0111\u1EA7u t\u01B0 \u0111\u1EC3 t\u1EA1o n\\xean m\u1ED9t tr\u1EA3i nghi\u1EC7m l\\xe0m vi\u1EC7c chuy\\xean nghi\u1EC7p, tho\u1EA3i m\\xe1i v\\xe0 hi\u1EC7u qu\u1EA3.\",width:\"100%\",...addPropertyOverrides({Bi8HzdATW:{Q0WMNUDZo:Q0WMNUDZo1nie6mt,variant:\"ZPg7egCWm\"},e1DJeH6JF:{Q0WMNUDZo:Q0WMNUDZo1nie6mt},jheFFY1n9:{Q0WMNUDZo:Q0WMNUDZo1nie6mt},oTCD6c21Q:{Q0WMNUDZo:Q0WMNUDZo1nie6mt},yFUgcuNuy:{Q0WMNUDZo:Q0WMNUDZo1nie6mt},YpvZKvXha:{Q0WMNUDZo:Q0WMNUDZo1nie6mt},zAFG3QXVq:{variant:\"ZPg7egCWm\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+628,...addPropertyOverrides({Bi8HzdATW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+628},e1DJeH6JF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+628},jheFFY1n9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+628},oTCD6c21Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+628},yFUgcuNuy:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+628},YpvZKvXha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+628}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1btkqda-container\",\"data-framer-name\":\"Accordion Row 5\",layoutDependency:layoutDependency,layoutId:\"BGQk_fmU3-container\",name:\"Accordion Row 5\",nodeId:\"BGQk_fmU3\",rendersWithMotion:true,scopeId:\"CqhQrNMB3\",children:/*#__PURE__*/_jsx(ServicesRow,{fbMdJnqyQ:\"D\u1ECBch v\u1EE5 h\u1ED7 tr\u1EE3 doanh nghi\u1EC7p\",height:\"100%\",id:\"BGQk_fmU3\",layoutId:\"BGQk_fmU3\",name:\"Accordion Row 5\",Q0WMNUDZo:Q0WMNUDZo1ml4gz6,style:{width:\"100%\"},variant:\"ooU7XWSXz\",Vbz66tjr6:\"T\u01B0 v\u1EA5n ph\\xe1p l\\xfd, h\u1ED7 tr\u1EE3 k\u1EBF to\\xe1n \u2013 thu\u1EBF, k\u1EBFt n\u1ED1i \u0111\u1EA7u t\u01B0, nh\\xe2n s\u1EF1\u2026 CoGo lu\\xf4n s\u1EB5n s\\xe0ng \u0111\u1ED3ng h\\xe0nh v\u1EDBi b\u1EA1n nh\u01B0 m\u1ED9t tr\u1EE3 l\\xfd doanh nghi\u1EC7p th\u1EA7m l\u1EB7ng nh\u01B0ng hi\u1EC7u qu\u1EA3.\",width:\"100%\",...addPropertyOverrides({Bi8HzdATW:{Q0WMNUDZo:Q0WMNUDZo1d6577n},cWP8kjAl_:{Q0WMNUDZo:undefined,variant:\"ZPg7egCWm\"},e1DJeH6JF:{Q0WMNUDZo:Q0WMNUDZo1d6577n},jheFFY1n9:{Q0WMNUDZo:Q0WMNUDZo1d6577n},oTCD6c21Q:{Q0WMNUDZo:Q0WMNUDZo1d6577n,variant:\"ZPg7egCWm\"},yFUgcuNuy:{Q0WMNUDZo:Q0WMNUDZo1d6577n},YpvZKvXha:{Q0WMNUDZo:Q0WMNUDZo1d6577n}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+785,...addPropertyOverrides({Bi8HzdATW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+785},e1DJeH6JF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+785},jheFFY1n9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+785},oTCD6c21Q:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+785},yFUgcuNuy:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+785},YpvZKvXha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+785}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i59kmg-container\",\"data-framer-name\":\"Accordion Row 6\",layoutDependency:layoutDependency,layoutId:\"E_ugTpIAq-container\",name:\"Accordion Row 6\",nodeId:\"E_ugTpIAq\",rendersWithMotion:true,scopeId:\"CqhQrNMB3\",children:/*#__PURE__*/_jsx(ServicesRow,{fbMdJnqyQ:\"C\u1ED9ng \u0111\u1ED3ng s\\xe1ng t\u1EA1o v\\xe0 k\u1EBFt n\u1ED1i gi\\xe1 tr\u1ECB\",height:\"100%\",id:\"E_ugTpIAq\",layoutId:\"E_ugTpIAq\",name:\"Accordion Row 6\",Q0WMNUDZo:Q0WMNUDZo1p0vpxg,style:{width:\"100%\"},variant:\"ooU7XWSXz\",Vbz66tjr6:\"Gia nh\u1EADp CoGo, b\u1EA1n kh\\xf4ng ch\u1EC9 c\\xf3 m\u1ED9t ch\u1ED7 l\\xe0m vi\u1EC7c,  b\u1EA1n c\\xf3 m\u1ED9t c\u1ED9ng \u0111\u1ED3ng doanh nh\\xe2n tr\u1EBB n\u0103ng \u0111\u1ED9ng, n\u01A1i nh\u1EEFng bu\u1ED5i networking, workshop, chia s\u1EBB kinh nghi\u1EC7m hay \u0111\u01A1n gi\u1EA3n l\\xe0 m\u1ED9t t\\xe1ch c\\xe0 ph\\xea c\\xf3 th\u1EC3 m\u1EDF ra h\\xe0ng lo\u1EA1t c\u01A1 h\u1ED9i h\u1EE3p t\\xe1c \u0111\\xe1ng gi\\xe1.\",width:\"100%\",...addPropertyOverrides({Bi8HzdATW:{Q0WMNUDZo:Q0WMNUDZo5z2fed},e1DJeH6JF:{Q0WMNUDZo:Q0WMNUDZo5z2fed},jheFFY1n9:{Q0WMNUDZo:Q0WMNUDZo5z2fed},n_kk3wZQf:{Q0WMNUDZo:undefined,variant:\"ZPg7egCWm\"},oTCD6c21Q:{Q0WMNUDZo:Q0WMNUDZo5z2fed},yFUgcuNuy:{Q0WMNUDZo:Q0WMNUDZo5z2fed,variant:\"ZPg7egCWm\"},YpvZKvXha:{Q0WMNUDZo:Q0WMNUDZo5z2fed}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bm2VG.framer-1kxrizo, .framer-bm2VG .framer-1kxrizo { display: block; }\",\".framer-bm2VG.framer-13tzzy8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 687px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-bm2VG .framer-zab4iu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bm2VG .framer-135q3ur, .framer-bm2VG .framer-188hlnm { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(49.9635833940277% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-bm2VG .framer-1cqtiis, .framer-bm2VG .framer-681678, .framer-bm2VG .framer-1efl6nz, .framer-bm2VG .framer-lwqmjb { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-bm2VG .framer-zcem0c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bm2VG .framer-1kwrlef-container, .framer-bm2VG .framer-12qnp2m-container, .framer-bm2VG .framer-2oa6hn-container, .framer-bm2VG .framer-1j5gldm-container, .framer-bm2VG .framer-1btkqda-container, .framer-bm2VG .framer-i59kmg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bm2VG.framer-v-1dqsvvu.framer-13tzzy8, .framer-bm2VG.framer-v-1himpz9.framer-13tzzy8, .framer-bm2VG.framer-v-8iavn7.framer-13tzzy8, .framer-bm2VG.framer-v-auijyz.framer-13tzzy8, .framer-bm2VG.framer-v-3qbfx1.framer-13tzzy8, .framer-bm2VG.framer-v-140739n.framer-13tzzy8 { flex-direction: column; height: min-content; width: 810px; }\",\".framer-bm2VG.framer-v-1dqsvvu .framer-zab4iu, .framer-bm2VG.framer-v-1himpz9 .framer-zab4iu { aspect-ratio: 1.125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); order: 1; width: 100%; }\",\".framer-bm2VG.framer-v-1dqsvvu .framer-zcem0c, .framer-bm2VG.framer-v-1himpz9 .framer-zcem0c, .framer-bm2VG.framer-v-8iavn7 .framer-zcem0c, .framer-bm2VG.framer-v-auijyz .framer-zcem0c, .framer-bm2VG.framer-v-3qbfx1 .framer-zcem0c, .framer-bm2VG.framer-v-140739n .framer-zcem0c { flex: none; order: 0; width: 100%; }\",\".framer-bm2VG.framer-v-8iavn7 .framer-zab4iu, .framer-bm2VG.framer-v-auijyz .framer-zab4iu, .framer-bm2VG.framer-v-3qbfx1 .framer-zab4iu, .framer-bm2VG.framer-v-140739n .framer-zab4iu { aspect-ratio: 1.125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 178px); order: 1; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 687\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"H7_YPkqyz\":{\"layout\":[\"fixed\",\"fixed\"]},\"L0AyCHCHe\":{\"layout\":[\"fixed\",\"fixed\"]},\"zAFG3QXVq\":{\"layout\":[\"fixed\",\"fixed\"]},\"cWP8kjAl_\":{\"layout\":[\"fixed\",\"fixed\"]},\"n_kk3wZQf\":{\"layout\":[\"fixed\",\"fixed\"]},\"e1DJeH6JF\":{\"layout\":[\"fixed\",\"auto\"]},\"jheFFY1n9\":{\"layout\":[\"fixed\",\"auto\"]},\"YpvZKvXha\":{\"layout\":[\"fixed\",\"auto\"]},\"Bi8HzdATW\":{\"layout\":[\"fixed\",\"auto\"]},\"oTCD6c21Q\":{\"layout\":[\"fixed\",\"auto\"]},\"yFUgcuNuy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCqhQrNMB3=withCSS(Component,css,\"framer-bm2VG\");export default FramerCqhQrNMB3;FramerCqhQrNMB3.displayName=\"Services\";FramerCqhQrNMB3.defaultProps={height:687,width:1280};addPropertyControls(FramerCqhQrNMB3,{variant:{options:[\"QDfYGxs2l\",\"H7_YPkqyz\",\"L0AyCHCHe\",\"zAFG3QXVq\",\"cWP8kjAl_\",\"n_kk3wZQf\",\"e1DJeH6JF\",\"jheFFY1n9\",\"YpvZKvXha\",\"Bi8HzdATW\",\"oTCD6c21Q\",\"yFUgcuNuy\"],optionTitles:[\"First open\",\"2\",\"3\",\"4\",\"5\",\"6\",\"First open (tablet/mobile)\",\"2 (tablet/mobile)\",\"3 (tablet/mobile)\",\"4 (tablet/mobile)\",\"5 (tablet/mobile)\",\"6 (tablet/mobile)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCqhQrNMB3,[{explicitInter:true,fonts:[]},...ServicesRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCqhQrNMB3\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"687\",\"framerIntrinsicWidth\":\"1280\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H7_YPkqyz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L0AyCHCHe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zAFG3QXVq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cWP8kjAl_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n_kk3wZQf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e1DJeH6JF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jheFFY1n9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YpvZKvXha\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bi8HzdATW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oTCD6c21Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yFUgcuNuy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CqhQrNMB3.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/lVS6miVDLzwsUKJUGeKq/VLIHmmCANrQvFLVpWHAL/dMBMqegpa.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qiOolg3ssghRIM2iolsA/Mfb2ErygHy5ygxFFqCpX/kTR3NcFcQ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/x8GpfTlcST4x7QzySgqc/moIm6IazDLwAbxD1aNcQ/MHmNpcoFD.js\";const serializationHash=\"framer-IN2fc\";const variantClassNames={JM7xa2dcK:\"framer-v-10lx3lb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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,image,name1,position,saying,width,...props})=>{return{...props,fKpaFwkFj:name1??props.fKpaFwkFj??\"Anna\",pEYgzKLdE:position??props.pEYgzKLdE??\"Position\",Sb4jvTzV5:image??props.Sb4jvTzV5,xJtGR5kRe:saying??props.xJtGR5kRe??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.\"};};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,Sb4jvTzV5,fKpaFwkFj,xJtGR5kRe,pEYgzKLdE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"JM7xa2dcK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10lx3lb\",className,classNames),\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"JM7xa2dcK\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Sb4jvTzV5)},className:\"framer-v75pbi\",layoutDependency:layoutDependency,layoutId:\"fyUuC2qX4\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g3zxav\",layoutDependency:layoutDependency,layoutId:\"sS6VkVfuw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l380bp\",layoutDependency:layoutDependency,layoutId:\"HRzUEx4j_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-99j1v9\",\"data-styles-preset\":\"dMBMqegpa\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:\"Anna\"})}),className:\"framer-gniiul\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fOD6t0Moq\",style:{\"--extracted-1w1cjl5\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fKpaFwkFj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18tc05i\",\"data-styles-preset\":\"MHmNpcoFD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:\"Position\"})}),className:\"framer-p1kezn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KI9w1uHZL\",style:{\"--extracted-r6o4lv\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pEYgzKLdE,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71)))\"},children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.\"})}),className:\"framer-1aqelu5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BXchq45Yi\",style:{\"--extracted-r6o4lv\":\"var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xJtGR5kRe,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IN2fc.framer-1a6srj4, .framer-IN2fc .framer-1a6srj4 { display: block; }\",\".framer-IN2fc.framer-10lx3lb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 322px; }\",\".framer-IN2fc .framer-v75pbi { aspect-ratio: 1.0015552099533438 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 322px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IN2fc .framer-g3zxav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IN2fc .framer-l380bp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IN2fc .framer-gniiul, .framer-IN2fc .framer-p1kezn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IN2fc .framer-1aqelu5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IN2fc.framer-10lx3lb, .framer-IN2fc .framer-g3zxav, .framer-IN2fc .framer-l380bp { gap: 0px; } .framer-IN2fc.framer-10lx3lb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IN2fc.framer-10lx3lb > :first-child, .framer-IN2fc .framer-g3zxav > :first-child, .framer-IN2fc .framer-l380bp > :first-child { margin-top: 0px; } .framer-IN2fc.framer-10lx3lb > :last-child, .framer-IN2fc .framer-g3zxav > :last-child, .framer-IN2fc .framer-l380bp > :last-child { margin-bottom: 0px; } .framer-IN2fc .framer-g3zxav > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-IN2fc .framer-l380bp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 552.5\n * @framerIntrinsicWidth 322\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Sb4jvTzV5\":\"image\",\"fKpaFwkFj\":\"name1\",\"xJtGR5kRe\":\"saying\",\"pEYgzKLdE\":\"position\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEwpMNoGuG=withCSS(Component,css,\"framer-IN2fc\");export default FramerEwpMNoGuG;FramerEwpMNoGuG.displayName=\"Customer Card\";FramerEwpMNoGuG.defaultProps={height:552.5,width:322};addPropertyControls(FramerEwpMNoGuG,{Sb4jvTzV5:{title:\"Image\",type:ControlType.ResponsiveImage},fKpaFwkFj:{defaultValue:\"Anna\",displayTextArea:false,title:\"Name\",type:ControlType.String},xJtGR5kRe:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.\",displayTextArea:false,title:\"Saying\",type:ControlType.String},pEYgzKLdE:{defaultValue:\"Position\",displayTextArea:false,title:\"Position\",type:ControlType.String}});addFonts(FramerEwpMNoGuG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEwpMNoGuG\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Sb4jvTzV5\\\":\\\"image\\\",\\\"fKpaFwkFj\\\":\\\"name1\\\",\\\"xJtGR5kRe\\\":\\\"saying\\\",\\\"pEYgzKLdE\\\":\\\"position\\\"}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"322\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"552.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lVS6miVDLzwsUKJUGeKq/VLIHmmCANrQvFLVpWHAL/dMBMqegpa.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qiOolg3ssghRIM2iolsA/Mfb2ErygHy5ygxFFqCpX/kTR3NcFcQ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5YYZWennaXaOi8hz6O6d/iKYFBThsaTmbpcd4lOvY/uGACuhEA4.js\";import Button from\"https://framerusercontent.com/modules/sKC338blXSbGGubu1UtZ/RSjDh7z9ikQbvTEf6xqr/FSvvPvD8G.js\";const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const ButtonControls=getPropertyControls(Button);const cycleOrder=[\"FUFilgDoi\",\"EYOp21BDV\",\"KpK5Um_0P\",\"WqwRQ8xF9\",\"tEF1DkbCT\",\"R52w3u2i5\"];const serializationHash=\"framer-LYEEY\";const variantClassNames={EYOp21BDV:\"framer-v-hvy6or\",FUFilgDoi:\"framer-v-j3ww53\",KpK5Um_0P:\"framer-v-lkcgwy\",R52w3u2i5:\"framer-v-1gxpdax\",tEF1DkbCT:\"framer-v-cslgvt\",WqwRQ8xF9:\"framer-v-1dtball\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 humanReadableEnumMap={\"Dark - Small\":\"G0wXOCRCY\",\"Light - Small\":\"NoO3FX51o\",\"Light 2\":\"vJJVHCKMH\",Dark:\"rIEFgaYtd\",Light:\"sV7u745dJ\"};const humanReadableVariantMap={\"Dark (mobile)\":\"R52w3u2i5\",\"Dark (tablet)\":\"WqwRQ8xF9\",\"Light (mobile)\":\"tEF1DkbCT\",\"Light (tablet)\":\"KpK5Um_0P\",Dark:\"EYOp21BDV\",Light:\"FUFilgDoi\"};const getProps=({buttonStyle,generalDesc,height,id,image,link,price,size,specialDeal,title,width,...props})=>{return{...props,cmnxRcUO2:link??props.cmnxRcUO2,GrN3y4cXI:image??props.GrN3y4cXI??{alt:\"\",pixelHeight:1856,pixelWidth:2464,src:\"https://framerusercontent.com/images/C2MygQ1AXUuRSfgFv5t9LCisUo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/C2MygQ1AXUuRSfgFv5t9LCisUo.png?scale-down-to=512 512w,https://framerusercontent.com/images/C2MygQ1AXUuRSfgFv5t9LCisUo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C2MygQ1AXUuRSfgFv5t9LCisUo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/C2MygQ1AXUuRSfgFv5t9LCisUo.png 2464w\"},JrVL4ioRc:generalDesc??props.JrVL4ioRc??\"General Desc\",PAVb50RED:specialDeal??props.PAVb50RED??\"Content\",PHyebwO_4:humanReadableEnumMap[buttonStyle]??buttonStyle??props.PHyebwO_4??\"rIEFgaYtd\",TrRAvJJ6K:title??props.TrRAvJJ6K??\"Case study title\",US_Yli3dH:size??props.US_Yli3dH??\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FUFilgDoi\",YmGc0WsxC:price??props.YmGc0WsxC??\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"};};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,TrRAvJJ6K,GrN3y4cXI,JrVL4ioRc,US_Yli3dH,PAVb50RED,YmGc0WsxC,PHyebwO_4,cmnxRcUO2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FUFilgDoi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"R52w3u2i5\")return true;return false;};const isDisplayed1=()=>{if([\"KpK5Um_0P\",\"WqwRQ8xF9\"].includes(baseVariant))return true;return false;};const router=useRouter();const visible=isSet(PAVb50RED);const isDisplayed2=()=>{if([\"KpK5Um_0P\",\"WqwRQ8xF9\",\"R52w3u2i5\"].includes(baseVariant))return false;return true;};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:cmnxRcUO2,motionChild:true,nodeId:\"FUFilgDoi\",scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-j3ww53\",className,classNames)} framer-qkp8n`,\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"FUFilgDoi\",ref:refBinding,style:{backgroundColor:\"var(--token-ab5b2bbe-f100-4354-bf49-7305dfd2c76f, rgb(250, 245, 234))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"none\",...style},variants:{EYOp21BDV:{backgroundColor:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},R52w3u2i5:{backgroundColor:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",boxShadow:\"0px 0px 0px 1px rgba(16, 16, 20, 0.2)\"},tEF1DkbCT:{boxShadow:\"none\"},WqwRQ8xF9:{backgroundColor:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",boxShadow:\"0px 0px 0px 1px rgba(16, 16, 20, 0.2)\"}},...addPropertyOverrides({EYOp21BDV:{\"data-framer-name\":\"Dark\"},KpK5Um_0P:{\"data-framer-name\":\"Light (tablet)\"},R52w3u2i5:{\"data-framer-name\":\"Dark (mobile)\"},tEF1DkbCT:{\"data-framer-name\":\"Light (mobile)\"},WqwRQ8xF9:{\"data-framer-name\":\"Dark (tablet)\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hzrpz1\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"KWy9Ph3kY\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(30+((componentViewport?.height||539)-60-((componentViewport?.height||539)-60)*1)/2)+0),pixelHeight:1856,pixelWidth:2464,sizes:`min(max((max(${componentViewport?.width||\"100vw\"} - 90px, 1px) - 40px) / 2, 1px), max(${componentViewport?.width||\"100vw\"} - 90px, 1px))`,...toResponsiveImage(GrN3y4cXI)},className:\"framer-1ngrx08\",layoutDependency:layoutDependency,layoutId:\"HvMDJISzQ\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({EYOp21BDV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(30+((componentViewport?.height||200)-60-((componentViewport?.height||200)-60)*1)/2)+0),pixelHeight:1856,pixelWidth:2464,sizes:`min(max((max(${componentViewport?.width||\"100vw\"} - 90px, 1px) - 40px) / 2, 1px), max(${componentViewport?.width||\"100vw\"} - 90px, 1px))`,...toResponsiveImage(GrN3y4cXI)}},KpK5Um_0P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-861.7)/2+0+0)+0+0),pixelHeight:1856,pixelWidth:2464,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(GrN3y4cXI)}},R52w3u2i5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||716)-70-1031.2)/2+0+0)+0+831.2),pixelHeight:1856,pixelWidth:2464,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(GrN3y4cXI)}},tEF1DkbCT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||704)-70-1039.2)/2+0+0)+0+819.2),pixelHeight:1856,pixelWidth:2464,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(GrN3y4cXI)}},WqwRQ8xF9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-863.7)/2+0+0)+0+0),pixelHeight:1856,pixelWidth:2464,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(GrN3y4cXI)}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({R52w3u2i5:{height:60,y:(componentViewport?.y||0)+40+(((componentViewport?.height||716)-70-1031.2)/2+0+0)+0+731.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lxrbw6-container\",layoutDependency:layoutDependency,layoutId:\"Bkn6Wa5pI-container\",nodeId:\"Bkn6Wa5pI\",rendersWithMotion:true,scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"Xem chi ti\u1EBFt\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"Bkn6Wa5pI\",JbyStVNTo:cmnxRcUO2,layoutId:\"Bkn6Wa5pI\",variant:\"sV7u745dJ\",wauKxDeIc:0,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jtphcu\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"zvWDPDcaT\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109q0wq\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ggwwIa3Mp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rl1ewq\",layoutDependency:layoutDependency,layoutId:\"VZ3h2eD4z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-731y21\",layoutDependency:layoutDependency,layoutId:\"hD7KZ5EpU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-nobdpj\",\"data-styles-preset\":\"uGACuhEA4\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:\"Case study title\"})}),className:\"framer-2ypmb4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UsEKnOPkR\",style:{\"--extracted-a0htzi\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TrRAvJJ6K,variants:{EYOp21BDV:{\"--extracted-a0htzi\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{\"--extracted-a0htzi\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{\"--extracted-a0htzi\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EYOp21BDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-nobdpj\",\"data-styles-preset\":\"uGACuhEA4\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Case study title\"})})},R52w3u2i5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-nobdpj\",\"data-styles-preset\":\"uGACuhEA4\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Case study title\"})})},WqwRQ8xF9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-nobdpj\",\"data-styles-preset\":\"uGACuhEA4\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Case study title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-99j1v9\",\"data-styles-preset\":\"dMBMqegpa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71)))\"},children:\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})}),className:\"framer-1xiy04v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F5t0H7nh5\",style:{\"--extracted-1w1cjl5\":\"var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YmGc0WsxC,variants:{EYOp21BDV:{\"--extracted-1w1cjl5\":\"var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219))\"},R52w3u2i5:{\"--extracted-r6o4lv\":\"var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219))\"},tEF1DkbCT:{\"--extracted-r6o4lv\":\"var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71))\"},WqwRQ8xF9:{\"--extracted-1w1cjl5\":\"var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EYOp21BDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-99j1v9\",\"data-styles-preset\":\"dMBMqegpa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219)))\"},children:\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})},R52w3u2i5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219)))\"},children:\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})},tEF1DkbCT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71)))\"},children:\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})},WqwRQ8xF9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-99j1v9\",\"data-styles-preset\":\"dMBMqegpa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219)))\"},children:\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ODRskP7od\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({KpK5Um_0P:{height:60,y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-861.7)/2+0+0)+0+245.5+0+0+12+0+7.6},WqwRQ8xF9:{height:60,y:(componentViewport?.y||0)+30+(((componentViewport?.height||200)-60-863.7)/2+0+0)+0+243.5+0+0+12+0+7.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rttk14-container\",layoutDependency:layoutDependency,layoutId:\"T3cxiukEw-container\",nodeId:\"T3cxiukEw\",rendersWithMotion:true,scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"Xem chi ti\u1EBFt\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"T3cxiukEw\",JbyStVNTo:resolvedLinks[0],layoutId:\"T3cxiukEw\",variant:PHyebwO_4,wauKxDeIc:0,width:\"100%\",...addPropertyOverrides({KpK5Um_0P:{JbyStVNTo:cmnxRcUO2,variant:\"vJJVHCKMH\"},WqwRQ8xF9:{JbyStVNTo:cmnxRcUO2,variant:\"sV7u745dJ\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fj9pc5\",layoutDependency:layoutDependency,layoutId:\"mJcy097lD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mpzxrb\",\"data-framer-name\":\"Promotion\",layoutDependency:layoutDependency,layoutId:\"xayPpYKBL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wngoez\",layoutDependency:layoutDependency,layoutId:\"KHVZ6zto6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-35a8oc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IV1Avs3ZV-container\",nodeId:\"IV1Avs3ZV\",rendersWithMotion:true,scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"LampPendant\",id:\"IV1Avs3ZV\",layoutId:\"IV1Avs3ZV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({EYOp21BDV:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",children:\"Content\"})}),className:\"framer-edxzu2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NnxIs5AGk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JrVL4ioRc,variants:{EYOp21BDV:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EYOp21BDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Content\"})})},R52w3u2i5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Content\"})})},WqwRQ8xF9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Content\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w187kh\",\"data-border\":true,\"data-framer-name\":\"Promotion\",layoutDependency:layoutDependency,layoutId:\"qWw2xruBT\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-138c6083-e907-40e8-909c-96eb16f3a3a3, rgb(230, 230, 230))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{EYOp21BDV:{\"--border-color\":\"var(--token-208b0b58-c730-48a9-b0c6-27cb82a2ec0c, rgb(34, 34, 34))\"},R52w3u2i5:{\"--border-color\":\"var(--token-208b0b58-c730-48a9-b0c6-27cb82a2ec0c, rgb(34, 34, 34))\"},WqwRQ8xF9:{\"--border-color\":\"var(--token-208b0b58-c730-48a9-b0c6-27cb82a2ec0c, rgb(34, 34, 34))\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1awsx85\",layoutDependency:layoutDependency,layoutId:\"oGPbRBL_T\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11zxzqd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nK0HKwHzE-container\",nodeId:\"nK0HKwHzE\",rendersWithMotion:true,scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"User\",id:\"nK0HKwHzE\",layoutId:\"nK0HKwHzE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({EYOp21BDV:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi.\"})}),className:\"framer-cgyajp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WrPY1gkmJ\",style:{\"--extracted-r6o4lv\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:US_Yli3dH,variants:{EYOp21BDV:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EYOp21BDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi.\"})})},R52w3u2i5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi.\"})})},WqwRQ8xF9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi.\"})})}},baseVariant,gestureVariant)})]})}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wb2mko\",\"data-border\":true,\"data-framer-name\":\"Promotion\",layoutDependency:layoutDependency,layoutId:\"dm1ldJLwZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-138c6083-e907-40e8-909c-96eb16f3a3a3, rgb(230, 230, 230))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{EYOp21BDV:{\"--border-color\":\"var(--token-208b0b58-c730-48a9-b0c6-27cb82a2ec0c, rgb(34, 34, 34))\"},R52w3u2i5:{\"--border-color\":\"var(--token-208b0b58-c730-48a9-b0c6-27cb82a2ec0c, rgb(34, 34, 34))\"},WqwRQ8xF9:{\"--border-color\":\"var(--token-208b0b58-c730-48a9-b0c6-27cb82a2ec0c, rgb(34, 34, 34))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l3mah7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"I_D0rqgqq-container\",nodeId:\"I_D0rqgqq\",rendersWithMotion:true,scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gift\",id:\"I_D0rqgqq\",layoutId:\"I_D0rqgqq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({EYOp21BDV:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-at9bp0\",layoutDependency:layoutDependency,layoutId:\"B9SZmxIX1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:\"T\u1EB7ng \u0111\u1EBFn 2 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xfd h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\"})}),className:\"framer-7ui3zw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wADfl10UB\",style:{\"--extracted-r6o4lv\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PAVb50RED,variants:{EYOp21BDV:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},R52w3u2i5:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},WqwRQ8xF9:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EYOp21BDV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"T\u1EB7ng \u0111\u1EBFn 2 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xfd h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\"})})},R52w3u2i5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"T\u1EB7ng \u0111\u1EBFn 2 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xfd h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\"})})},WqwRQ8xF9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"T\u1EB7ng \u0111\u1EBFn 2 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xfd h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\"})})}},baseVariant,gestureVariant)})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+(30+((componentViewport?.height||539)-60-((componentViewport?.height||539)-60)*1)/2)+0+0+0+32+636.2,...addPropertyOverrides({EYOp21BDV:{y:(componentViewport?.y||0)+(30+((componentViewport?.height||200)-60-((componentViewport?.height||200)-60)*1)/2)+0+0+0+32+640.2},tEF1DkbCT:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||704)-70-1039.2)/2+0+0)+0+0+0+0+0+719.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hs8587-container\",layoutDependency:layoutDependency,layoutId:\"SpBToWEPe-container\",nodeId:\"SpBToWEPe\",rendersWithMotion:true,scopeId:\"Jbao3h2M8\",children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"Xem chi ti\u1EBFt\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"SpBToWEPe\",layoutId:\"SpBToWEPe\",variant:\"vJJVHCKMH\",wauKxDeIc:0,width:\"100%\",...addPropertyOverrides({EYOp21BDV:{JbyStVNTo:cmnxRcUO2,variant:\"sV7u745dJ\"}},baseVariant,gestureVariant)})})})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LYEEY.framer-qkp8n, .framer-LYEEY .framer-qkp8n { display: block; }\",\".framer-LYEEY.framer-j3ww53 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 539px; justify-content: center; max-height: calc(var(--framer-viewport-height, 100vh) * 0.9); overflow: hidden; padding: 30px 60px 30px 30px; position: relative; text-decoration: none; width: 1280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LYEEY .framer-hzrpz1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-LYEEY .framer-1ngrx08 { flex: 1 0 0px; height: 100%; max-height: 100%; max-width: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LYEEY .framer-1lxrbw6-container, .framer-LYEEY .framer-rttk14-container, .framer-LYEEY .framer-hs8587-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LYEEY .framer-1jtphcu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-LYEEY .framer-109q0wq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-LYEEY .framer-1rl1ewq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LYEEY .framer-731y21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 575px; }\",\".framer-LYEEY .framer-2ypmb4, .framer-LYEEY .framer-1xiy04v, .framer-LYEEY .framer-7ui3zw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LYEEY .framer-1fj9pc5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LYEEY .framer-mpzxrb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LYEEY .framer-wngoez, .framer-LYEEY .framer-1awsx85 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LYEEY .framer-35a8oc-container, .framer-LYEEY .framer-11zxzqd-container, .framer-LYEEY .framer-1l3mah7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); position: relative; width: 32px; }\",\".framer-LYEEY .framer-edxzu2, .framer-LYEEY .framer-cgyajp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LYEEY .framer-1w187kh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LYEEY .framer-wb2mko { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LYEEY .framer-at9bp0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LYEEY.framer-v-hvy6or.framer-j3ww53 { height: min-content; }\",\".framer-LYEEY.framer-v-hvy6or .framer-hzrpz1 { align-self: stretch; height: auto; }\",\".framer-LYEEY.framer-v-hvy6or .framer-wb2mko, .framer-LYEEY.framer-v-1gxpdax .framer-wb2mko { gap: 16px; padding: 20px 0px 0px 0px; }\",\".framer-LYEEY.framer-v-lkcgwy.framer-j3ww53, .framer-LYEEY.framer-v-1dtball.framer-j3ww53 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; height: min-content; max-height: unset; max-width: 1000px; padding: 30px; width: 810px; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-hzrpz1, .framer-LYEEY.framer-v-1dtball .framer-hzrpz1 { flex: none; flex-direction: column; gap: 32px; height: min-content; order: 0; width: 100%; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-1ngrx08 { aspect-ratio: 1.4894613583138174 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 0px); order: 0; width: 100%; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-1jtphcu, .framer-LYEEY.framer-v-1dtball .framer-1jtphcu { flex: none; order: 2; width: 100%; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-109q0wq, .framer-LYEEY.framer-v-1dtball .framer-109q0wq { padding: 12px 0px 12px 0px; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-1rl1ewq, .framer-LYEEY.framer-v-1dtball .framer-1rl1ewq { flex-direction: row; gap: 40px; order: 0; width: 100%; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-731y21, .framer-LYEEY.framer-v-1dtball .framer-731y21 { flex: 1 0 0px; width: 1px; }\",\".framer-LYEEY.framer-v-lkcgwy .framer-1fj9pc5, .framer-LYEEY.framer-v-1dtball .framer-1fj9pc5, .framer-LYEEY.framer-v-1gxpdax .framer-1lxrbw6-container { order: 1; }\",\".framer-LYEEY.framer-v-1dtball .framer-1ngrx08 { aspect-ratio: 1.50354609929078 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 0px); order: 0; width: 100%; }\",\".framer-LYEEY.framer-v-1dtball .framer-1awsx85 { align-content: center; align-items: center; }\",\".framer-LYEEY.framer-v-1dtball .framer-wb2mko { align-content: center; align-items: center; gap: 16px; padding: 20px 0px 0px 0px; }\",\".framer-LYEEY.framer-v-cslgvt.framer-j3ww53, .framer-LYEEY.framer-v-1gxpdax.framer-j3ww53 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; height: min-content; max-height: unset; padding: 40px 30px 30px 30px; width: 390px; }\",\".framer-LYEEY.framer-v-cslgvt .framer-hzrpz1, .framer-LYEEY.framer-v-1gxpdax .framer-hzrpz1 { flex: none; flex-direction: column; height: min-content; order: 0; width: 100%; }\",\".framer-LYEEY.framer-v-cslgvt .framer-1ngrx08, .framer-LYEEY.framer-v-1gxpdax .framer-1ngrx08 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); order: 2; width: 100%; }\",\".framer-LYEEY.framer-v-cslgvt .framer-1jtphcu, .framer-LYEEY.framer-v-1gxpdax .framer-1jtphcu { flex: none; order: 0; width: 100%; }\",\".framer-LYEEY.framer-v-cslgvt .framer-109q0wq, .framer-LYEEY.framer-v-1gxpdax .framer-109q0wq { gap: 32px; padding: 0px; }\",\".framer-LYEEY.framer-v-cslgvt .framer-1rl1ewq, .framer-LYEEY.framer-v-cslgvt .framer-731y21, .framer-LYEEY.framer-v-1gxpdax .framer-1rl1ewq, .framer-LYEEY.framer-v-1gxpdax .framer-731y21 { width: 100%; }\",\".framer-LYEEY.framer-v-cslgvt .framer-35a8oc-container, .framer-LYEEY.framer-v-cslgvt .framer-11zxzqd-container, .framer-LYEEY.framer-v-cslgvt .framer-1l3mah7-container, .framer-LYEEY.framer-v-1gxpdax .framer-35a8oc-container, .framer-LYEEY.framer-v-1gxpdax .framer-11zxzqd-container, .framer-LYEEY.framer-v-1gxpdax .framer-1l3mah7-container { height: var(--framer-aspect-ratio-supported, 27px); width: 24px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-LYEEY[data-border=\"true\"]::after, .framer-LYEEY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 539\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"90vh\"]},\"EYOp21BDV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"90vh\"]},\"KpK5Um_0P\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1000px\",null,null]},\"WqwRQ8xF9\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1000px\",null,null]},\"tEF1DkbCT\":{\"layout\":[\"fixed\",\"auto\"]},\"R52w3u2i5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TrRAvJJ6K\":\"title\",\"GrN3y4cXI\":\"image\",\"JrVL4ioRc\":\"generalDesc\",\"US_Yli3dH\":\"size\",\"PAVb50RED\":\"specialDeal\",\"YmGc0WsxC\":\"price\",\"PHyebwO_4\":\"buttonStyle\",\"cmnxRcUO2\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJbao3h2M8=withCSS(Component,css,\"framer-LYEEY\");export default FramerJbao3h2M8;FramerJbao3h2M8.displayName=\"Case Study Card\";FramerJbao3h2M8.defaultProps={height:539,width:1280};addPropertyControls(FramerJbao3h2M8,{variant:{options:[\"FUFilgDoi\",\"EYOp21BDV\",\"KpK5Um_0P\",\"WqwRQ8xF9\",\"tEF1DkbCT\",\"R52w3u2i5\"],optionTitles:[\"Light\",\"Dark\",\"Light (tablet)\",\"Dark (tablet)\",\"Light (mobile)\",\"Dark (mobile)\"],title:\"Variant\",type:ControlType.Enum},TrRAvJJ6K:{defaultValue:\"Case study title\",displayTextArea:false,title:\"Title\",type:ControlType.String},GrN3y4cXI:{__defaultAssetReference:\"data:framer/asset-reference,C2MygQ1AXUuRSfgFv5t9LCisUo.png?originalFilename=QmUtmMKarKfLh1ky4WJx7N35se2Dvti3etW8AdCcp8K8uw.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,C2MygQ1AXUuRSfgFv5t9LCisUo.png?originalFilename=QmUtmMKarKfLh1ky4WJx7N35se2Dvti3etW8AdCcp8K8uw.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},JrVL4ioRc:{defaultValue:\"General Desc\",displayTextArea:false,title:\"General Desc\",type:ControlType.String},US_Yli3dH:{defaultValue:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi.\",displayTextArea:false,title:\"Size\",type:ControlType.String},PAVb50RED:{defaultValue:\"Content\",displayTextArea:false,title:\"Special Deal\",type:ControlType.String},YmGc0WsxC:{defaultValue:\"3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\",displayTextArea:false,title:\"Price\",type:ControlType.String},PHyebwO_4:ButtonControls?.[\"variant\"]&&{...ButtonControls[\"variant\"],defaultValue:\"rIEFgaYtd\",description:undefined,hidden:undefined,title:\"Button Style\"},cmnxRcUO2:{title:\"Link\",type:ControlType.Link}});addFonts(FramerJbao3h2M8,[{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\"}]},...ButtonFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJbao3h2M8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"539\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"90vh\\\"]},\\\"EYOp21BDV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"90vh\\\"]},\\\"KpK5Um_0P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1000px\\\",null,null]},\\\"WqwRQ8xF9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1000px\\\",null,null]},\\\"tEF1DkbCT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R52w3u2i5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"TrRAvJJ6K\\\":\\\"title\\\",\\\"GrN3y4cXI\\\":\\\"image\\\",\\\"JrVL4ioRc\\\":\\\"generalDesc\\\",\\\"US_Yli3dH\\\":\\\"size\\\",\\\"PAVb50RED\\\":\\\"specialDeal\\\",\\\"YmGc0WsxC\\\":\\\"price\\\",\\\"PHyebwO_4\\\":\\\"buttonStyle\\\",\\\"cmnxRcUO2\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Jbao3h2M8.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/f2kGzXgG8MfmuhQkvRGN/1H9QnEgGuRutYKi0y00h/bT366ZsPd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/x8GpfTlcST4x7QzySgqc/moIm6IazDLwAbxD1aNcQ/MHmNpcoFD.js\";const PhosphorFonts=getFonts(Phosphor);const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const enabledGestures={Ac7oOZFk_:{hover:true}};const serializationHash=\"framer-5wRid\";const variantClassNames={Ac7oOZFk_:\"framer-v-12mxqys\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:80,delay:.3,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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:\"Ac7oOZFk_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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:transition2,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{I3UWimPTJ:\"\u01B0u-\u0111\\xe3i-\u0111\u1EB7c-bi\u1EC7t-m\u1EEBng-50-n\u0103m-gi\u1EA3i-ph\\xf3ng-mi\u1EC1n-nam\"},unresolvedPathSlugs:{I3UWimPTJ:{collectionId:\"rATNFfadU\",collectionItemId:\"hhFINLZpv\"}},webPageId:\"IeXdK2raZ\"},motionChild:true,nodeId:\"Ac7oOZFk_\",openInNewTab:false,scopeId:\"pbWDwBUaf\",children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-12mxqys\",className,classNames)} framer-lri3ex`,\"data-framer-appear-id\":\"12mxqys\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ac7oOZFk_\",optimized:true,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-b1d7783f-5583-4e49-9d17-5f2ef803e56a, rgb(40, 40, 44))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"Ac7oOZFk_-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-bbd78cfd-6dc7-460e-880a-c716a2e54f0a, rgb(135, 74, 34))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({\"Ac7oOZFk_-hover\":{\"data-border\":true,\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxak0t\",layoutDependency:layoutDependency,layoutId:\"bTSB_dpWF\",style:{backgroundColor:\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e860tu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ry16rxfI7-container\",nodeId:\"Ry16rxfI7\",rendersWithMotion:true,scopeId:\"pbWDwBUaf\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gift\",id:\"Ry16rxfI7\",layoutId:\"Ry16rxfI7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cw50ar\",layoutDependency:layoutDependency,layoutId:\"rRzmxzY4X\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)))\"},children:\"\u01AFu \u0111\\xe3i \u0111\u1EB7c bi\u1EC7t m\u1EEBng 50 n\u0103m Gi\u1EA3i ph\\xf3ng mi\u1EC1n Nam. \\xc1p d\u1EE5ng t\u1EEB 01/04 - 30/06/2025 \"})}),className:\"framer-1ux7gcx\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"sFenJx9fc\",style:{\"--extracted-r6o4lv\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18tc05i\",\"data-styles-preset\":\"MHmNpcoFD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20)))\"},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"csJz1B7lm\",openInNewTab:true,scopeId:\"pbWDwBUaf\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wcphg8\",\"data-styles-preset\":\"bT366ZsPd\",children:\"Xem chi ti\u1EBFt\"})})})}),className:\"framer-7spa06\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"csJz1B7lm\",style:{\"--extracted-r6o4lv\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5wRid.framer-lri3ex, .framer-5wRid .framer-lri3ex { display: block; }\",\".framer-5wRid.framer-12mxqys { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 492px; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5wRid .framer-sxak0t { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 76px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5wRid .framer-e860tu-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 50%; position: absolute; top: 50%; width: 32px; z-index: 1; }\",\".framer-5wRid .framer-1cw50ar { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5wRid .framer-1ux7gcx { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5wRid .framer-7spa06 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-5wRid[data-border=\"true\"]::after, .framer-5wRid [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 108\n * @framerIntrinsicWidth 440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"492px\",null,null]},\"UzlHlTwvG\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"492px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpbWDwBUaf=withCSS(Component,css,\"framer-5wRid\");export default FramerpbWDwBUaf;FramerpbWDwBUaf.displayName=\"promotion banner\";FramerpbWDwBUaf.defaultProps={height:108,width:440};addFonts(FramerpbWDwBUaf,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpbWDwBUaf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"440\",\"framerIntrinsicHeight\":\"108\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"492px\\\",null,null]},\\\"UzlHlTwvG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"492px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pbWDwBUaf.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pPrB7LbTceVCBIKWIglU/OjtbcE5yyBjv4AmwG01a/EIB3gUiL9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qiOolg3ssghRIM2iolsA/Mfb2ErygHy5ygxFFqCpX/kTR3NcFcQ.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={beuBFBnz9:{hover:true},R7PMRdpwD:{hover:true}};const cycleOrder=[\"R7PMRdpwD\",\"beuBFBnz9\"];const serializationHash=\"framer-mj6lz\";const variantClassNames={beuBFBnz9:\"framer-v-1gn2xws\",R7PMRdpwD:\"framer-v-mgdn5q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"beuBFBnz9\",Open:\"R7PMRdpwD\"};const getProps=({click,height,id,text,title,width,...props})=>{return{...props,AGXgjlkUg:text??props.AGXgjlkUg??\"We primarily serve London and surrounding areas, but depending on the project, we may be able to travel further. Get in touch to discuss your location and project needs.\",fbMdJnqyQ:title??props.fbMdJnqyQ??\"Accordion title\",Q0WMNUDZo:click??props.Q0WMNUDZo,variant:humanReadableVariantMap[props.variant]??props.variant??\"R7PMRdpwD\"};};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,fbMdJnqyQ,Q0WMNUDZo,AGXgjlkUg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R7PMRdpwD\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfve7xc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Q0WMNUDZo){const res=await Q0WMNUDZo(...args);if(res===false)return false;}setVariant(\"beuBFBnz9\");});const onTappp2tny=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Q0WMNUDZo){const res=await Q0WMNUDZo(...args);if(res===false)return false;}});const onTapyioikh=activeVariantCallback(async(...args)=>{setVariant(\"beuBFBnz9\");});const onTap1bp9ojb=activeVariantCallback(async(...args)=>{setVariant(\"R7PMRdpwD\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-mgdn5q\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R7PMRdpwD\",onTap:onTapfve7xc,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-138c6083-e907-40e8-909c-96eb16f3a3a3, rgb(230, 230, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-de8da503-8d4d-4351-82a9-63caea8f9e9c, rgb(250, 250, 250))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"beuBFBnz9-hover\":{\"--border-color\":\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"},\"R7PMRdpwD-hover\":{\"--border-color\":\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"}},...addPropertyOverrides({\"beuBFBnz9-hover\":{\"data-framer-name\":undefined},\"R7PMRdpwD-hover\":{\"data-framer-name\":undefined},beuBFBnz9:{\"data-framer-name\":\"Closed\",onTap:onTappp2tny}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kz8tkl\",\"data-framer-name\":\"Title\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ujZWfTiLz\",onTap:onTapyioikh,...addPropertyOverrides({beuBFBnz9:{onTap:onTap1bp9ojb}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7kxp10\",\"data-styles-preset\":\"EIB3gUiL9\",children:\"Accordion title\"})}),className:\"framer-7ndo85\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"afRvE3rdj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fbMdJnqyQ,variants:{\"beuBFBnz9-hover\":{\"--extracted-1eung3n\":\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"},\"R7PMRdpwD-hover\":{\"--extracted-1eung3n\":\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"beuBFBnz9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7kxp10\",\"data-styles-preset\":\"EIB3gUiL9\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62)))\"},children:\"Accordion title\"})})},\"R7PMRdpwD-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-7kxp10\",\"data-styles-preset\":\"EIB3gUiL9\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62)))\"},children:\"Accordion title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m95kvk\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"CY7l567wL\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d971ov-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"b8foBRdXI-container\",nodeId:\"b8foBRdXI\",rendersWithMotion:true,scopeId:\"XOSkZc1rZ\",style:{rotate:45},variants:{beuBFBnz9:{rotate:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"b8foBRdXI\",layoutId:\"b8foBRdXI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"beuBFBnz9-hover\":{color:\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"},\"R7PMRdpwD-hover\":{color:\"var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, rgb(206, 120, 62))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2p4gc7\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"VJ8woFwwP\",style:{opacity:1},variants:{\"R7PMRdpwD-hover\":{opacity:1},beuBFBnz9:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",children:\"We primarily serve London and surrounding areas, but depending on the project, we may be able to travel further. Get in touch to discuss your location and project needs.\"})}),className:\"framer-1qg5dc5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fOJ07bAr_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AGXgjlkUg,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mj6lz.framer-1ii9ykh, .framer-mj6lz .framer-1ii9ykh { display: block; }\",\".framer-mj6lz.framer-mgdn5q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mj6lz .framer-1kz8tkl { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-mj6lz .framer-7ndo85 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-mj6lz .framer-1m95kvk { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 20px; }\",\".framer-mj6lz .framer-d971ov-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-mj6lz .framer-2p4gc7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 30px 0px; position: relative; width: 100%; }\",\".framer-mj6lz .framer-1qg5dc5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mj6lz.framer-mgdn5q, .framer-mj6lz .framer-2p4gc7 { gap: 0px; } .framer-mj6lz.framer-mgdn5q > *, .framer-mj6lz .framer-2p4gc7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mj6lz.framer-mgdn5q > :first-child, .framer-mj6lz .framer-2p4gc7 > :first-child { margin-top: 0px; } .framer-mj6lz.framer-mgdn5q > :last-child, .framer-mj6lz .framer-2p4gc7 > :last-child { margin-bottom: 0px; } }\",\".framer-mj6lz.framer-v-1gn2xws .framer-2p4gc7 { left: 25px; pointer-events: none; position: absolute; right: 25px; top: 71px; width: unset; z-index: 1; }\",\".framer-mj6lz.framer-v-1gn2xws.hover .framer-2p4gc7 { width: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-mj6lz[data-border=\"true\"]::after, .framer-mj6lz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 155\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"beuBFBnz9\":{\"layout\":[\"fixed\",\"auto\"]},\"UR2xgx4hb\":{\"layout\":[\"fixed\",\"auto\"]},\"atsdKHLY8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fbMdJnqyQ\":\"title\",\"Q0WMNUDZo\":\"click\",\"AGXgjlkUg\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXOSkZc1rZ=withCSS(Component,css,\"framer-mj6lz\");export default FramerXOSkZc1rZ;FramerXOSkZc1rZ.displayName=\"FAQs Row\";FramerXOSkZc1rZ.defaultProps={height:155,width:1280};addPropertyControls(FramerXOSkZc1rZ,{variant:{options:[\"R7PMRdpwD\",\"beuBFBnz9\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},fbMdJnqyQ:{defaultValue:\"Accordion title\",displayTextArea:true,title:\"Title\",type:ControlType.String},Q0WMNUDZo:{title:\"Click\",type:ControlType.EventHandler},AGXgjlkUg:{defaultValue:\"We primarily serve London and surrounding areas, but depending on the project, we may be able to travel further. Get in touch to discuss your location and project needs.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerXOSkZc1rZ,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXOSkZc1rZ\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"beuBFBnz9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UR2xgx4hb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"atsdKHLY8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerVariables\":\"{\\\"fbMdJnqyQ\\\":\\\"title\\\",\\\"Q0WMNUDZo\\\":\\\"click\\\",\\\"AGXgjlkUg\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"155\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XOSkZc1rZ.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FAQsRow from\"https://framerusercontent.com/modules/m0VtEQJUGF4OjwsjdxrM/mqrLdU3zkvaQqHroAHfw/XOSkZc1rZ.js\";const FAQsRowFonts=getFonts(FAQsRow);const serializationHash=\"framer-GSyH5\";const variantClassNames={CeynA5A8W:\"framer-v-11g4kga\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const 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:\"CeynA5A8W\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Q0WMNUDZo1hs7f9c=activeVariantCallback(async(...args)=>{setVariant(\"CeynA5A8W\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-11g4kga\",className,classNames),\"data-framer-name\":\"FAQs\",layoutDependency:layoutDependency,layoutId:\"CeynA5A8W\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cp77le-container\",layoutDependency:layoutDependency,layoutId:\"YFTTxxTgV-container\",nodeId:\"YFTTxxTgV\",rendersWithMotion:true,scopeId:\"SofTjBAi7\",children:/*#__PURE__*/_jsx(FAQsRow,{AGXgjlkUg:\"CoGo \u0111\u01B0a \u0111\u1EBFn c\\xe1c gi\u1EA3i ph\\xe1p kh\\xf4ng gian l\\xe0m vi\u1EC7c linh ho\u1EA1t: ch\u1ED7 ng\u1ED3i linh ho\u1EA1t, ch\u1ED7 ng\u1ED3i c\u1ED1 \u0111\u1ECBnh, v\u0103n ph\\xf2ng ri\\xeang \u0111\u1EBFn kh\\xf4ng gian h\u1ECDp v\\xe0 t\u1ED5 ch\u1EE9c s\u1EF1 ki\u1EC7n v\u1EDBi \u0111a d\u1EA1ng k\\xedch c\u1EE1. T\u1EA5t c\u1EA3 \u0111\u1EC1u \u0111\u01B0\u1EE3c trang b\u1ECB hi\u1EC7n \u0111\u1EA1i, s\u1EB5n s\\xe0ng \u0111\\xe1p \u1EE9ng m\u1ECDi nhu c\u1EA7u c\u1EE7a c\\xe1 nh\\xe2n v\\xe0 doanh nghi\u1EC7p.\",fbMdJnqyQ:\"CoGo c\\xf3 nh\u1EEFng lo\u1EA1i h\\xecnh kh\\xf4ng gian l\\xe0m vi\u1EC7c n\\xe0o?\",height:\"100%\",id:\"YFTTxxTgV\",layoutId:\"YFTTxxTgV\",Q0WMNUDZo:Q0WMNUDZo1hs7f9c,style:{width:\"100%\"},variant:\"R7PMRdpwD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+175,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ktni7n-container\",layoutDependency:layoutDependency,layoutId:\"rO_VjZZjo-container\",nodeId:\"rO_VjZZjo\",rendersWithMotion:true,scopeId:\"SofTjBAi7\",children:/*#__PURE__*/_jsx(FAQsRow,{AGXgjlkUg:\"Ch\u1EAFc ch\u1EAFn r\u1ED3i. CoGo ho\u1EA1t \u0111\u1ED9ng 24/7, gi\\xfap b\u1EA1n ch\u1EE7 \u0111\u1ED9ng th\u1EDDi gian l\\xe0m vi\u1EC7c theo t\\xednh ch\u1EA5t c\\xf4ng vi\u1EC7c  v\\xe0 phong c\\xe1ch c\u1EE7a ri\\xeang m\\xecnh, d\\xf9 l\\xe0 b\u1EA1n y\\xeau th\\xedch s\u1EF1 y\\xean t\u0129nh cu\u1ED1i tu\u1EA7n hay k\u1EC3 c\u1EA3 khi b\u1EA1n l\\xe0 \u201Cc\\xfa \u0111\\xeam\u201D.\",fbMdJnqyQ:\"T\\xf4i c\\xf3 th\u1EC3 l\\xe0m vi\u1EC7c t\u1EA1i CoGo v\\xe0o bu\u1ED5i t\u1ED1i ho\u1EB7c cu\u1ED1i tu\u1EA7n kh\\xf4ng?\",height:\"100%\",id:\"rO_VjZZjo\",layoutId:\"rO_VjZZjo\",style:{width:\"100%\"},variant:\"beuBFBnz9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+350,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14hh6qi-container\",layoutDependency:layoutDependency,layoutId:\"nhpnYoZzp-container\",nodeId:\"nhpnYoZzp\",rendersWithMotion:true,scopeId:\"SofTjBAi7\",children:/*#__PURE__*/_jsx(FAQsRow,{AGXgjlkUg:\"B\u1EA1n ho\\xe0n to\\xe0n c\\xf3 th\u1EC3 \u0111\u1EBFn CoGo \u0111\u1EC3 \u0111\u0103ng k\\xfd g\\xf3i tr\u1EA3i nghi\u1EC7m 01 ng\\xe0y t\u1EA1i kh\\xf4ng gian l\\xe0m vi\u1EC7c v\\xe0 tr\u1EA3i nghi\u1EC7m d\u1ECBch v\u1EE5 t\u1EA1i CoGo tr\u01B0\u1EDBc khi \u0111\u01B0a ra quy\u1EBFt \u0111\u1ECBnh. Ch\\xfang t\\xf4i lu\\xf4n ch\\xe0o \u0111\\xf3n b\u1EA1n \u0111\u1EBFn tham quan v\\xe0 t\u01B0 v\u1EA5n tr\u1EF1c ti\u1EBFp.\",fbMdJnqyQ:\"T\\xf4i c\\xf3 th\u1EC3 d\\xf9ng th\u1EED d\u1ECBch v\u1EE5 tr\u01B0\u1EDBc khi \u0111\u0103ng k\\xfd ch\\xednh th\u1EE9c kh\\xf4ng?\",height:\"100%\",id:\"nhpnYoZzp\",layoutId:\"nhpnYoZzp\",style:{width:\"100%\"},variant:\"beuBFBnz9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+525,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-teut0f-container\",layoutDependency:layoutDependency,layoutId:\"qfea40xGZ-container\",nodeId:\"qfea40xGZ\",rendersWithMotion:true,scopeId:\"SofTjBAi7\",children:/*#__PURE__*/_jsx(FAQsRow,{AGXgjlkUg:\"Chi ph\\xed linh ho\u1EA1t t\\xf9y theo lo\u1EA1i h\\xecnh v\\xe0 th\u1EDDi gian thu\\xea b\u1EA1n l\u1EF1a ch\u1ECDn. Ch\\xfang t\\xf4i c\\xf3 c\\xe1c g\\xf3i theo ng\\xe0y, theo th\\xe1ng v\\xe0 th\u01B0\u1EDDng xuy\\xean c\\xf3 \u01B0u \u0111\\xe3i d\\xe0nh ri\\xeang cho th\\xe0nh vi\\xean m\u1EDBi. Li\\xean h\u1EC7 hotline 0866.145.586 \u0111\u1EC3 \u0111\u01B0\u1EE3c t\u01B0 v\u1EA5n theo nhu c\u1EA7u c\u1EE7a b\u1EA1n.\",fbMdJnqyQ:\"Chi ph\\xed thu\\xea kh\\xf4ng gian t\u1EA1i CoGo \u0111\u01B0\u1EE3c t\\xednh nh\u01B0 th\u1EBF n\\xe0o?\",height:\"100%\",id:\"qfea40xGZ\",layoutId:\"qfea40xGZ\",style:{width:\"100%\"},variant:\"beuBFBnz9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+700,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gkf2bt-container\",layoutDependency:layoutDependency,layoutId:\"js9F1Oe0R-container\",nodeId:\"js9F1Oe0R\",rendersWithMotion:true,scopeId:\"SofTjBAi7\",children:/*#__PURE__*/_jsx(FAQsRow,{AGXgjlkUg:\"Ch\u1EAFc ch\u1EAFn r\u1ED3i! Khi l\\xe0m vi\u1EC7c t\u1EA1i CoGo, b\u1EA1n s\u1EBD \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng tr\u1ECDn g\\xf3i ti\u1EC7n \\xedch bao g\u1ED3m: m\\xe1y in, ph\\xf2ng h\u1ECDp chuy\\xean nghi\u1EC7p, khu pantry hi\u1EC7n \u0111\u1EA1i v\\xe0 \u0111\u1ED9i ng\u0169 k\u0129 thu\u1EADt, l\u1EC5 t\\xe2n th\\xe2n thi\u1EC7n, lu\\xf4n s\u1EB5n s\\xe0ng h\u1ED7 tr\u1EE3 b\u1EA1n trong su\u1ED1t qu\\xe1 tr\\xecnh l\\xe0m vi\u1EC7c.\",fbMdJnqyQ:\"CoGo c\\xf3 h\u1ED7 tr\u1EE3 d\u1ECBch v\u1EE5 in \u1EA5n, l\u1EC5 t\\xe2n, ph\\xf2ng h\u1ECDp kh\\xf4ng?\",height:\"100%\",id:\"js9F1Oe0R\",layoutId:\"js9F1Oe0R\",style:{width:\"100%\"},variant:\"beuBFBnz9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+875,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h6wyxr-container\",layoutDependency:layoutDependency,layoutId:\"dqfJw9e73-container\",nodeId:\"dqfJw9e73\",rendersWithMotion:true,scopeId:\"SofTjBAi7\",children:/*#__PURE__*/_jsx(FAQsRow,{AGXgjlkUg:\"Ch\u1EAFc ch\u1EAFn r\u1ED3i. B\u1EA1n c\\xf3 th\u1EC3 s\u1EED d\u1EE5ng \u0111\u1ECBa ch\u1EC9 t\u1EA1i CoGo l\\xe0m \u0111\u1ECBa ch\u1EC9 \u0111\u0103ng k\\xfd kinh doanh h\u1EE3p ph\\xe1p khi thu\\xea v\u0103n ph\\xf2ng ri\\xeang.\",fbMdJnqyQ:\"T\\xf4i c\\xf3 th\u1EC3 s\u1EED d\u1EE5ng \u0111\u1ECBa ch\u1EC9 v\u0103n ph\\xf2ng \u0111\u1EC3 \u0111\u0103ng k\\xfd kinh doanh kh\\xf4ng?\",height:\"100%\",id:\"dqfJw9e73\",layoutId:\"dqfJw9e73\",style:{width:\"100%\"},variant:\"beuBFBnz9\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GSyH5.framer-1mxox9d, .framer-GSyH5 .framer-1mxox9d { display: block; }\",\".framer-GSyH5.framer-11g4kga { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1040px; }\",\".framer-GSyH5 .framer-cp77le-container, .framer-GSyH5 .framer-ktni7n-container, .framer-GSyH5 .framer-14hh6qi-container, .framer-GSyH5 .framer-teut0f-container, .framer-GSyH5 .framer-gkf2bt-container, .framer-GSyH5 .framer-1h6wyxr-container { flex: none; height: auto; position: relative; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 636\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerSofTjBAi7=withCSS(Component,css,\"framer-GSyH5\");export default FramerSofTjBAi7;FramerSofTjBAi7.displayName=\"FAQs\";FramerSofTjBAi7.defaultProps={height:636,width:1040};addFonts(FramerSofTjBAi7,[{explicitInter:true,fonts:[]},...FAQsRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSofTjBAi7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"636\",\"framerIntrinsicWidth\":\"1040\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SofTjBAi7.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-dVFgh\";const variantClassNames={tGQ3P2_jG:\"framer-v-f11t4u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const 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:\"tGQ3P2_jG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-f11t4u\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tGQ3P2_jG\",ref:refBinding,style:{filter:\"saturate(0.04)\",WebkitFilter:\"saturate(0.04)\",...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Hk5uza5udFzCsNClrn4yMrFzqM.png\"},className:\"framer-1iwu4pe\",\"data-framer-name\":\"logo 47\",layoutDependency:layoutDependency,layoutId:\"wkoAhUXk7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8koO1E6EF9tlGXNW3gVVUj7VoV4.png\"},className:\"framer-si1te8\",\"data-framer-name\":\"logo 41\",layoutDependency:layoutDependency,layoutId:\"c6luqoPwV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/M6PvEhTBgJ7rQ9S85mgjcpmSos.png\"},className:\"framer-oupqmz\",\"data-framer-name\":\"logo 48\",layoutDependency:layoutDependency,layoutId:\"Nw6qmXXf2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNcwwPjp49f1ftLSpCAo1t6SriQ.png\"},className:\"framer-hoi4tf\",\"data-framer-name\":\"logo 49\",layoutDependency:layoutDependency,layoutId:\"PJxm6e6uS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RIIo8yAybu8yBYEb9dPOU2pdN8E.png\"},className:\"framer-ybhxu0\",\"data-framer-name\":\"logo 60\",layoutDependency:layoutDependency,layoutId:\"qMRVMEnfN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2T0XB2zmFmhO9tZWSVHKPowuLiA.png\"},className:\"framer-1042jm6\",\"data-border\":true,\"data-framer-name\":\"logo 42\",layoutDependency:layoutDependency,layoutId:\"Sc3N7tEu2\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:472,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2TzXEdXw1CfZAIucfymRPn1Q.png\"},className:\"framer-1dtfl5\",\"data-border\":true,\"data-framer-name\":\"logo 31\",layoutDependency:layoutDependency,layoutId:\"CHfVsloZv\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/trkcn4pdxTMk9ddokohPL36uea8.png\"},className:\"framer-16csao7\",\"data-border\":true,\"data-framer-name\":\"logo 32\",layoutDependency:layoutDependency,layoutId:\"tWUiCck6V\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/REDFjmbIopf1uhi3lhqFJNX0P6A.png\"},className:\"framer-1rnubuz\",\"data-border\":true,\"data-framer-name\":\"logo 50\",layoutDependency:layoutDependency,layoutId:\"ukMMs4609\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FF71Z0KsX14Z0u8giK9eA3eOM.png\"},className:\"framer-130fx74\",\"data-border\":true,\"data-framer-name\":\"logo 51\",layoutDependency:layoutDependency,layoutId:\"BikF9YQ1P\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B9oXDOWocdBxBRQBles3LFqLjVU.png\"},className:\"framer-1r0r9g0\",\"data-border\":true,\"data-framer-name\":\"logo 43\",layoutDependency:layoutDependency,layoutId:\"PQip3qJm2\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FTS0DGWqbMzxk3ROkCmrqB5rTOA.png\"},className:\"framer-1446y8t\",\"data-border\":true,\"data-framer-name\":\"logo 33\",layoutDependency:layoutDependency,layoutId:\"y3cUX4Ef6\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UeMmrP32CdllXq6RzPgGhKpMA.png\"},className:\"framer-179eam8\",\"data-border\":true,\"data-framer-name\":\"logo 34\",layoutDependency:layoutDependency,layoutId:\"rFYyoEAtI\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PEcqiA8ozr2PhxhlrygXDyWHvo.png\"},className:\"framer-lr9c49\",\"data-border\":true,\"data-framer-name\":\"logo 52\",layoutDependency:layoutDependency,layoutId:\"DtNTywv0J\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5cb76FkleI7iN8Vy4QeUznJQ0A.png\"},className:\"framer-qhy11f\",\"data-border\":true,\"data-framer-name\":\"logo 53\",layoutDependency:layoutDependency,layoutId:\"QssBdRPoK\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:176,pixelWidth:464,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sQncxkrdht5fTQ81sOBq9qwm0U.png\"},className:\"framer-1thdrji\",\"data-border\":true,\"data-framer-name\":\"logo 44\",layoutDependency:layoutDependency,layoutId:\"s0qXFXcq2\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dVFgh.framer-lo4nh2, .framer-dVFgh .framer-lo4nh2 { display: block; }\",\".framer-dVFgh.framer-f11t4u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dVFgh .framer-1iwu4pe, .framer-dVFgh .framer-oupqmz, .framer-dVFgh .framer-hoi4tf { flex: none; height: 44px; position: relative; width: 116px; }\",\".framer-dVFgh .framer-si1te8, .framer-dVFgh .framer-ybhxu0 { flex: none; height: 44px; position: relative; width: 117px; }\",\".framer-dVFgh .framer-1042jm6, .framer-dVFgh .framer-16csao7, .framer-dVFgh .framer-1rnubuz, .framer-dVFgh .framer-130fx74, .framer-dVFgh .framer-1446y8t { aspect-ratio: 2.659090909090909 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 117px; }\",\".framer-dVFgh .framer-1dtfl5 { aspect-ratio: 2.6818181818181817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 118px; }\",\".framer-dVFgh .framer-1r0r9g0, .framer-dVFgh .framer-179eam8, .framer-dVFgh .framer-lr9c49, .framer-dVFgh .framer-qhy11f, .framer-dVFgh .framer-1thdrji { aspect-ratio: 2.6363636363636362 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 116px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dVFgh.framer-f11t4u { gap: 0px; } .framer-dVFgh.framer-f11t4u > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-dVFgh.framer-f11t4u > :first-child { margin-left: 0px; } .framer-dVFgh.framer-f11t4u > :last-child { margin-right: 0px; } }\",'.framer-dVFgh[data-border=\"true\"]::after, .framer-dVFgh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 2285\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryAcpE9ch2=withCSS(Component,css,\"framer-dVFgh\");export default FrameryAcpE9ch2;FrameryAcpE9ch2.displayName=\"Logo\";FrameryAcpE9ch2.defaultProps={height:44,width:2285};addFonts(FrameryAcpE9ch2,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryAcpE9ch2\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"44\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"2285\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yAcpE9ch2.map", "// Generated by Framer (9e6b000)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-regular\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-5GaV9 .framer-styles-preset-1qdkvij:not(.rich-text-wrapper), .framer-5GaV9 .framer-styles-preset-1qdkvij.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.3px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, #d0d1db); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-5GaV9 .framer-styles-preset-1qdkvij:not(.rich-text-wrapper), .framer-5GaV9 .framer-styles-preset-1qdkvij.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.3px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, #d0d1db); --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-5GaV9 .framer-styles-preset-1qdkvij:not(.rich-text-wrapper), .framer-5GaV9 .framer-styles-preset-1qdkvij.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.3px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, #d0d1db); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-5GaV9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Pulse from\"https://framerusercontent.com/modules/lYJBWykb0lZqfOJU7gdK/NsqTjaWos9dpcE0xEfF6/Pulse.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import BlogCard2 from\"#framer/local/canvasComponent/aC76Cj1G_/aC76Cj1G_.js\";import Stats from\"#framer/local/canvasComponent/Bo19ROU9F/Bo19ROU9F.js\";import Services from\"#framer/local/canvasComponent/CqhQrNMB3/CqhQrNMB3.js\";import CustomerCard from\"#framer/local/canvasComponent/EwpMNoGuG/EwpMNoGuG.js\";import Button from\"#framer/local/canvasComponent/FSvvPvD8G/FSvvPvD8G.js\";import CaseStudyCard from\"#framer/local/canvasComponent/Jbao3h2M8/Jbao3h2M8.js\";import ContactForm from\"#framer/local/canvasComponent/MAfDvkc4_/MAfDvkc4_.js\";import Header from\"#framer/local/canvasComponent/o7P7y4Z3G/o7P7y4Z3G.js\";import PromotionBanner from\"#framer/local/canvasComponent/pbWDwBUaf/pbWDwBUaf.js\";import FAQs from\"#framer/local/canvasComponent/SofTjBAi7/SofTjBAi7.js\";import Logo from\"#framer/local/canvasComponent/yAcpE9ch2/yAcpE9ch2.js\";import TinTuc from\"#framer/local/collection/rATNFfadU/rATNFfadU.js\";import*as sharedStyle3 from\"#framer/local/css/bT366ZsPd/bT366ZsPd.js\";import*as sharedStyle from\"#framer/local/css/dBleO6gTI/dBleO6gTI.js\";import*as sharedStyle4 from\"#framer/local/css/di5fvJSis/di5fvJSis.js\";import*as sharedStyle1 from\"#framer/local/css/kTR3NcFcQ/kTR3NcFcQ.js\";import*as sharedStyle2 from\"#framer/local/css/MHmNpcoFD/MHmNpcoFD.js\";import*as sharedStyle5 from\"#framer/local/css/uTdpXkb83/uTdpXkb83.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const PulseFonts=getFonts(Pulse);const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const PromotionBannerFonts=getFonts(PromotionBanner);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SlideshowFonts=getFonts(Slideshow);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionDivWithFX=withFX(motion.div);const CaseStudyCardFonts=getFonts(CaseStudyCard);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const BlogCard2Fonts=getFonts(BlogCard2);const ServicesFonts=getFonts(Services);const CustomerCardFonts=getFonts(CustomerCard);const CustomerCardWithVariantAppearEffect=withVariantAppearEffect(CustomerCard);const LogoFonts=getFonts(Logo);const StatsFonts=getFonts(Stats);const FAQsFonts=getFonts(FAQs);const ImageWithFX=withFX(Image);const ContactFormFonts=getFonts(ContactForm);const HeaderFonts=getFonts(Header);const breakpoints={DHS_5xtfb:\"(max-width: 739px)\",LYQUSceZG:\"(min-width: 740px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yaHPx\";const variantClassNames={DHS_5xtfb:\"framer-v-ay2ohr\",LYQUSceZG:\"framer-v-280ls8\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:80,delay:.2,mass:1,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:40,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={damping:80,delay:1.3,mass:1,stiffness:250,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={damping:80,delay:0,mass:1,stiffness:250,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition5={damping:80,delay:.3,mass:1,stiffness:250,type:\"spring\"};const transition6={damping:80,delay:.4,mass:1,stiffness:250,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"aYNQ6rN7c\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const transition7={delay:0,duration:20,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1350,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:-20};const transition8={bounce:.2,delay:0,duration:1,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"DHS_5xtfb\",Tablet:\"LYQUSceZG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,sH6d2d7NHaYNQ6rN7c,bwrSQEQwaaYNQ6rN7c,I3UWimPTJaYNQ6rN7c,idaYNQ6rN7c,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"SAcid8SB7\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"DHS_5xtfb\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"LYQUSceZG\",\"DHS_5xtfb\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"LYQUSceZG\")return true;return false;};const elementId1=useRouteElementId(\"cxd8oMBHa\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"bzTXWt2Uk\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"SW2EJl4ld\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"IoC4zWlMZ\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"ndm1tPhLo\");const ref6=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"DHS_5xtfb\")return false;return true;};const elementId6=useRouteElementId(\"Deh3s8n4N\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"L_hwxLEd3\");const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId8=useRouteElementId(\"WldJGjoS_\");const elementId9=useRouteElementId(\"wwUKNNCbI\");const elementId10=useRouteElementId(\"Nd5scE2gW\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"qMykfbRc6\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"eTMONGDNq\");const ref13=React.useRef(null);const ref14=React.useRef(null);const elementId13=useRouteElementId(\"np8fFLmoz\");const elementId14=useRouteElementId(\"vgnIGNvrv\");const ref15=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-um1u70-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"goTvFujBn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"goTvFujBn\",intensity:8,layoutId:\"goTvFujBn\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-19toawv\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-15d8h2t\",\"data-framer-name\":\"Banner\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wm08t\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g7sme1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1txuf1h\",\"data-framer-appear-id\":\"1txuf1h\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11rx855\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qen2mi\",\"data-framer-name\":\"Badge\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-47cucy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ycLwyH0do\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Pulse,{borderWidth:5,color:\"var(--token-72313573-6dd0-43aa-8185-e6f24f39f307, rgb(235, 142, 80))\",delay:1,direction:\"out\",height:\"100%\",id:\"ycLwyH0do\",layoutId:\"ycLwyH0do\",pulseOpacity:.5,pulseSize:5,radiusType:\"full\",radiusValue:20,style:\"solid\",transition:{damping:60,delay:0,mass:1,stiffness:150,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-187cde52-4d3c-4c42-b84c-d6d602ac62bc, rgb(208, 209, 219))\"},children:\"CoGo Coworking Space\"})}),className:\"framer-gc9rng\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvj382\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},children:\"Kh\\xf4ng gian l\\xe0m vi\u1EC7c chia s\u1EBB t\u1EA1i H\\xe0 N\u1ED9i\"})}),fonts:[\"FS;Manrope-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1vjdwaq\",\"data-styles-preset\":\"dBleO6gTI\",style:{\"--framer-text-color\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},children:[\"Kh\\xf4ng gian l\\xe0m vi\u1EC7c\",/*#__PURE__*/_jsx(\"br\",{}),\"chia s\u1EBB t\u1EA1i H\\xe0 N\u1ED9i\"]})}),className:\"framer-3upbib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t1l4f3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18tc05i\",\"data-styles-preset\":\"MHmNpcoFD\",style:{\"--framer-text-color\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},children:\"Ba\u0323n \u0111ang ti\u0300m ki\\xea\u0301m m\\xf4\u0323t ch\u1ED7 la\u0300m vi\\xea\u0323c l\\xfd t\u01B0\u1EDFng hay m\\xf4\u0323t v\u0103n pho\u0300ng chuy\\xean nghi\u1EC7p, \u0111\\xe2\u0300y \u0111u\u0309 ti\\xea\u0323n nghi?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a0z0u0\",\"data-styles-preset\":\"kTR3NcFcQ\",style:{\"--framer-text-color\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},children:\"Ba\u0323n \u0111ang ti\u0300m ki\\xea\u0301m m\\xf4\u0323t ch\u1ED7 la\u0300m vi\\xea\u0323c l\\xfd t\u01B0\u1EDFng hay m\\xf4\u0323t v\u0103n pho\u0300ng chuy\\xean nghi\u1EC7p, \u0111\\xe2\u0300y \u0111u\u0309 ti\\xea\u0323n nghi?\"})}),className:\"framer-8ek52c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LJTyjxDw4\"},implicitPathVariables:undefined},{href:{webPageId:\"LJTyjxDw4\"},implicitPathVariables:undefined},{href:{webPageId:\"LJTyjxDw4\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{y:(componentViewport?.y||0)+0+0+0+0+120+0+0+2+0+0+0+0+52+0+77.6+0+144},LYQUSceZG:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+120+0+0+64+0+12+167}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+0+0+100+120+0+0+51.7+0+52+0+77.6+0+159,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1baqlv4-container\",nodeId:\"K6FfepICt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{JbyStVNTo:resolvedLinks[2]},LYQUSceZG:{JbyStVNTo:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"Xem v\u0103n ph\\xf2ng\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"K6FfepICt\",JbyStVNTo:resolvedLinks[0],layoutId:\"K6FfepICt\",variant:\"G0wXOCRCY\",wauKxDeIc:10,width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{I3UWimPTJ:\"\u01B0u-\u0111\\xe3i-\u0111\u1EB7c-bi\u1EC7t-m\u1EEBng-50-n\u0103m-gi\u1EA3i-ph\\xf3ng-mi\u1EC1n-nam\"},unresolvedPathSlugs:{I3UWimPTJ:{collectionId:\"rATNFfadU\",collectionItemId:\"hhFINLZpv\"}},webPageId:\"IeXdK2raZ\"},motionChild:true,nodeId:\"IyqZrMgAu\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ckk3lr hidden-72rtr7 hidden-280ls8 framer-lux5qc\",\"data-framer-name\":\"promotion banner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e640lx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fvrrtr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dFSlHr4gA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gift\",id:\"dFSlHr4gA\",layoutId:\"dFSlHr4gA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nzy2io\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},children:\"\u01AFu \u0111\\xe3i \u0111\u1EB7c bi\u1EC7t m\u1EEBng 50 n\u0103m Gi\u1EA3i ph\\xf3ng mi\u1EC1n Nam. \\xc1p d\u1EE5ng t\u1EEB 01/04 - 30/06/2025. \"})}),className:\"framer-1di0ria\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18tc05i\",\"data-styles-preset\":\"MHmNpcoFD\",style:{\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"K63yMeeVI\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wcphg8\",\"data-styles-preset\":\"bT366ZsPd\",children:\"Xem chi ti\u1EBFt\"})})})}),className:\"framer-1dfwt9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:\"440px\",y:(componentViewport?.y||0)+0+0+0+0+0+100+120+0+0+440.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t08y0y-container hidden-280ls8 hidden-ay2ohr\",nodeId:\"WfyMGRNpb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PromotionBanner,{height:\"100%\",id:\"WfyMGRNpb\",layoutId:\"WfyMGRNpb\",style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1cgmpzu\",\"data-framer-appear-id\":\"1cgmpzu\",\"data-framer-name\":\"Image\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wkzszr-container\",isModuleExternal:true,nodeId:\"GZhUAin5Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.7,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"GZhUAin5Q\",intervalControl:2,itemAmount:1,layoutId:\"GZhUAin5Q\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2325,pixelWidth:1926,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/Bj95PEBmsGeNvjhCJI7RwcKOtI.jpg\",srcSet:\"https://framerusercontent.com/images/Bj95PEBmsGeNvjhCJI7RwcKOtI.jpg?scale-down-to=1024 848w,https://framerusercontent.com/images/Bj95PEBmsGeNvjhCJI7RwcKOtI.jpg?scale-down-to=2048 1696w,https://framerusercontent.com/images/Bj95PEBmsGeNvjhCJI7RwcKOtI.jpg 1926w\"},className:\"framer-i64p54\",\"data-framer-name\":\"Image 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2496,pixelWidth:3751,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/3PJWk4h6NdPXkgfRv8bCnWlb8.webp\",srcSet:\"https://framerusercontent.com/images/3PJWk4h6NdPXkgfRv8bCnWlb8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3PJWk4h6NdPXkgfRv8bCnWlb8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PJWk4h6NdPXkgfRv8bCnWlb8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3PJWk4h6NdPXkgfRv8bCnWlb8.webp 3751w\"},className:\"framer-29grhr\",\"data-framer-name\":\"Image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3648,pixelWidth:5472,sizes:\"250px\",src:\"https://framerusercontent.com/images/vK2LdMDvnsLlbhO6xoOgK2h5nQs.webp\",srcSet:\"https://framerusercontent.com/images/vK2LdMDvnsLlbhO6xoOgK2h5nQs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vK2LdMDvnsLlbhO6xoOgK2h5nQs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vK2LdMDvnsLlbhO6xoOgK2h5nQs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/vK2LdMDvnsLlbhO6xoOgK2h5nQs.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/vK2LdMDvnsLlbhO6xoOgK2h5nQs.webp 5472w\"},className:\"framer-15fzuwk\",\"data-framer-name\":\"Image 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2568,pixelWidth:1926,sizes:\"250px\",src:\"https://framerusercontent.com/images/oztcVt0XXX1ol4Uk5rg0453fBww.jpg\",srcSet:\"https://framerusercontent.com/images/oztcVt0XXX1ol4Uk5rg0453fBww.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/oztcVt0XXX1ol4Uk5rg0453fBww.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/oztcVt0XXX1ol4Uk5rg0453fBww.jpg 1926w\"},className:\"framer-184wql6\",\"data-framer-name\":\"Image 4\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{I3UWimPTJ:\"\u01B0u-\u0111\\xe3i-\u0111\u1EB7c-bi\u1EC7t-m\u1EEBng-50-n\u0103m-gi\u1EA3i-ph\\xf3ng-mi\u1EC1n-nam\"},unresolvedPathSlugs:{I3UWimPTJ:{collectionId:\"rATNFfadU\",collectionItemId:\"hhFINLZpv\"}},webPageId:\"IeXdK2raZ\"},motionChild:true,nodeId:\"C43lSXPfz\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation4,className:\"framer-vmzku0 hidden-72rtr7 hidden-ay2ohr framer-lux5qc\",\"data-framer-appear-id\":\"vmzku0\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yhplim\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18tfsgp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"afOnEfzyH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gift\",id:\"afOnEfzyH\",layoutId:\"afOnEfzyH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18tc05i\",\"data-styles-preset\":\"MHmNpcoFD\",style:{\"--framer-text-color\":\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\"},children:\"\u01AFu \u0111\\xe3i \u0111\u1EB7c bi\u1EC7t m\u1EEBng 50 n\u0103m Gi\u1EA3i ph\\xf3ng mi\u1EC1n Nam.  \\xc1p d\u1EE5ng t\u1EEB  01/04 - 30/06/2025.\"})}),className:\"framer-18g7nvt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13uilny-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kk_YsaB4R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"kk_YsaB4R\",layoutId:\"kk_YsaB4R\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-mf59o3\",\"data-framer-name\":\"Our Work\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3zvzf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uhz8qt\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ah1t72\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:[\"C\\xe1c gi\u1EA3i ph\\xe1p \",/*#__PURE__*/_jsx(\"br\",{}),\"kh\\xf4ng gian l\\xe0m vi\u1EC7c\"]})}),className:\"framer-i1eoab\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wl4cqr\",\"data-framer-name\":\"Case studies\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqla3z\",\"data-framer-name\":\"Sticky Container 1\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{M8umKC9jJ:\"van-phong-rieng\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"FmCfL4Zpf\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"van-phong-rieng\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"FmCfL4Zpf\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"van-phong-rieng\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"FmCfL4Zpf\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:539,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 48px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1103.6+0+0+80+112+0+0+0},LYQUSceZG:{height:539,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+100+128+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 160px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+150+48+0+0+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ohj5c-container\",nodeId:\"mYs8FoA_m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{cmnxRcUO2:resolvedLinks1[2],style:{width:\"100%\"},variant:\"tEF1DkbCT\"},LYQUSceZG:{cmnxRcUO2:resolvedLinks1[1],style:{width:\"100%\"},variant:\"KpK5Um_0P\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{cmnxRcUO2:resolvedLinks1[0],GrN3y4cXI:addImageAlt({pixelHeight:2496,pixelWidth:3751,src:\"https://framerusercontent.com/images/5h8RxE2WhWPwdtgg7MBM7V42m1U.webp\",srcSet:\"https://framerusercontent.com/images/5h8RxE2WhWPwdtgg7MBM7V42m1U.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5h8RxE2WhWPwdtgg7MBM7V42m1U.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/5h8RxE2WhWPwdtgg7MBM7V42m1U.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/5h8RxE2WhWPwdtgg7MBM7V42m1U.webp 3751w\"},\"\"),height:\"100%\",id:\"mYs8FoA_m\",JrVL4ioRc:\"Kh\\xf4ng gian ri\\xeang bi\u1EC7t thi\u1EBFt k\u1EBF v\u1EDBi \u0111\u1EA7y \u0111\u1EE7 n\u1ED9i th\u1EA5t, \\xe1nh s\\xe1ng t\u1EF1 nhi\\xean, t\u1ED1i \u01B0u hi\u1EC7u su\u1EA5t l\\xe0m vi\u1EC7c\",layoutId:\"mYs8FoA_m\",PAVb50RED:\"T\u1EB7ng \u0111\u1EBFn 2 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xed h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\",PHyebwO_4:\"vJJVHCKMH\",style:{height:\"100%\",width:\"100%\"},TrRAvJJ6K:\"V\u0103n ph\\xf2ng ri\\xeang\",US_Yli3dH:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 200 ng\u01B0\u1EDDi\",variant:\"FUFilgDoi\",width:\"100%\",YmGc0WsxC:\"T\u1EEB  3.400.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g0bg6h\",\"data-framer-name\":\"Sticky Container 2\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{M8umKC9jJ:\"ch\u1ED7-ng\u1ED3i-c\u1ED1-\u0111\u1ECBnh\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"Mk4J7Lvt9\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"ch\u1ED7-ng\u1ED3i-c\u1ED1-\u0111\u1ECBnh\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"Mk4J7Lvt9\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"ch\u1ED7-ng\u1ED3i-c\u1ED1-\u0111\u1ECBnh\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"Mk4J7Lvt9\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:539,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 48px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1103.6+0+0+80+112+0+603+0},LYQUSceZG:{height:539,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+100+128+0+603+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 160px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+150+48+0+1e3+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1idbd3h-container\",nodeId:\"NuWNkzRlg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{cmnxRcUO2:resolvedLinks2[2],style:{width:\"100%\"},variant:\"R52w3u2i5\"},LYQUSceZG:{cmnxRcUO2:resolvedLinks2[1],style:{width:\"100%\"},variant:\"WqwRQ8xF9\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{cmnxRcUO2:resolvedLinks2[0],GrN3y4cXI:addImageAlt({pixelHeight:1365,pixelWidth:2048,src:\"https://framerusercontent.com/images/LWuZa97HQvydShKshurMQ5nre3Y.jpg\",srcSet:\"https://framerusercontent.com/images/LWuZa97HQvydShKshurMQ5nre3Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWuZa97HQvydShKshurMQ5nre3Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWuZa97HQvydShKshurMQ5nre3Y.jpg 2048w\"},\"\"),height:\"100%\",id:\"NuWNkzRlg\",JrVL4ioRc:\"Kh\\xf4ng gian m\u1EDF s\\xe1ng t\u1EA1o, hi\u1EC7n \u0111\u1EA1i, b\u1EA1n v\\xe0 team s\u1EBD c\\xf3 ch\u1ED7 ng\u1ED3i c\u1ED1 \u0111\u1ECBnh ri\\xeang bi\u1EC7t\",layoutId:\"NuWNkzRlg\",PAVb50RED:\"T\u1EB7ng 2 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xed h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\",PHyebwO_4:\"rIEFgaYtd\",style:{height:\"100%\",width:\"100%\"},TrRAvJJ6K:\"Ch\u1ED7 ng\u1ED3i c\u1ED1 \u0111\u1ECBnh\",US_Yli3dH:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m t\u1EEB 1 \u0111\u1EBFn 20 ng\u01B0\u1EDDi\",variant:\"EYOp21BDV\",width:\"100%\",YmGc0WsxC:\"T\u1EEB  2.950.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-52luyq\",\"data-framer-name\":\"Sticky Container 3\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{M8umKC9jJ:\"ch\u1ED7-ng\u1ED3i-linh-ho\u1EA1t\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"yDopNqVGg\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"ch\u1ED7-ng\u1ED3i-linh-ho\u1EA1t\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"yDopNqVGg\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"ch\u1ED7-ng\u1ED3i-linh-ho\u1EA1t\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"yDopNqVGg\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:539,width:`min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 48px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+1103.6+0+0+80+112+0+1206+0+0},LYQUSceZG:{height:539,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+100+128+0+1206+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 160px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+150+48+0+2e3+0+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ue84zt-container\",nodeId:\"YMvwE_iQ9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{cmnxRcUO2:resolvedLinks3[2],style:{width:\"100%\"},variant:\"tEF1DkbCT\"},LYQUSceZG:{cmnxRcUO2:resolvedLinks3[1],style:{width:\"100%\"},variant:\"KpK5Um_0P\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{cmnxRcUO2:resolvedLinks3[0],GrN3y4cXI:addImageAlt({pixelHeight:1926,pixelWidth:2568,src:\"https://framerusercontent.com/images/vgXm4WsOr6eByIUu5RoSFQfP5o.jpg\",srcSet:\"https://framerusercontent.com/images/vgXm4WsOr6eByIUu5RoSFQfP5o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vgXm4WsOr6eByIUu5RoSFQfP5o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vgXm4WsOr6eByIUu5RoSFQfP5o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vgXm4WsOr6eByIUu5RoSFQfP5o.jpg 2568w\"},\"\"),height:\"100%\",id:\"YMvwE_iQ9\",JrVL4ioRc:\"Kh\\xf4ng gian l\\xfd t\u01B0\u1EDFng cho nh\u1EEFng ai y\\xeau th\\xedch s\u1EF1 \u0111\u1ED5i m\u1EDBi m\u1ED7i ng\\xe0y\",layoutId:\"YMvwE_iQ9\",PAVb50RED:\"T\u1EB7ng 1 th\\xe1ng s\u1EED d\u1EE5ng mi\u1EC5n ph\\xed khi k\\xfd h\u1EE3p \u0111\u1ED3ng 12 th\\xe1ng\",PHyebwO_4:\"vJJVHCKMH\",style:{height:\"100%\",width:\"100%\"},TrRAvJJ6K:\"Ch\u1ED7 ng\u1ED3i linh ho\u1EA1t\",US_Yli3dH:\"Ph\\xf9 h\u1EE3p cho c\\xe1 nh\\xe2n ho\u1EB7c nh\\xf3m nh\u1ECF t\u1EEB 1 \u0111\u1EBFn 10 ng\u01B0\u1EDDi\",variant:\"FUFilgDoi\",width:\"100%\",YmGc0WsxC:\"T\u1EEB  2.550.000 VN\u0110 / th\\xe0nh vi\\xean / th\\xe1ng\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wwnwyi\",\"data-framer-name\":\"Sticky Container 2\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{M8umKC9jJ:\"v\u0103n-ph\\xf2ng-giao-d\u1ECBch\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"NzDlIKlMh\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"v\u0103n-ph\\xf2ng-giao-d\u1ECBch\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"NzDlIKlMh\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined},{href:{pathVariables:{M8umKC9jJ:\"v\u0103n-ph\\xf2ng-giao-d\u1ECBch\"},unresolvedPathSlugs:{M8umKC9jJ:{collectionId:\"SYvrfmxW4\",collectionItemId:\"NzDlIKlMh\"}},webPageId:\"OOfvms7xR\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:539,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 48px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1103.6+0+0+80+112+0+1809+0},LYQUSceZG:{height:539,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+100+128+0+1809+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1360px) - 160px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+150+48+0+3e3+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nvfggf-container\",nodeId:\"vummbgSlg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{cmnxRcUO2:resolvedLinks4[2],style:{width:\"100%\"},variant:\"R52w3u2i5\"},LYQUSceZG:{cmnxRcUO2:resolvedLinks4[1],style:{width:\"100%\"},variant:\"WqwRQ8xF9\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{cmnxRcUO2:resolvedLinks4[0],GrN3y4cXI:addImageAlt({pixelHeight:2332,pixelWidth:1824,src:\"https://framerusercontent.com/images/HUvnJXlOOMlpK64ehpUMPMOdjHA.jpg\",srcSet:\"https://framerusercontent.com/images/HUvnJXlOOMlpK64ehpUMPMOdjHA.jpg?scale-down-to=1024 800w,https://framerusercontent.com/images/HUvnJXlOOMlpK64ehpUMPMOdjHA.jpg?scale-down-to=2048 1601w,https://framerusercontent.com/images/HUvnJXlOOMlpK64ehpUMPMOdjHA.jpg 1824w\"},\"\"),height:\"100%\",id:\"vummbgSlg\",JrVL4ioRc:\"S\u1EDF h\u1EEFu \u0111\u1ECBa ch\u1EC9 giao d\u1ECBch chuy\\xean nghi\u1EC7p t\u1EA1i v\u1ECB tr\\xed trung t\\xe2m v\\xe0 n\\xe2ng t\u1EA7m h\\xecnh \u1EA3nh doanh nghi\u1EC7p\",layoutId:\"vummbgSlg\",PAVb50RED:\"\",PHyebwO_4:\"rIEFgaYtd\",style:{height:\"100%\",width:\"100%\"},TrRAvJJ6K:\"V\u0103n ph\\xf2ng giao d\u1ECBch\",US_Yli3dH:\"Ph\\xf9 h\u1EE3p \u0111\u1EB7t \u0111\u1ECBa ch\u1EC9 kinh doanh, v\u0103n ph\\xf2ng \u0111\u1EA1i di\u1EC7n\",variant:\"EYOp21BDV\",width:\"100%\",YmGc0WsxC:\"T\u1EEB  1.500.000 VN\u0110 / th\\xe1ng\"})})})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LJTyjxDw4\"},implicitPathVariables:undefined},{href:{webPageId:\"LJTyjxDw4\"},implicitPathVariables:undefined},{href:{webPageId:\"LJTyjxDw4\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{y:(componentViewport?.y||0)+0+0+0+1103.6+0+0+80+2524},LYQUSceZG:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+100+2556}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+150+4048,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iu2qdx-container\",nodeId:\"VJ4rdAh9m\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{JbyStVNTo:resolvedLinks5[2]},LYQUSceZG:{JbyStVNTo:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"Xem th\\xeam g\\xf3i\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"VJ4rdAh9m\",JbyStVNTo:resolvedLinks5[0],layoutId:\"VJ4rdAh9m\",variant:\"rIEFgaYtd\",wauKxDeIc:0,width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rcbexs\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pn5wly\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m45ewo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:\"Ch\u01B0\u01A1ng tr\\xecnh \u01B0u \u0111\\xe3i t\u1EEB CoGo\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:\"Ch\u01B0\u01A1ng tr\\xecnh \u01B0u \u0111\\xe3i t\u1EEB CoGo\"})}),className:\"framer-1b8boqx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Zu0qvY92M\"},implicitPathVariables:undefined},{href:{webPageId:\"Zu0qvY92M\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{y:(componentViewport?.y||0)+0+0+0+3816+100+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+5378+120+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sljyp4-container hidden-ay2ohr\",nodeId:\"UOJmhPMot\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{JbyStVNTo:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"Xem th\\xeam\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"UOJmhPMot\",JbyStVNTo:resolvedLinks6[0],layoutId:\"UOJmhPMot\",variant:\"vJJVHCKMH\",wauKxDeIc:0,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qrxcbe\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{pageSize:2,query:{from:{alias:\"aYNQ6rN7c\",data:TinTuc,type:\"Collection\"},select:[{collection:\"aYNQ6rN7c\",name:\"sH6d2d7NH\",type:\"Identifier\"},{collection:\"aYNQ6rN7c\",name:\"bwrSQEQwa\",type:\"Identifier\"},{collection:\"aYNQ6rN7c\",name:\"I3UWimPTJ\",type:\"Identifier\"},{collection:\"aYNQ6rN7c\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aYNQ6rN7c\",name:\"rUydf9Xm6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"oJrhZ0sKu\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"aYNQ6rN7c\",data:TinTuc,type:\"Collection\"},select:[{collection:\"aYNQ6rN7c\",name:\"sH6d2d7NH\",type:\"Identifier\"},{collection:\"aYNQ6rN7c\",name:\"bwrSQEQwa\",type:\"Identifier\"},{collection:\"aYNQ6rN7c\",name:\"I3UWimPTJ\",type:\"Identifier\"},{collection:\"aYNQ6rN7c\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aYNQ6rN7c\",name:\"rUydf9Xm6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"oJrhZ0sKu\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bwrSQEQwa:bwrSQEQwaaYNQ6rN7c,I3UWimPTJ:I3UWimPTJaYNQ6rN7c,id:idaYNQ6rN7c,sH6d2d7NH:sH6d2d7NHaYNQ6rN7c},index)=>{bwrSQEQwaaYNQ6rN7c??=\"\";I3UWimPTJaYNQ6rN7c??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aYNQ6rN7c-${idaYNQ6rN7c}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{I3UWimPTJ:I3UWimPTJaYNQ6rN7c},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{I3UWimPTJ:I3UWimPTJaYNQ6rN7c},webPageId:\"IeXdK2raZ\"},implicitPathVariables:undefined},{href:{pathVariables:{I3UWimPTJ:I3UWimPTJaYNQ6rN7c},webPageId:\"IeXdK2raZ\"},implicitPathVariables:undefined},{href:{pathVariables:{I3UWimPTJ:I3UWimPTJaYNQ6rN7c},webPageId:\"IeXdK2raZ\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+3847.6+80+0+0+112+0+0},LYQUSceZG:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+3816+100+0+0+120+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:272,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1360px), 1px)`,y:(componentViewport?.y||0)+0+0+0+5378+120+0+0+120+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dhi2j5-container\",nodeId:\"OvygUsT6T\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{IKJtVQEVX:resolvedLinks7[2]},LYQUSceZG:{IKJtVQEVX:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(BlogCard2,{height:\"100%\",id:\"OvygUsT6T\",IKJtVQEVX:resolvedLinks7[0],layoutId:\"OvygUsT6T\",LLv2B0LeX:bwrSQEQwaaYNQ6rN7c,style:{width:\"100%\"},variant:\"Bw2isRAOu\",width:\"100%\",wzFqmk9Uz:toResponsiveImage(sH6d2d7NHaYNQ6rN7c)})})})})})})})},idaYNQ6rN7c);})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Zu0qvY92M\"},implicitPathVariables:undefined},{href:{webPageId:\"Zu0qvY92M\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:60,y:(componentViewport?.y||0)+0+0+0+3847.6+80+0+0+448}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fj34mo-container hidden-72rtr7 hidden-280ls8\",nodeId:\"Gs2Iv6scE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{JbyStVNTo:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"\u0110\u1ECDc th\\xeam\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"Gs2Iv6scE\",JbyStVNTo:resolvedLinks8[0],layoutId:\"Gs2Iv6scE\",variant:\"vJJVHCKMH\",wauKxDeIc:0,width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1x9fy0h\",\"data-framer-name\":\"Services\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rp6ueg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wdkdo0\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-un2ulm\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:\"V\\xec sao b\u1EA1n n\\xean ch\u1ECDn \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:\"CoGo Coworking Space\"})]})}),className:\"framer-1pgz52y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1360px) - 48px)`,y:(componentViewport?.y||0)+0+0+0+4515.6+80+0+0+108},LYQUSceZG:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1360px) - 80px)`,y:(componentViewport?.y||0)+0+0+0+4408+100+0+0+108}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:687,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1360px) - 160px)`,y:(componentViewport?.y||0)+0+0+0+6010+120+0+0+108,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sv8wfb-container\",nodeId:\"p_nMc_nuY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{variant:\"e1DJeH6JF\"},LYQUSceZG:{variant:\"e1DJeH6JF\"}},children:/*#__PURE__*/_jsx(Services,{height:\"100%\",id:\"p_nMc_nuY\",layoutId:\"p_nMc_nuY\",style:{width:\"100%\"},variant:\"QDfYGxs2l\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186ypbz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a382s\",\"data-framer-name\":\"Testimonials\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14455x5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6fbbu4\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ni\u1EC1m tin \u0111\u01B0\u1EE3c x\\xe2y \",/*#__PURE__*/_jsx(\"br\",{}),\"t\u1EEB tr\u1EA3i nghi\u1EC7m kh\\xe1ch h\\xe0ng\"]})}),className:\"framer-ka8fg7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkb8co\",\"data-framer-name\":\"cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1366px), 1360px)`,y:(componentViewport?.y||0)+0+0+0+5470.6+0+0+80+0+0+112+0+0},LYQUSceZG:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1366px), 1360px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5403+0+0+100+0+0+112+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1366px), 1360px) - 120px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+7045+0+0+100+0+0+128+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{__framer__transformTargets:[{target:{opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:360,y:-200}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},LYQUSceZG:{__framer__transformTargets:[{target:{opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yimhyk-container\",nodeId:\"XUKavwWuJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomerCard,{fKpaFwkFj:\"Anh Tu\u1EA5n\",height:\"100%\",id:\"XUKavwWuJ\",layoutId:\"XUKavwWuJ\",pEYgzKLdE:\"Freelancer Marketing\",Sb4jvTzV5:addImageAlt({pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/5U7azVaVT6ogBk23qZv9AtdLy5c.png\",srcSet:\"https://framerusercontent.com/images/5U7azVaVT6ogBk23qZv9AtdLy5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/5U7azVaVT6ogBk23qZv9AtdLy5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5U7azVaVT6ogBk23qZv9AtdLy5c.png 1200w\"},\"\"),style:{width:\"100%\"},width:\"100%\",xJtGR5kRe:\"Kh\\xf4ng gian l\\xe0m vi\u1EC7c t\u1EA1i CoGo truy\u1EC1n c\u1EA3m h\u1EE9ng v\u1EDBi thi\u1EBFt k\u1EBF hi\u1EC7n \u0111\u1EA1i, \\xe1nh s\\xe1ng t\u1EF1 nhi\\xean v\\xe0 ti\u1EC7n nghi \u0111\u1EA7y \u0111\u1EE7, gi\\xfap t\\xf4i t\u1EADp trung v\\xe0 c\u1EA3i thi\u1EC7n hi\u1EC7u su\u1EA5t l\\xe0m vi\u1EC7c so v\u1EDBi khi l\\xe0m vi\u1EC7c t\u1EA1i qu\\xe1n c\\xe0 ph\\xea \u1ED3n \\xe0o.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1366px), 1360px)`,y:(componentViewport?.y||0)+0+0+0+5470.6+0+0+80+0+0+112+0+616},LYQUSceZG:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1366px), 1360px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5403+0+0+100+0+0+112+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1366px), 1360px) - 120px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+7045+0+0+100+0+0+128+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n56mal-container\",nodeId:\"k1Q4fcDvI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomerCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref10,target:\"oywDhvuS5\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,fKpaFwkFj:\"Ch\u1ECB Linh\",height:\"100%\",id:\"k1Q4fcDvI\",layoutId:\"k1Q4fcDvI\",pEYgzKLdE:\" Founder Startup C\\xf4ng ngh\u1EC7\",Sb4jvTzV5:addImageAlt({pixelHeight:4043,pixelWidth:3032,src:\"https://framerusercontent.com/images/wEpbStwxr8Dt2UQEqWSrksNH0.jpg\",srcSet:\"https://framerusercontent.com/images/wEpbStwxr8Dt2UQEqWSrksNH0.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/wEpbStwxr8Dt2UQEqWSrksNH0.jpg?scale-down-to=2048 1535w,https://framerusercontent.com/images/wEpbStwxr8Dt2UQEqWSrksNH0.jpg 3032w\"},\"\"),style:{width:\"100%\"},width:\"100%\",xJtGR5kRe:\"T\\xf4i th\\xedch l\\xe0m vi\u1EC7c t\u1EA1i CoGo v\\xec kh\\xf4ng gian m\u1EDF, s\\xe1ng t\u1EA1o, \u0111\u1ED3ng nghi\u1EC7p th\\xe2n thi\u1EC7n v\\xe0 m\\xf4i tr\u01B0\u1EDDng n\u0103ng \u0111\u1ED9ng, ph\\xf9 h\u1EE3p v\u1EDBi Gen Z. CoGo \u0111\\xe1p \u1EE9ng nhu c\u1EA7u ph\\xe1t tri\u1EC3n, giao ti\u1EBFp v\\xe0 k\u1EBFt n\u1ED1i, mang \u0111\u1EBFn ngu\u1ED3n c\u1EA3m h\u1EE9ng l\\xe0m vi\u1EC7c d\u1ED3i d\\xe0o.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1366px), 1360px)`,y:(componentViewport?.y||0)+0+0+0+5470.6+0+0+80+0+0+112+0+1232},LYQUSceZG:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1366px), 1360px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5403+0+0+100+0+0+112+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1366px), 1360px) - 120px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+7045+0+0+100+0+0+128+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jdn7cg-container\",nodeId:\"R99xY4jxf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomerCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref10,target:\"oywDhvuS5\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,fKpaFwkFj:\"Anh B\\xecnh\",height:\"100%\",id:\"R99xY4jxf\",layoutId:\"R99xY4jxf\",pEYgzKLdE:\"\u0110\u1EA1i di\u1EC7n V\u0103n ph\\xf2ng Chi nh\\xe1nh\",Sb4jvTzV5:addImageAlt({pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/EN12Ny0kHeoHPsQBWh0ZtGCJQdg.jpg\",srcSet:\"https://framerusercontent.com/images/EN12Ny0kHeoHPsQBWh0ZtGCJQdg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EN12Ny0kHeoHPsQBWh0ZtGCJQdg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EN12Ny0kHeoHPsQBWh0ZtGCJQdg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EN12Ny0kHeoHPsQBWh0ZtGCJQdg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/EN12Ny0kHeoHPsQBWh0ZtGCJQdg.jpg 6000w\"},\"\"),style:{width:\"100%\"},width:\"100%\",xJtGR5kRe:\"D\u1ECBch v\u1EE5 kh\\xe1ch h\\xe0ng c\u1EE7a CoGo chu \u0111\\xe1o, gi\u1EA3i \u0111\\xe1p th\u1EAFc m\u1EAFc nhanh ch\\xf3ng. V\u1ECB tr\\xed CoGo thu\u1EADn ti\u1EC7n, gi\\xfap t\\xf4i ti\u1EBFt ki\u1EC7m th\u1EDDi gian. T\\xf4i h\\xe0i l\\xf2ng v\\xe0 s\u1EBD ti\u1EBFp t\u1EE5c g\u1EAFn b\\xf3 l\\xe2u d\\xe0i v\u1EDBi CoGo.\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ok3mn7\",\"data-framer-name\":\"show-testimonial-text\",id:elementId8,ref:ref10})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xd4rb9\",\"data-framer-name\":\"image-change-position\",id:elementId9,ref:ref9}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-shoa9m hidden-280ls8 hidden-ay2ohr\",\"data-framer-name\":\"position-transform\",id:elementId10,ref:ref11}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tys9p hidden-280ls8 hidden-ay2ohr\",\"data-framer-name\":\"trigger\",id:elementId11,ref:ref12})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pmrm4a\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{y:(componentViewport?.y||0)+0+0+0+5470.6+0+2056+32+0},LYQUSceZG:{y:(componentViewport?.y||0)+0+0+0+5403+0+864+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+7045+0+860+32,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mlfska-container\",nodeId:\"qHVIf7s72\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"qHVIf7s72\",layoutId:\"qHVIf7s72\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1x9n052\",\"data-framer-name\":\"Stats\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ch3w9\",\"data-framer-name\":\"Seperator\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15sovfc\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+5470.6+0+2164+100+0+0+0},LYQUSceZG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+5403+0+972+0+0+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1360px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+7045+0+968+0+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vv72zp-container\",nodeId:\"t7B_yOAYF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{variant:\"EwSheA2tJ\"},LYQUSceZG:{variant:\"EwSheA2tJ\"}},children:/*#__PURE__*/_jsx(Stats,{bfksRWO1v:\"\u0111\u1EB7t tr\u1EE5 s\u1EDF t\u1EA1i CoGo\",cR_MXQpEk:200,Eymyq0ud7:0,height:\"100%\",id:\"t7B_yOAYF\",layoutId:\"t7B_yOAYF\",mFwQsRO7Q:\"\u0110\u1ED1i t\\xe1c \",ODtuWUt7w:\"+\",style:{width:\"100%\"},variant:\"MBOJkUZZp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+5470.6+0+2164+100+0+0+277},LYQUSceZG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+5403+0+972+0+0+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1360px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+7045+0+968+0+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e5txks-container\",nodeId:\"RHacIVcgL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{variant:\"EwSheA2tJ\"},LYQUSceZG:{variant:\"EwSheA2tJ\"}},children:/*#__PURE__*/_jsx(Stats,{bfksRWO1v:\"c\u1EA3m th\u1EA5y h\\xe0i l\\xf2ng v\u1EDBi kh\\xf4ng gian v\\xe0 d\u1ECBch v\u1EE5 \",cR_MXQpEk:99,Eymyq0ud7:0,height:\"100%\",id:\"RHacIVcgL\",layoutId:\"RHacIVcgL\",mFwQsRO7Q:\"Kh\\xe1ch h\\xe0ng\",ODtuWUt7w:\"%\",style:{width:\"100%\"},variant:\"MBOJkUZZp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+5470.6+0+2164+100+0+0+554},LYQUSceZG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+5403+0+972+0+0+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1360px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+7045+0+968+0+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4mf2n1-container\",nodeId:\"F8ebS9WKa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{variant:\"EwSheA2tJ\"},LYQUSceZG:{variant:\"EwSheA2tJ\"}},children:/*#__PURE__*/_jsx(Stats,{bfksRWO1v:\"Ti\u1EBFp t\u1EE5c \u0111\u1EB7t ch\u1ED7 t\u1EA1i CoGo\",cR_MXQpEk:90,Eymyq0ud7:0,height:\"100%\",id:\"F8ebS9WKa\",layoutId:\"F8ebS9WKa\",mFwQsRO7Q:\"Kh\\xe1ch h\\xe0ng\",ODtuWUt7w:\"%\",style:{width:\"100%\"},variant:\"MBOJkUZZp\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7rzybq\",\"data-framer-name\":\"FAQs\",id:elementId12,ref:ref13,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10p10jq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l4nj2i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hkyb0x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:\"C\\xe2u h\u1ECFi \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gg00x3\",\"data-styles-preset\":\"di5fvJSis\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, rgb(16, 16, 20))\"},children:\"C\\xe2u h\u1ECFi \"})}),className:\"framer-1uq7uis\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qdkvij\",\"data-styles-preset\":\"uTdpXkb83\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71))\"},children:[\"B\u1EA1n c\\xf3 c\\xe2u h\u1ECFi d\\xe0nh cho CoGo?\",/*#__PURE__*/_jsx(\"br\",{}),\"Ch\\xfang t\\xf4i lu\\xf4n l\u1EAFng nghe!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qdkvij\",\"data-styles-preset\":\"uTdpXkb83\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-30e48027-3b22-4ff1-a546-6bd64e851575, rgb(61, 61, 71))\"},children:[\"B\u1EA1n c\\xf3 c\\xe2u h\u1ECFi d\\xe0nh cho CoGo?\",/*#__PURE__*/_jsx(\"br\",{}),\"Ch\\xfang t\\xf4i lu\\xf4n l\u1EAFng nghe!\"]})}),className:\"framer-gv0kl8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PNT5nhI_6\"},implicitPathVariables:undefined},{href:{webPageId:\"PNT5nhI_6\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{y:(componentViewport?.y||0)+0+0+0+6788+0+0+80+0+81.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+8446+120+0+0+0+263,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xfkwp1-container hidden-ay2ohr\",nodeId:\"qrOEQaVb7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{JbyStVNTo:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"\u0110\u1EB7t c\\xe2u h\u1ECFi cho CoGo\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"qrOEQaVb7\",JbyStVNTo:resolvedLinks9[0],layoutId:\"qrOEQaVb7\",variant:\"rIEFgaYtd\",wauKxDeIc:0,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+8601.6+0+0+80+283},LYQUSceZG:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`,y:(componentViewport?.y||0)+0+0+0+6788+0+0+80+283}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:636,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1360px) - 60px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+8446+120+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1trxqx0-container\",nodeId:\"UbyV4Cail\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"UbyV4Cail\",layoutId:\"UbyV4Cail\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ODRskP7od\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ODRskP7od\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:60,y:(componentViewport?.y||0)+0+0+0+8601.6+0+0+80+979}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lp1qy0-container hidden-72rtr7 hidden-280ls8\",nodeId:\"spooFKUd3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{JbyStVNTo:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(Button,{aWPRIK3cW:\"\u0110\u1EB7t c\\xe2u h\u1ECFi cho CoGo\",bAEOFj2Y2:true,BKPcQrLno:false,height:\"100%\",id:\"spooFKUd3\",JbyStVNTo:resolvedLinks10[0],layoutId:\"spooFKUd3\",variant:\"rIEFgaYtd\",wauKxDeIc:0,width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkeb91\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref14,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9800.6+0),pixelHeight:4160,pixelWidth:6240,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.03)`,src:\"https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp\",srcSet:\"https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp 6240w\"}},LYQUSceZG:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref14,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7887+0),pixelHeight:4160,pixelWidth:6240,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.03)`,src:\"https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp\",srcSet:\"https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp 6240w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref14,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-110}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9322+0),pixelHeight:4160,pixelWidth:6240,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.03)`,src:\"https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp\",srcSet:\"https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/c67giNzNmPYE2QjTmzE2boJIXdo.webp 6240w\"},className:\"framer-bnjm33\",id:elementId13,ref:ref14})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{y:(componentViewport?.y||0)+0+0+0+10000.6},LYQUSceZG:{y:(componentViewport?.y||0)+0+0+0+8347}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:958,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+9322,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xb9vc7-container\",id:elementId14,nodeId:\"vgnIGNvrv\",ref:ref15,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{variant:\"EyD9kuxc0\"},LYQUSceZG:{variant:\"zaBoeIkT8\"}},children:/*#__PURE__*/_jsx(ContactForm,{height:\"100%\",id:\"vgnIGNvrv\",IXOEPHnRR:\"80px 40px 80px 40px\",layoutId:\"vgnIGNvrv\",PEIw5HV8n:\"120px 80px 120px 80px\",QgdjNnC5t:\"80px 24px 80px 24px\",style:{width:\"100%\"},variant:\"ODRskP7od\",width:\"100%\",WktiD6ssr:true})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DHS_5xtfb:{height:89,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kghzdn-container hidden-72rtr7 hidden-280ls8\",layoutScroll:true,nodeId:\"hFaKK2xex\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"hFaKK2xex\",layoutId:\"hFaKK2xex\",style:{width:\"100%\"},variant:\"IlMO3PYt9\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LYQUSceZG:{height:89,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w61o5x-container hidden-72rtr7 hidden-ay2ohr\",layoutScroll:true,nodeId:\"hbJz4kAUu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"hbJz4kAUu\",layoutId:\"hbJz4kAUu\",style:{width:\"100%\"},variant:\"IlMO3PYt9\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yaHPx.framer-lux5qc, .framer-yaHPx .framer-lux5qc { display: block; }\",\".framer-yaHPx.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-0c2325eb-32e6-4468-b86d-b2000f27f938, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-yaHPx .framer-um1u70-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-yaHPx .framer-19toawv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-15d8h2t { align-content: center; align-items: center; background-color: var(--token-293955a5-6f9a-470e-8eb8-8f52a27509f0, #101014); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-19wm08t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; max-height: 1000px; max-width: 1360px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yaHPx .framer-1g7sme1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 800px; justify-content: center; max-width: 45%; overflow: visible; padding: 120px 0px 80px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-yaHPx .framer-1txuf1h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yaHPx .framer-11rx855 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-qen2mi { align-content: center; align-items: center; background-color: var(--token-b1d7783f-5583-4e49-9d17-5f2ef803e56a, #28282c); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-yaHPx .framer-47cucy-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-yaHPx .framer-gc9rng { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yaHPx .framer-lvj382 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-3upbib { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-filter: contrast(1) invert(0); filter: contrast(1) invert(0); flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1t1l4f3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-8ek52c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1baqlv4-container, .framer-yaHPx .framer-iu2qdx-container, .framer-yaHPx .framer-sljyp4-container, .framer-yaHPx .framer-1fj34mo-container, .framer-yaHPx .framer-1mlfska-container, .framer-yaHPx .framer-xfkwp1-container, .framer-yaHPx .framer-lp1qy0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-yaHPx .framer-1ckk3lr { align-content: flex-start; align-items: flex-start; background-color: var(--token-b1d7783f-5583-4e49-9d17-5f2ef803e56a, #28282c); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yaHPx .framer-e640lx { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, #ce783e); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 42px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yaHPx .framer-1fvrrtr-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 50%; position: absolute; top: 55%; transform: translate(-50%, -50%); width: 20px; z-index: 1; }\",\".framer-yaHPx .framer-nzy2io { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yaHPx .framer-1di0ria { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1dfwt9v { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-t08y0y-container { flex: none; height: auto; position: relative; width: 440px; }\",\".framer-yaHPx .framer-1cgmpzu { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 120px 0px 80px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yaHPx .framer-1wkzszr-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-i64p54, .framer-yaHPx .framer-29grhr, .framer-yaHPx .framer-15fzuwk, .framer-yaHPx .framer-184wql6 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: 300px; overflow: hidden; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yaHPx .framer-vmzku0 { align-content: center; align-items: center; background-color: var(--token-b1d7783f-5583-4e49-9d17-5f2ef803e56a, #28282c); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yaHPx .framer-1yhplim { align-content: center; align-items: center; align-self: stretch; aspect-ratio: 1 / 1; background-color: var(--token-8695fbf7-8a15-447c-8e7f-32943b34f0b6, #ce783e); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 200px); will-change: var(--framer-will-change-override, transform); }\",\".framer-yaHPx .framer-18tfsgp-container { cursor: pointer; flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-yaHPx .framer-18g7nvt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-13uilny-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 30px; }\",\".framer-yaHPx .framer-mf59o3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 75px; width: 100%; }\",\".framer-yaHPx .framer-1d3zvzf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1360px; overflow: visible; padding: 150px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1uhz8qt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 50%; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-yaHPx .framer-ah1t72, .framer-yaHPx .framer-un2ulm, .framer-yaHPx .framer-6fbbu4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-i1eoab, .framer-yaHPx .framer-1pgz52y, .framer-yaHPx .framer-1uq7uis { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1wl4cqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-yaHPx .framer-1tqla3z, .framer-yaHPx .framer-1g0bg6h, .framer-yaHPx .framer-1wwnwyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; max-width: 1360px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-yaHPx .framer-9ohj5c-container, .framer-yaHPx .framer-1idbd3h-container, .framer-yaHPx .framer-nvfggf-container { flex: 1 0 0px; height: 620px; position: relative; width: 1px; }\",\".framer-yaHPx .framer-52luyq { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: center; max-width: 1360px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-yaHPx .framer-ue84zt-container { flex: none; height: 620px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1rcbexs { align-content: center; align-items: center; background-color: var(--token-ab5b2bbe-f100-4354-bf49-7305dfd2c76f, #faf5ea); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-pn5wly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1360px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1m45ewo { 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-yaHPx .framer-1b8boqx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1qrxcbe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-dhi2j5-container { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-yaHPx .framer-1x9fy0h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1rp6ueg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1360px; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-wdkdo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 50%; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-yaHPx .framer-1sv8wfb-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-yaHPx .framer-186ypbz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-a382s { align-content: center; align-items: center; background-color: var(--token-ab5b2bbe-f100-4354-bf49-7305dfd2c76f, #fff9eb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 80px 80px 80px; position: relative; width: 100%; z-index: 4; }\",\".framer-yaHPx .framer-14455x5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1366px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-ka8fg7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1rkb8co { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-yimhyk-container, .framer-yaHPx .framer-n56mal-container, .framer-yaHPx .framer-1jdn7cg-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-yaHPx .framer-ok3mn7 { background-color: #852c2c; flex: none; height: 201px; opacity: 0; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 73px; z-index: 1; }\",\".framer-yaHPx .framer-xd4rb9 { background-color: #0aff43; flex: none; height: 324px; left: 1100px; opacity: 0; overflow: hidden; position: absolute; top: 87px; width: 42px; z-index: 5; }\",\".framer-yaHPx .framer-shoa9m { background-color: #bf3030; flex: none; height: 380px; left: 1100px; opacity: 0; overflow: hidden; position: absolute; top: 55px; width: 42px; z-index: 5; }\",\".framer-yaHPx .framer-4tys9p { background-color: #44ccff; flex: none; height: 307px; opacity: 0; overflow: hidden; position: absolute; right: 0px; top: -149px; width: 100px; z-index: 1; }\",\".framer-yaHPx .framer-pmrm4a { align-content: center; align-items: center; background-color: var(--token-a9f0b8d5-6bdf-4099-96f1-bb4b3885b3d5, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1x9n052 { align-content: center; align-items: center; background-color: var(--token-829518ab-a988-4ebf-a36b-a88d1d26be63, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 80px 120px 80px; position: relative; width: 100%; z-index: 4; }\",\".framer-yaHPx .framer-11ch3w9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1800px; min-height: 1px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-15sovfc { background-color: var(--token-829518ab-a988-4ebf-a36b-a88d1d26be63, #ffffff); display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1360px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1vv72zp-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-yaHPx .framer-e5txks-container, .framer-yaHPx .framer-4mf2n1-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-yaHPx .framer-7rzybq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 120px 80px 120px 80px; position: relative; scroll-margin-top: 75px; width: 100%; }\",\".framer-yaHPx .framer-10p10jq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1360px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1l4nj2i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 100px; width: 1px; z-index: 1; }\",\".framer-yaHPx .framer-1hkyb0x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-gv0kl8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yaHPx .framer-1trxqx0-container { flex: 2 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-yaHPx .framer-1lkeb91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 641px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yaHPx .framer-bnjm33 { bottom: -118px; flex: none; left: calc(50.00000000000002% - 103% / 2); overflow: hidden; position: absolute; top: 0px; width: 103%; z-index: 1; }\",\".framer-yaHPx .framer-xb9vc7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yaHPx .framer-1kghzdn-container, .framer-yaHPx .framer-1w61o5x-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 740px) and (max-width: 1199px) { .framer-yaHPx.framer-72rtr7 { width: 740px; } .framer-yaHPx .framer-um1u70-container { order: 0; } .framer-yaHPx .framer-19toawv, .framer-yaHPx .framer-1baqlv4-container { order: 1; } .framer-yaHPx .framer-15d8h2t { justify-content: flex-end; padding: 0px 40px 40px 40px; } .framer-yaHPx .framer-19wm08t { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; } .framer-yaHPx .framer-1g7sme1 { flex: none; height: min-content; max-width: unset; order: 0; padding: 0px; width: 100%; } .framer-yaHPx .framer-1txuf1h { flex: none; gap: 32px; height: min-content; padding: 120px 0px 0px 0px; } .framer-yaHPx .framer-11rx855 { gap: 32px; } .framer-yaHPx .framer-lvj382 { align-content: flex-start; align-items: flex-start; flex-direction: row; } .framer-yaHPx .framer-3upbib, .framer-yaHPx .framer-1hkyb0x { flex: 1 0 0px; width: 1px; } .framer-yaHPx .framer-1t1l4f3 { flex: 1.1 0 0px; gap: 32px; padding: 12px 0px 0px 0px; width: 1px; } .framer-yaHPx .framer-8ek52c { order: 0; width: 100%; } .framer-yaHPx .framer-1cgmpzu { gap: 0px; height: 1px; order: 2; padding: 0px; width: 100%; } .framer-yaHPx .framer-vmzku0 { flex: none; order: 1; width: 100%; } .framer-yaHPx .framer-1yhplim { width: var(--framer-aspect-ratio-supported, 48px); } .framer-yaHPx .framer-13uilny-container { height: var(--framer-aspect-ratio-supported, 33px); } .framer-yaHPx .framer-1d3zvzf { gap: 80px; padding: 100px 80px 100px 80px; } .framer-yaHPx .framer-1uhz8qt, .framer-yaHPx .framer-wdkdo0 { max-width: unset; } .framer-yaHPx .framer-1wl4cqr { gap: 64px; justify-content: center; } .framer-yaHPx .framer-1tqla3z, .framer-yaHPx .framer-1g0bg6h, .framer-yaHPx .framer-52luyq, .framer-yaHPx .framer-1wwnwyi { height: min-content; position: relative; top: unset; } .framer-yaHPx .framer-9ohj5c-container, .framer-yaHPx .framer-1idbd3h-container, .framer-yaHPx .framer-ue84zt-container, .framer-yaHPx .framer-nvfggf-container { height: auto; } .framer-yaHPx .framer-1rcbexs { padding: 100px 40px 100px 40px; } .framer-yaHPx .framer-1x9fy0h, .framer-yaHPx .framer-15sovfc { padding: 100px 0px 100px 0px; } .framer-yaHPx .framer-1rp6ueg, .framer-yaHPx .framer-1x9n052, .framer-yaHPx .framer-7rzybq { padding: 0px 40px 0px 40px; } .framer-yaHPx .framer-a382s { overflow: visible; padding: 100px 40px 100px 40px; } .framer-yaHPx .framer-14455x5 { gap: 64px; } .framer-yaHPx .framer-1rkb8co { gap: 30px; } .framer-yaHPx .framer-xd4rb9 { left: unset; right: 0px; top: -155px; } .framer-yaHPx .framer-10p10jq { flex-direction: column; padding: 80px 0px 100px 0px; } .framer-yaHPx .framer-1l4nj2i { align-content: center; align-items: center; flex: none; flex-direction: row; position: relative; top: unset; width: 100%; } .framer-yaHPx .framer-1trxqx0-container { flex: none; width: 100%; } .framer-yaHPx .framer-1lkeb91 { height: 460px; min-height: unset; } .framer-yaHPx .framer-1w61o5x-container { order: 3; }}\",\"@media (max-width: 739px) { .framer-yaHPx.framer-72rtr7 { width: 390px; } .framer-yaHPx .framer-15d8h2t { height: min-content; padding: 120px 24px 24px 24px; } .framer-yaHPx .framer-19wm08t { flex-direction: column; gap: 20px; height: min-content; justify-content: flex-start; } .framer-yaHPx .framer-1g7sme1 { flex: none; gap: 24px; height: min-content; max-width: unset; padding: 2px 0px 0px 0px; width: 100%; } .framer-yaHPx .framer-1txuf1h { flex: none; height: min-content; } .framer-yaHPx .framer-8ek52c, .framer-yaHPx .framer-1b8boqx { order: 0; } .framer-yaHPx .framer-1baqlv4-container { order: 1; } .framer-yaHPx .framer-1ckk3lr { order: 2; } .framer-yaHPx .framer-1fvrrtr-container { height: var(--framer-aspect-ratio-supported, 23px); } .framer-yaHPx .framer-1cgmpzu { flex: none; height: 400px; padding: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-yaHPx .framer-1d3zvzf { gap: 64px; padding: 80px 24px 80px 24px; } .framer-yaHPx .framer-1uhz8qt, .framer-yaHPx .framer-wdkdo0 { max-width: unset; } .framer-yaHPx .framer-1wl4cqr, .framer-yaHPx .framer-pn5wly, .framer-yaHPx .framer-14455x5 { gap: 64px; } .framer-yaHPx .framer-1tqla3z, .framer-yaHPx .framer-1g0bg6h, .framer-yaHPx .framer-52luyq, .framer-yaHPx .framer-1wwnwyi { height: min-content; position: relative; top: unset; } .framer-yaHPx .framer-9ohj5c-container, .framer-yaHPx .framer-1idbd3h-container, .framer-yaHPx .framer-ue84zt-container, .framer-yaHPx .framer-nvfggf-container { height: auto; } .framer-yaHPx .framer-1rcbexs, .framer-yaHPx .framer-a382s { padding: 80px 24px 80px 24px; } .framer-yaHPx .framer-1qrxcbe { flex-direction: column; } .framer-yaHPx .framer-dhi2j5-container, .framer-yaHPx .framer-yimhyk-container, .framer-yaHPx .framer-n56mal-container, .framer-yaHPx .framer-1jdn7cg-container, .framer-yaHPx .framer-1trxqx0-container { flex: none; width: 100%; } .framer-yaHPx .framer-1x9fy0h { padding: 80px 0px 80px 0px; } .framer-yaHPx .framer-1rp6ueg, .framer-yaHPx .framer-7rzybq { padding: 0px 24px 0px 24px; } .framer-yaHPx .framer-1rkb8co { flex-direction: column; gap: 64px; } .framer-yaHPx .framer-xd4rb9 { left: unset; right: 0px; top: -155px; } .framer-yaHPx .framer-pmrm4a { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-yaHPx .framer-1x9n052 { padding: 100px 24px 100px 24px; } .framer-yaHPx .framer-15sovfc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; justify-content: flex-start; padding: 0px; } .framer-yaHPx .framer-1vv72zp-container { align-self: unset; height: auto; } .framer-yaHPx .framer-e5txks-container, .framer-yaHPx .framer-4mf2n1-container { align-self: unset; } .framer-yaHPx .framer-10p10jq { align-content: center; align-items: center; flex-direction: column; padding: 80px 0px 80px 0px; } .framer-yaHPx .framer-1l4nj2i { align-content: center; align-items: center; flex: none; position: relative; top: unset; width: 100%; } .framer-yaHPx .framer-1hkyb0x { align-content: center; align-items: center; order: 0; } .framer-yaHPx .framer-1lkeb91 { height: 200px; min-height: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11042.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LYQUSceZG\":{\"layout\":[\"fixed\",\"auto\"]},\"DHS_5xtfb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"SAcid8SB7\":{\"pattern\":\":SAcid8SB7\",\"name\":\"banner\"},\"cxd8oMBHa\":{\"pattern\":\":cxd8oMBHa\",\"name\":\"our-work\"},\"bzTXWt2Uk\":{\"pattern\":\":bzTXWt2Uk\",\"name\":\"sticky-container-1\"},\"SW2EJl4ld\":{\"pattern\":\":SW2EJl4ld\",\"name\":\"sticky-container-2\"},\"IoC4zWlMZ\":{\"pattern\":\":IoC4zWlMZ\",\"name\":\"sticky-container-3\"},\"ndm1tPhLo\":{\"pattern\":\":ndm1tPhLo\",\"name\":\"sticky-container-2\"},\"Deh3s8n4N\":{\"pattern\":\":Deh3s8n4N\",\"name\":\"services\"},\"L_hwxLEd3\":{\"pattern\":\":L_hwxLEd3\",\"name\":\"s4\"},\"WldJGjoS_\":{\"pattern\":\":WldJGjoS_\",\"name\":\"show-testimonial-text\"},\"wwUKNNCbI\":{\"pattern\":\":wwUKNNCbI\",\"name\":\"image-change-position\"},\"Nd5scE2gW\":{\"pattern\":\":Nd5scE2gW\",\"name\":\"position-transform\"},\"qMykfbRc6\":{\"pattern\":\":qMykfbRc6\",\"name\":\"show-title-s4\"},\"eTMONGDNq\":{\"pattern\":\":eTMONGDNq\",\"name\":\"faqs\"},\"np8fFLmoz\":{\"pattern\":\":np8fFLmoz\",\"name\":\"image-1\"},\"vgnIGNvrv\":{\"pattern\":\":vgnIGNvrv\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-yaHPx\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11042.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"}]},...SmoothScrollFonts,...PulseFonts,...ButtonFonts,...PhosphorFonts,...PromotionBannerFonts,...SlideshowFonts,...CaseStudyCardFonts,...BlogCard2Fonts,...ServicesFonts,...CustomerCardFonts,...LogoFonts,...StatsFonts,...FAQsFonts,...ContactFormFonts,...HeaderFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LYQUSceZG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DHS_5xtfb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"11042.5\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"SAcid8SB7\\\":{\\\"pattern\\\":\\\":SAcid8SB7\\\",\\\"name\\\":\\\"banner\\\"},\\\"cxd8oMBHa\\\":{\\\"pattern\\\":\\\":cxd8oMBHa\\\",\\\"name\\\":\\\"our-work\\\"},\\\"bzTXWt2Uk\\\":{\\\"pattern\\\":\\\":bzTXWt2Uk\\\",\\\"name\\\":\\\"sticky-container-1\\\"},\\\"SW2EJl4ld\\\":{\\\"pattern\\\":\\\":SW2EJl4ld\\\",\\\"name\\\":\\\"sticky-container-2\\\"},\\\"IoC4zWlMZ\\\":{\\\"pattern\\\":\\\":IoC4zWlMZ\\\",\\\"name\\\":\\\"sticky-container-3\\\"},\\\"ndm1tPhLo\\\":{\\\"pattern\\\":\\\":ndm1tPhLo\\\",\\\"name\\\":\\\"sticky-container-2\\\"},\\\"Deh3s8n4N\\\":{\\\"pattern\\\":\\\":Deh3s8n4N\\\",\\\"name\\\":\\\"services\\\"},\\\"L_hwxLEd3\\\":{\\\"pattern\\\":\\\":L_hwxLEd3\\\",\\\"name\\\":\\\"s4\\\"},\\\"WldJGjoS_\\\":{\\\"pattern\\\":\\\":WldJGjoS_\\\",\\\"name\\\":\\\"show-testimonial-text\\\"},\\\"wwUKNNCbI\\\":{\\\"pattern\\\":\\\":wwUKNNCbI\\\",\\\"name\\\":\\\"image-change-position\\\"},\\\"Nd5scE2gW\\\":{\\\"pattern\\\":\\\":Nd5scE2gW\\\",\\\"name\\\":\\\"position-transform\\\"},\\\"qMykfbRc6\\\":{\\\"pattern\\\":\\\":qMykfbRc6\\\",\\\"name\\\":\\\"show-title-s4\\\"},\\\"eTMONGDNq\\\":{\\\"pattern\\\":\\\":eTMONGDNq\\\",\\\"name\\\":\\\"faqs\\\"},\\\"np8fFLmoz\\\":{\\\"pattern\\\":\\\":np8fFLmoz\\\",\\\"name\\\":\\\"image-1\\\"},\\\"vgnIGNvrv\\\":{\\\"pattern\\\":\\\":vgnIGNvrv\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Pulse", "props", "onAnimationComplete", "animateOut", "p", "motion", "PulseEffect", "pulses", "setPulses", "ye", "ue", "createPulse", "newPulseKey", "prevPulses", "interval", "handleAnimationComplete", "completedPulseKey", "key", "u", "addPropertyControls", "ControlType", "clamp", "e", "i", "Animate", "t", "s", "o", "n", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "r", "SmoothScrollComponent", "props", "intensity", "lenis", "pe", "ue", "error", "checkForStopScroll", "stopScrollElement", "htmlElement", "hasHiddenOverflow", "stopScrollObserver", "htmlStyleObserver", "allElements", "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", "noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "AnimatedNumberCounter", "props", "mode", "start", "end", "value", "decimals", "commas", "color", "animation", "isCanvas", "RenderTarget", "Tag", "MotionTag", "motion", "isDefault", "initialValue", "transition", "formatNumber", "number", "numberString", "setNumber", "ye", "finalValue", "setFinalValue", "currentAnimation", "setCurrentAnimation", "ref", "pe", "isInView", "useInView", "motionValue", "useMotionValue", "runAnimation", "from", "to", "animate", "latest", "ue", "u", "l", "addPropertyControls", "ControlType", "AnimatedNumberCounterFonts", "getFonts", "AnimatedNumberCounter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bodyText", "end", "height", "id", "start", "suffix", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Eymyq0ud7", "cR_MXQpEk", "ODtuWUt7w", "mFwQsRO7Q", "bfksRWO1v", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerBo19ROU9F", "withCSS", "Bo19ROU9F_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Component", "House_default", "React", "weights", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fbMdJnqyQ", "Q0WMNUDZo", "Vbz66tjr6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapkhpjtk", "args", "onTappp2tny", "onTap1f71a9p", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameryIMQUT0Rk", "withCSS", "yIMQUT0Rk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "ServicesRowFonts", "getFonts", "yIMQUT0Rk_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "Q0WMNUDZo1lskwr5", "args", "Q0WMNUDZo55kk1r", "Q0WMNUDZoo1s67s", "Q0WMNUDZowdkp4k", "Q0WMNUDZoq61ghr", "Q0WMNUDZopch84z", "Q0WMNUDZojc9v32", "Q0WMNUDZo1nie6mt", "Q0WMNUDZo1ml4gz6", "Q0WMNUDZo1d6577n", "Q0WMNUDZo1p0vpxg", "Q0WMNUDZo5z2fed", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCqhQrNMB3", "withCSS", "CqhQrNMB3_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "name1", "position", "saying", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Sb4jvTzV5", "fKpaFwkFj", "xJtGR5kRe", "pEYgzKLdE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerEwpMNoGuG", "withCSS", "EwpMNoGuG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonFonts", "getFonts", "FSvvPvD8G_default", "PhosphorFonts", "Icon", "ButtonControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "buttonStyle", "generalDesc", "height", "id", "image", "link", "price", "size", "specialDeal", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "TrRAvJJ6K", "GrN3y4cXI", "JrVL4ioRc", "US_Yli3dH", "PAVb50RED", "YmGc0WsxC", "PHyebwO_4", "cmnxRcUO2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "visible", "isDisplayed2", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "ResolveLinks", "resolvedLinks", "css", "FramerJbao3h2M8", "withCSS", "Jbao3h2M8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "MotionAWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerpbWDwBUaf", "withCSS", "pbWDwBUaf_default", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fbMdJnqyQ", "Q0WMNUDZo", "AGXgjlkUg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfve7xc", "args", "onTappp2tny", "onTapyioikh", "onTap1bp9ojb", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerXOSkZc1rZ", "withCSS", "XOSkZc1rZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQsRowFonts", "getFonts", "XOSkZc1rZ_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Q0WMNUDZo1hs7f9c", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "XOSkZc1rZ_default", "css", "FramerSofTjBAi7", "withCSS", "SofTjBAi7_default", "addFonts", "FAQsRowFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FrameryAcpE9ch2", "withCSS", "yAcpE9ch2_default", "addFonts", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "PulseFonts", "PulseEffect", "ButtonFonts", "FSvvPvD8G_default", "PhosphorFonts", "Icon", "PromotionBannerFonts", "pbWDwBUaf_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SlideshowFonts", "Slideshow", "MotionAWithOptimizedAppearEffect", "MotionDivWithFX", "withFX", "CaseStudyCardFonts", "Jbao3h2M8_default", "ContainerWithFX", "Container", "RichTextWithFX", "RichText2", "BlogCard2Fonts", "aC76Cj1G_default", "ServicesFonts", "CqhQrNMB3_default", "CustomerCardFonts", "EwpMNoGuG_default", "CustomerCardWithVariantAppearEffect", "withVariantAppearEffect", "LogoFonts", "yAcpE9ch2_default", "StatsFonts", "Bo19ROU9F_default", "FAQsFonts", "SofTjBAi7_default", "ImageWithFX", "Image2", "ContactFormFonts", "MAfDvkc4_default", "HeaderFonts", "o7P7y4Z3G_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "addImageAlt", "image", "alt", "transition5", "transition6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "transition7", "animation6", "animation7", "transition8", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "sH6d2d7NHaYNQ6rN7c", "bwrSQEQwaaYNQ6rN7c", "I3UWimPTJaYNQ6rN7c", "idaYNQ6rN7c", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed3", "elementId6", "ref7", "elementId7", "ref8", "ref9", "ref10", "elementId8", "elementId9", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "ref14", "elementId13", "elementId14", "ref15", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "x", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "Link", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "ChildrenCanSuspend", "rATNFfadU_default", "collection", "l", "index", "PathVariablesContext", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
