{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/AqNus2rhazDXjR7SRzPY/JUOgOHbbE8jdHFKXLa8u/i08yZ8or5.js", "ssg:https://framerusercontent.com/modules/4XEcjfuoEt1ZpujD2swM/yZ4KeucsE3CnDgalsJw1/Flh61scvr.js", "ssg:https://framerusercontent.com/modules/osVkYpwJrxVfxbOYolQl/ThTDodI5AvBDgVd7pcT5/HQuW57l9U.js", "ssg:https://framerusercontent.com/modules/JLRa6mwgL3hboUp4R0Tn/jvVbYDXM8AEBCQ7AtmZk/po3l5NXyw.js", "ssg:https://framerusercontent.com/modules/P1KKbXyLsfP7WQkTZKm6/Hy28Gf2Qmyid2F2s6wbf/MD7wvy7Lb.js", "ssg:https://framerusercontent.com/modules/rXpnrSRcuRGO0Xh5s6a2/ovT2mjwqbzBltXWLJk8Q/eRmnJYuUJ.js", "ssg:https://framerusercontent.com/modules/sBi9jPA7IL7bvxfu4tep/KTAHCQtgECMmqh42EdGL/wtlqhoXid.js", "ssg:https://framerusercontent.com/modules/dldN8iEBuMg7RgVSdIZp/4G5rVXUhQzUSlOqZwFQN/augiA20Il.js"],
  "sourcesContent": ["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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (1cc6588)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xnFVsbORy10RJ1Or6esZ/DwXFqaSv3Muhq60e2Xyy/fPOP5nFOT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nfwgEhkTQUhConE2Bfnm/OwI6xE3XLcWIwgAWUNLh/lA8nktNlQ.js\";const cycleOrder=[\"PtXY6ukjx\"];const serializationHash=\"framer-BgHAG\";const variantClassNames={PtXY6ukjx:\"framer-v-1x7cj7b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,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 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 getProps=({description,height,id,image,title,width,...props})=>{return{...props,bqPcQz8Hy:image??props.bqPcQz8Hy,hlDZK6G8V:title??props.hlDZK6G8V??\"This is Value\",zyFfRzj1N:description??props.zyFfRzj1N??\"We strive for excellence in everything we do, from delivering strategic insights to fostering strong client relationships.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,hlDZK6G8V,bqPcQz8Hy,zyFfRzj1N,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"PtXY6ukjx\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-BgHAG\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1x7cj7b\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PtXY6ukjx\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:505,intrinsicWidth:380,pixelHeight:505,pixelWidth:380,sizes:\"min(380px, 100vw)\",...toResponsiveImage(bqPcQz8Hy)},className:\"framer-147e05y\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PjDxZ5ra0\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kk0wbx\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"ui27N9eEf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-13c8vny\",\"data-styles-preset\":\"lA8nktNlQ\",children:\"Excellence.\"})}),className:\"framer-mt7ymg\",layoutDependency:layoutDependency,layoutId:\"GJsJQSVlq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:hlDZK6G8V,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1r56bhr\",\"data-styles-preset\":\"fPOP5nFOT\",children:\"We strive for excellence in everything we do, from delivering strategic insights to fostering strong client relationships.\"})}),className:\"framer-e36m7g\",layoutDependency:layoutDependency,layoutId:\"YPjbJ8pEZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zyFfRzj1N,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=['.framer-BgHAG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BgHAG .framer-17xoyjj { display: block; }\",\".framer-BgHAG .framer-1x7cj7b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 380px; }\",\".framer-BgHAG .framer-147e05y { aspect-ratio: 0.7524752475247525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 266px); overflow: visible; position: relative; width: 100%; }\",\".framer-BgHAG .framer-1kk0wbx { 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: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BgHAG .framer-mt7ymg, .framer-BgHAG .framer-e36m7g { 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-BgHAG .framer-1x7cj7b, .framer-BgHAG .framer-1kk0wbx { gap: 0px; } .framer-BgHAG .framer-1x7cj7b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BgHAG .framer-1x7cj7b > :first-child, .framer-BgHAG .framer-1kk0wbx > :first-child { margin-top: 0px; } .framer-BgHAG .framer-1x7cj7b > :last-child, .framer-BgHAG .framer-1kk0wbx > :last-child { margin-bottom: 0px; } .framer-BgHAG .framer-1kk0wbx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 630\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hlDZK6G8V\":\"title\",\"bqPcQz8Hy\":\"image\",\"zyFfRzj1N\":\"description\"}\n * @framerImmutableVariables true\n */const Frameri08yZ8or5=withCSS(Component,css,\"framer-BgHAG\");export default Frameri08yZ8or5;Frameri08yZ8or5.displayName=\"Value Card\";Frameri08yZ8or5.defaultProps={height:630,width:380};addPropertyControls(Frameri08yZ8or5,{hlDZK6G8V:{defaultValue:\"This is Value\",displayTextArea:false,title:\"Title\",type:ControlType.String},bqPcQz8Hy:{title:\"Image\",type:ControlType.ResponsiveImage},zyFfRzj1N:{defaultValue:\"We strive for excellence in everything we do, from delivering strategic insights to fostering strong client relationships.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(Frameri08yZ8or5,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri08yZ8or5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"380\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"630\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"hlDZK6G8V\\\":\\\"title\\\",\\\"bqPcQz8Hy\\\":\\\"image\\\",\\\"zyFfRzj1N\\\":\\\"description\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import ValueCard from\"https://framerusercontent.com/modules/AqNus2rhazDXjR7SRzPY/JUOgOHbbE8jdHFKXLa8u/i08yZ8or5.js\";const ValueCardFonts=getFonts(ValueCard);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"A8CoUf7iH\",\"qjO_4oj9v\",\"i_FN8_96c\"];const serializationHash=\"framer-hVLrk\";const variantClassNames={A8CoUf7iH:\"framer-v-83jm4r\",i_FN8_96c:\"framer-v-pqgb22\",qjO_4oj9v:\"framer-v-q50int\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"A8CoUf7iH\",Phone:\"i_FN8_96c\",Tablet:\"qjO_4oj9v\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"A8CoUf7iH\"};};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:\"A8CoUf7iH\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-83jm4r\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"A8CoUf7iH\",ref:refBinding,style:{...style},...addPropertyOverrides({i_FN8_96c:{\"data-framer-name\":\"Phone\"},qjO_4oj9v:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nvo259-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DnUDi6YP8-container\",nodeId:\"DnUDi6YP8\",rendersWithMotion:true,scopeId:\"Flh61scvr\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:30,height:\"100%\",id:\"DnUDi6YP8\",layoutId:\"DnUDi6YP8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:1,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-134zfj1-container\",\"data-framer-name\":\"Value 01\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P5e2CTzW1-container\",name:\"Value 01\",nodeId:\"P5e2CTzW1\",rendersWithMotion:true,scopeId:\"Flh61scvr\",children:/*#__PURE__*/_jsx(ValueCard,{bqPcQz8Hy:addImageAlt({pixelHeight:1858,pixelWidth:1566,src:\"https://framerusercontent.com/images/ExP2ymkB88OyTEGeDUSTzNJoJ4.png\",srcSet:\"https://framerusercontent.com/images/ExP2ymkB88OyTEGeDUSTzNJoJ4.png?scale-down-to=1024 863w,https://framerusercontent.com/images/ExP2ymkB88OyTEGeDUSTzNJoJ4.png 1566w\"},\"\"),height:\"100%\",hlDZK6G8V:\"\u30B0\u30ED\u30FC\u30D0\u30EB\u306A\u8996\u70B9\",id:\"P5e2CTzW1\",layoutId:\"P5e2CTzW1\",name:\"Value 01\",style:{width:\"100%\"},width:\"100%\",zyFfRzj1N:\"\u5E38\u306B\u4E16\u754C\u306E\u52D5\u304D\u3092\u6349\u3048\u3001\u6B21\u306E\u4E00\u624B\u3092\u8003\u3048\u308B\u3002 \u56FD\u5916\u5E02\u5834\u306E\u30C8\u30EC\u30F3\u30C9\u3084\u7523\u696D\u69CB\u9020\u306E\u5909\u5316\u306B\u654F\u611F\u3067\u3042\u308A\u3001 \u6700\u65B0\u306E\u30B0\u30ED\u30FC\u30D0\u30EB\u52D5\u5411\u3092\u4F01\u696D\u6226\u7565\u3084\u30C7\u30B6\u30A4\u30F3\u3001AI\u6D3B\u7528\u306B\u53D6\u308A\u5165\u308C\u308B\u3053\u3068\u3067\u3001 \u672A\u6765\u5FD7\u5411\u306E\u63D0\u6848\u529B\u3092\u767A\u63EE\u3057\u307E\u3059\u3002\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qeglrd-container\",\"data-framer-name\":\"Value 02\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"U3izvN7EE-container\",name:\"Value 02\",nodeId:\"U3izvN7EE\",rendersWithMotion:true,scopeId:\"Flh61scvr\",children:/*#__PURE__*/_jsx(ValueCard,{bqPcQz8Hy:addImageAlt({pixelHeight:1182,pixelWidth:1540,src:\"https://framerusercontent.com/images/5JkslyqxT6gjztbSSGbhWxgMI.png\",srcSet:\"https://framerusercontent.com/images/5JkslyqxT6gjztbSSGbhWxgMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JkslyqxT6gjztbSSGbhWxgMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5JkslyqxT6gjztbSSGbhWxgMI.png 1540w\"},\"\"),height:\"100%\",hlDZK6G8V:\"\u30C7\u30B6\u30A4\u30F3\u601D\u8003\",id:\"U3izvN7EE\",layoutId:\"U3izvN7EE\",name:\"Value 02\",style:{width:\"100%\"},width:\"100%\",zyFfRzj1N:\"\u4EBA\u3092\u4E2D\u5FC3\u306B\u636E\u3048\u305F\u4FA1\u5024\u5275\u9020\u3002 \u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3084\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u306E\u9769\u65B0\u3060\u3051\u3067\u306A\u304F\u3001 \u30E6\u30FC\u30B6\u30FC\u4F53\u9A13\u30FB\u30D6\u30E9\u30F3\u30C9\u4F53\u9A13\u3092\u91CD\u8996\u3057\u305F\u30C7\u30B6\u30A4\u30F3\u601D\u8003\u3092\u3059\u3079\u3066\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306B\u7D44\u307F\u8FBC\u307F\u3001 \u4F01\u696D\u306E\u672C\u8CEA\u7684\u306A\u9B45\u529B\u3068\u4FA1\u5024\u3092\u5F62\u306B\u3057\u307E\u3059\u3002\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a43bem-container\",\"data-framer-name\":\"Value 03\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GPfn_knYH-container\",name:\"Value 03\",nodeId:\"GPfn_knYH\",rendersWithMotion:true,scopeId:\"Flh61scvr\",children:/*#__PURE__*/_jsx(ValueCard,{bqPcQz8Hy:addImageAlt({pixelHeight:1807,pixelWidth:2104,src:\"https://framerusercontent.com/images/W5fJinpWhjEs6u1WMePbjayC0.png\",srcSet:\"https://framerusercontent.com/images/W5fJinpWhjEs6u1WMePbjayC0.png?scale-down-to=512 512w,https://framerusercontent.com/images/W5fJinpWhjEs6u1WMePbjayC0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5fJinpWhjEs6u1WMePbjayC0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/W5fJinpWhjEs6u1WMePbjayC0.png 2104w\"},\"\"),height:\"100%\",hlDZK6G8V:\"\u5B9F\u8DF5\u77E5\u3068\u30B9\u30D4\u30FC\u30C9\",id:\"GPfn_knYH\",layoutId:\"GPfn_knYH\",name:\"Value 03\",style:{width:\"100%\"},width:\"100%\",zyFfRzj1N:\"\u673A\u4E0A\u306E\u7406\u8AD6\u3067\u306F\u306A\u304F\u3001\u73FE\u5834\u3067\u4F7F\u3048\u308B\u77E5\u6075\u3068\u30B9\u30D4\u30FC\u30C9\u3002 \u8C4A\u5BCC\u306A\u5B9F\u52D9\u7D4C\u9A13\u3068\u5B9F\u7E3E\u304B\u3089\u5F97\u305F\u5B9F\u8DF5\u77E5\u3092\u6D3B\u304B\u3057\u3001 \u8907\u96D1\u306A\u8AB2\u984C\u306B\u3082\u67D4\u8EDF\u304B\u3064\u8FC5\u901F\u306B\u5BFE\u5FDC\u3002 \u5909\u5316\u306E\u6FC0\u3057\u3044\u6642\u4EE3\u306B\u5373\u5FDC\u3067\u304D\u308B\u30D1\u30FC\u30C8\u30CA\u30FC\u3068\u3057\u3066\u4F01\u696D\u3092\u652F\u63F4\u3057\u307E\u3059\u3002\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i28bcr-container\",\"data-framer-name\":\"Value 04\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"J8_f1GA8I-container\",name:\"Value 04\",nodeId:\"J8_f1GA8I\",rendersWithMotion:true,scopeId:\"Flh61scvr\",children:/*#__PURE__*/_jsx(ValueCard,{bqPcQz8Hy:addImageAlt({pixelHeight:1290,pixelWidth:1940,src:\"https://framerusercontent.com/images/o9e0dTyv337iulsskh9kB7mZMP0.png\",srcSet:\"https://framerusercontent.com/images/o9e0dTyv337iulsskh9kB7mZMP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9e0dTyv337iulsskh9kB7mZMP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9e0dTyv337iulsskh9kB7mZMP0.png 1940w\"},\"\"),height:\"100%\",hlDZK6G8V:\"\u67D4\u8EDF\u306A\u5171\u5275\u59FF\u52E2\",id:\"J8_f1GA8I\",layoutId:\"J8_f1GA8I\",name:\"Value 04\",style:{width:\"100%\"},width:\"100%\",zyFfRzj1N:\"\u5171\u306B\u8003\u3048\u3001\u5171\u306B\u5275\u308B\u30D1\u30FC\u30C8\u30CA\u30FC\u30B7\u30C3\u30D7\u3002 CORISE\u306F\u5358\u306A\u308B\u30D9\u30F3\u30C0\u30FC\u3067\u306F\u306A\u304F\u3001\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u3068\u5BFE\u7B49\u306A\u5171\u5275\u30D1\u30FC\u30C8\u30CA\u30FC\u3068\u3057\u3066\u95A2\u308F\u308A\u307E\u3059\u3002 \u4E8B\u696D\u76EE\u6A19\u3084\u4FA1\u5024\u89B3\u3092\u6DF1\u304F\u7406\u89E3\u3057\u3001\u67D4\u8EDF\u306A\u30A2\u30D7\u30ED\u30FC\u30C1\u3067\u5171\u306B\u6210\u679C\u3092\u5F62\u306B\u3057\u3066\u3044\u304D\u307E\u3059\u3002\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"end\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({i_FN8_96c:{gap:20,sizingObject:{heightInset:1,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}},qjO_4oj9v:{sizingObject:{heightInset:1,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hVLrk.framer-vyhcd2, .framer-hVLrk .framer-vyhcd2 { display: block; }\",\".framer-hVLrk.framer-83jm4r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-hVLrk .framer-1nvo259-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hVLrk .framer-134zfj1-container, .framer-hVLrk .framer-1qeglrd-container, .framer-hVLrk .framer-1a43bem-container, .framer-hVLrk .framer-i28bcr-container { height: auto; position: relative; width: 380px; }\",\".framer-hVLrk.framer-v-q50int.framer-83jm4r { width: 810px; }\",\".framer-hVLrk.framer-v-pqgb22.framer-83jm4r { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 645\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qjO_4oj9v\":{\"layout\":[\"fixed\",\"auto\"]},\"i_FN8_96c\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFlh61scvr=withCSS(Component,css,\"framer-hVLrk\");export default FramerFlh61scvr;FramerFlh61scvr.displayName=\"Value List\";FramerFlh61scvr.defaultProps={height:645,width:1200};addPropertyControls(FramerFlh61scvr,{variant:{options:[\"A8CoUf7iH\",\"qjO_4oj9v\",\"i_FN8_96c\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFlh61scvr,[{explicitInter:true,fonts:[]},...ValueCardFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFlh61scvr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"645\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qjO_4oj9v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i_FN8_96c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"VJ35PsGYA\",\"o4rzOWXxM\",\"gISXRi0B6\",\"HyZYGaX4M\"];const serializationHash=\"framer-tYv8J\";const variantClassNames={gISXRi0B6:\"framer-v-171nrr\",HyZYGaX4M:\"framer-v-1fsbr9v\",o4rzOWXxM:\"framer-v-56v0et\",VJ35PsGYA:\"framer-v-325apb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Default/Close\":\"o4rzOWXxM\",\"Default/Open\":\"VJ35PsGYA\",\"Mobile/Close\":\"HyZYGaX4M\",\"Mobile/Open\":\"gISXRi0B6\"};const getProps=({description,height,id,number,serviceTitle,tap,width,...props})=>{return{...props,cpz1nSh5H:number??props.cpz1nSh5H??\"00\",JNxREdFTV:tap??props.JNxREdFTV,mOQ1g4GPC:description??props.mOQ1g4GPC??\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",q8WLrFaEO:serviceTitle??props.q8WLrFaEO??\"This is title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VJ35PsGYA\"};};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,cpz1nSh5H,q8WLrFaEO,mOQ1g4GPC,JNxREdFTV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VJ35PsGYA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapw86u1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JNxREdFTV){const res=await JNxREdFTV(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"o4rzOWXxM\",\"HyZYGaX4M\"].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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-325apb\",className,classNames),\"data-framer-name\":\"Default/Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VJ35PsGYA\",onTap:onTapw86u1,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-c28a4919-a923-4b06-a37f-6412df3a47f4, rgb(247, 247, 247))\",...style},variants:{gISXRi0B6:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},HyZYGaX4M:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2ffd52ff-00ba-42d3-86d8-14ef7bd3aecb, rgba(13, 23, 32, 0.2))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},o4rzOWXxM:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2ffd52ff-00ba-42d3-86d8-14ef7bd3aecb, rgba(13, 23, 32, 0.2))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({gISXRi0B6:{\"data-framer-name\":\"Mobile/Open\"},HyZYGaX4M:{\"data-border\":true,\"data-framer-name\":\"Mobile/Close\"},o4rzOWXxM:{\"data-border\":true,\"data-framer-name\":\"Default/Close\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xqjhnm\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"cpnosNvzv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f872ib\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"zDQ9F9_zj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"00\"})}),className:\"framer-12wh8d8\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"fXxmkrJY8\",style:{\"--extracted-1lwpl3i\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:cpz1nSh5H,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"This is title\"})}),className:\"framer-7rjidi\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"Evj7PhH1D\",style:{\"--extracted-a0htzi\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:q8WLrFaEO,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\"})}),className:\"framer-f45dkx\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"xC12yUoaS\",style:{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mOQ1g4GPC,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w48s76\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"rcQ6SlNGV\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i8l8zj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aqjkElYad-container\",nodeId:\"aqjkElYad\",rendersWithMotion:true,scopeId:\"HQuW57l9U\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"aqjkElYad\",layoutId:\"aqjkElYad\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tYv8J.framer-l2gknd, .framer-tYv8J .framer-l2gknd { display: block; }\",\".framer-tYv8J.framer-325apb { 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: center; overflow: hidden; padding: 20px; position: relative; width: 1200px; }\",\".framer-tYv8J .framer-xqjhnm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tYv8J .framer-1f872ib { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tYv8J .framer-12wh8d8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tYv8J .framer-7rjidi { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tYv8J .framer-f45dkx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tYv8J .framer-1w48s76 { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tYv8J .framer-i8l8zj-container { flex: none; height: 75px; position: relative; width: 75px; }\",\".framer-tYv8J.framer-v-171nrr.framer-325apb, .framer-tYv8J.framer-v-1fsbr9v.framer-325apb { width: 390px; }\",\".framer-tYv8J.framer-v-171nrr .framer-1f872ib, .framer-tYv8J.framer-v-1fsbr9v .framer-1f872ib { flex-direction: column; }\",\".framer-tYv8J.framer-v-171nrr .framer-7rjidi, .framer-tYv8J.framer-v-1fsbr9v .framer-7rjidi { flex: none; width: 100%; }\",\".framer-tYv8J.framer-v-171nrr .framer-i8l8zj-container { height: 40px; width: 40px; }\",'.framer-tYv8J[data-border=\"true\"]::after, .framer-tYv8J [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 135\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"o4rzOWXxM\":{\"layout\":[\"fixed\",\"auto\"]},\"gISXRi0B6\":{\"layout\":[\"fixed\",\"auto\"]},\"HyZYGaX4M\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cpz1nSh5H\":\"number\",\"q8WLrFaEO\":\"serviceTitle\",\"mOQ1g4GPC\":\"description\",\"JNxREdFTV\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHQuW57l9U=withCSS(Component,css,\"framer-tYv8J\");export default FramerHQuW57l9U;FramerHQuW57l9U.displayName=\"Service Card/02\";FramerHQuW57l9U.defaultProps={height:135,width:1200};addPropertyControls(FramerHQuW57l9U,{variant:{options:[\"VJ35PsGYA\",\"o4rzOWXxM\",\"gISXRi0B6\",\"HyZYGaX4M\"],optionTitles:[\"Default/Open\",\"Default/Close\",\"Mobile/Open\",\"Mobile/Close\"],title:\"Variant\",type:ControlType.Enum},cpz1nSh5H:{defaultValue:\"00\",displayTextArea:false,title:\"Number\",type:ControlType.String},q8WLrFaEO:{defaultValue:\"This is title\",displayTextArea:false,title:\"Service Title\",type:ControlType.String},mOQ1g4GPC:{defaultValue:\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",displayTextArea:false,title:\"Description\",type:ControlType.String},JNxREdFTV:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerHQuW57l9U,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHQuW57l9U\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"135\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"cpz1nSh5H\\\":\\\"number\\\",\\\"q8WLrFaEO\\\":\\\"serviceTitle\\\",\\\"mOQ1g4GPC\\\":\\\"description\\\",\\\"JNxREdFTV\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o4rzOWXxM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gISXRi0B6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HyZYGaX4M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HQuW57l9U.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={qIZ3GScSU:{hover:true,pressed:true},UwVtqUjIR:{hover:true,pressed:true},vtBrJD_dV:{hover:true,pressed:true},yCeNqW9XE:{hover:true,pressed:true}};const cycleOrder=[\"vtBrJD_dV\",\"yCeNqW9XE\",\"UwVtqUjIR\",\"qIZ3GScSU\"];const serializationHash=\"framer-cnmCJ\";const variantClassNames={qIZ3GScSU:\"framer-v-vmwvzz\",UwVtqUjIR:\"framer-v-ow1fnb\",vtBrJD_dV:\"framer-v-fy0gpp\",yCeNqW9XE:\"framer-v-q8cxp8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:200,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={\"Primary Dark\":\"vtBrJD_dV\",\"Primary White\":\"yCeNqW9XE\",\"Secondary Dark\":\"UwVtqUjIR\",\"Secondary White\":\"qIZ3GScSU\"};const getProps=({buttonText,height,id,link,width,...props})=>{return{...props,EUsAmKGDr:buttonText??props.EUsAmKGDr??\"Button\",kM7KukffH:link??props.kM7KukffH,variant:humanReadableVariantMap[props.variant]??props.variant??\"vtBrJD_dV\"};};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,EUsAmKGDr,kM7KukffH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vtBrJD_dV\",enabledGestures,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__*/_jsx(Link,{href:kM7KukffH,motionChild:true,nodeId:\"vtBrJD_dV\",scopeId:\"po3l5NXyw\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-fy0gpp\",className,classNames)} framer-14hhlkz`,\"data-framer-name\":\"Primary Dark\",layoutDependency:layoutDependency,layoutId:\"vtBrJD_dV\",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-6d4473a2-f5b1-4fa6-912a-8cde67629c48, rgb(28, 42, 57))\",...style},variants:{\"vtBrJD_dV-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"vtBrJD_dV-pressed\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"yCeNqW9XE-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6d4473a2-f5b1-4fa6-912a-8cde67629c48, rgb(28, 42, 57))\"},\"yCeNqW9XE-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},qIZ3GScSU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},UwVtqUjIR:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},yCeNqW9XE:{backgroundColor:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"}},...addPropertyOverrides({\"qIZ3GScSU-hover\":{\"data-framer-name\":undefined},\"qIZ3GScSU-pressed\":{\"data-framer-name\":undefined},\"UwVtqUjIR-hover\":{\"data-framer-name\":undefined},\"UwVtqUjIR-pressed\":{\"data-framer-name\":undefined},\"vtBrJD_dV-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"vtBrJD_dV-pressed\":{\"data-border\":true,\"data-framer-name\":undefined},\"yCeNqW9XE-hover\":{\"data-framer-name\":undefined},\"yCeNqW9XE-pressed\":{\"data-framer-name\":undefined},qIZ3GScSU:{\"data-border\":true,\"data-framer-name\":\"Secondary White\"},UwVtqUjIR:{\"data-border\":true,\"data-framer-name\":\"Secondary Dark\"},yCeNqW9XE:{\"data-framer-name\":\"Primary White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jb0rxg\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"cbLuukYyj\",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-3d4c1582-1b78-450e-9e32-de19ed4c85b2, rgba(254, 254, 254, 0))\"},variants:{\"qIZ3GScSU-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"qIZ3GScSU-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"UwVtqUjIR-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6d4473a2-f5b1-4fa6-912a-8cde67629c48, rgb(28, 42, 57))\"},\"UwVtqUjIR-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6d4473a2-f5b1-4fa6-912a-8cde67629c48, rgb(28, 42, 57))\"},\"vtBrJD_dV-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"vtBrJD_dV-pressed\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"yCeNqW9XE-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6d4473a2-f5b1-4fa6-912a-8cde67629c48, rgb(28, 42, 57))\"},\"yCeNqW9XE-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-6d4473a2-f5b1-4fa6-912a-8cde67629c48, rgb(28, 42, 57))\"}},...addPropertyOverrides({\"vtBrJD_dV-hover\":{\"data-border\":true},\"vtBrJD_dV-pressed\":{\"data-border\":true}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fi43z3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"MMuGPampm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254)))\"},children:\"Get in Touch\"})}),className:\"framer-1eiylir\",fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"VGerWLoLM\",style:{\"--extracted-r6o4lv\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:EUsAmKGDr,variants:{\"qIZ3GScSU-hover\":{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},\"qIZ3GScSU-pressed\":{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},\"UwVtqUjIR-hover\":{\"--extracted-r6o4lv\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"UwVtqUjIR-pressed\":{\"--extracted-r6o4lv\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"vtBrJD_dV-hover\":{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},\"vtBrJD_dV-pressed\":{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},\"yCeNqW9XE-hover\":{\"--extracted-r6o4lv\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},\"yCeNqW9XE-pressed\":{\"--extracted-r6o4lv\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},UwVtqUjIR:{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},yCeNqW9XE:{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"qIZ3GScSU-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Get in Touch\"})})},\"qIZ3GScSU-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Get in Touch\"})})},\"UwVtqUjIR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254)))\"},children:\"Get in Touch\"})})},\"UwVtqUjIR-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254)))\"},children:\"Get in Touch\"})})},\"vtBrJD_dV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Get in Touch\"})})},\"vtBrJD_dV-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Get in Touch\"})})},\"yCeNqW9XE-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254)))\"},children:\"Get in Touch\"})})},\"yCeNqW9XE-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254)))\"},children:\"Get in Touch\"})})},UwVtqUjIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Get in Touch\"})})},yCeNqW9XE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Get in Touch\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10ij1kb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yVWU8TOAq-container\",nodeId:\"yVWU8TOAq\",rendersWithMotion:true,scopeId:\"po3l5NXyw\",style:{rotate:0},variants:{\"qIZ3GScSU-hover\":{rotate:0},\"qIZ3GScSU-pressed\":{rotate:45},\"UwVtqUjIR-hover\":{rotate:0},\"UwVtqUjIR-pressed\":{rotate:45},\"vtBrJD_dV-pressed\":{rotate:45},\"yCeNqW9XE-hover\":{rotate:0},\"yCeNqW9XE-pressed\":{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"yVWU8TOAq\",layoutId:\"yVWU8TOAq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({\"qIZ3GScSU-hover\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"qIZ3GScSU-pressed\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"UwVtqUjIR-hover\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"UwVtqUjIR-pressed\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"vtBrJD_dV-hover\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"vtBrJD_dV-pressed\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"yCeNqW9XE-hover\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},\"yCeNqW9XE-pressed\":{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},UwVtqUjIR:{color:\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},yCeNqW9XE:{color:\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cnmCJ.framer-14hhlkz, .framer-cnmCJ .framer-14hhlkz { display: block; }\",\".framer-cnmCJ.framer-fy0gpp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-cnmCJ .framer-jb0rxg { flex: none; height: 100%; left: -172px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-cnmCJ .framer-fi43z3 { 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: min-content; z-index: 2; }\",\".framer-cnmCJ .framer-1eiylir { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cnmCJ .framer-10ij1kb-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-cnmCJ.framer-v-fy0gpp.hover .framer-jb0rxg, .framer-cnmCJ.framer-v-fy0gpp.pressed .framer-jb0rxg, .framer-cnmCJ.framer-v-q8cxp8.hover .framer-jb0rxg, .framer-cnmCJ.framer-v-q8cxp8.pressed .framer-jb0rxg, .framer-cnmCJ.framer-v-ow1fnb.hover .framer-jb0rxg, .framer-cnmCJ.framer-v-ow1fnb.pressed .framer-jb0rxg, .framer-cnmCJ.framer-v-vmwvzz.hover .framer-jb0rxg, .framer-cnmCJ.framer-v-vmwvzz.pressed .framer-jb0rxg { left: 0px; }\",'.framer-cnmCJ[data-border=\"true\"]::after, .framer-cnmCJ [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 131\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yCeNqW9XE\":{\"layout\":[\"auto\",\"auto\"]},\"UwVtqUjIR\":{\"layout\":[\"auto\",\"auto\"]},\"qIZ3GScSU\":{\"layout\":[\"auto\",\"auto\"]},\"v_tUujYYq\":{\"layout\":[\"auto\",\"auto\"]},\"JBfKcN88K\":{\"layout\":[\"auto\",\"auto\"]},\"yzcWRhhCL\":{\"layout\":[\"auto\",\"auto\"]},\"aLxPJkOCW\":{\"layout\":[\"auto\",\"auto\"]},\"UNVNBn3Ix\":{\"layout\":[\"auto\",\"auto\"]},\"IFJgiH9fK\":{\"layout\":[\"auto\",\"auto\"]},\"urWHzZ3vz\":{\"layout\":[\"auto\",\"auto\"]},\"RC1Er6YAP\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"EUsAmKGDr\":\"buttonText\",\"kM7KukffH\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerpo3l5NXyw=withCSS(Component,css,\"framer-cnmCJ\");export default Framerpo3l5NXyw;Framerpo3l5NXyw.displayName=\"Button/Primary 2\";Framerpo3l5NXyw.defaultProps={height:44,width:131};addPropertyControls(Framerpo3l5NXyw,{variant:{options:[\"vtBrJD_dV\",\"yCeNqW9XE\",\"UwVtqUjIR\",\"qIZ3GScSU\"],optionTitles:[\"Primary Dark\",\"Primary White\",\"Secondary Dark\",\"Secondary White\"],title:\"Variant\",type:ControlType.Enum},EUsAmKGDr:{defaultValue:\"Button\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},kM7KukffH:{title:\"Link\",type:ControlType.Link}});addFonts(Framerpo3l5NXyw,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpo3l5NXyw\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"EUsAmKGDr\\\":\\\"buttonText\\\",\\\"kM7KukffH\\\":\\\"link\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"44\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yCeNqW9XE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UwVtqUjIR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qIZ3GScSU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"v_tUujYYq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JBfKcN88K\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yzcWRhhCL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aLxPJkOCW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UNVNBn3Ix\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IFJgiH9fK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"urWHzZ3vz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RC1Er6YAP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"131\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./po3l5NXyw.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ServiceCard02 from\"https://framerusercontent.com/modules/osVkYpwJrxVfxbOYolQl/ThTDodI5AvBDgVd7pcT5/HQuW57l9U.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ButtonPrimary2 from\"https://framerusercontent.com/modules/JLRa6mwgL3hboUp4R0Tn/jvVbYDXM8AEBCQ7AtmZk/po3l5NXyw.js\";const PhosphorFonts=getFonts(Phosphor);const ButtonPrimary2Fonts=getFonts(ButtonPrimary2);const ServiceCard02Fonts=getFonts(ServiceCard02);const cycleOrder=[\"WYS2kYq1I\",\"ebGcyp_z3\",\"Fli_byAHg\",\"t3_ChgooZ\",\"oIltgvCX1\",\"CAFhcMJCX\",\"Guk49yPjj\",\"m1OVzscCE\",\"b0xsyj6Yi\",\"S3Et4JRM9\",\"wXbz1Nr9r\",\"rdt9ylU76\",\"DbFHlrTSW\"];const serializationHash=\"framer-MoCDe\";const variantClassNames={b0xsyj6Yi:\"framer-v-172b7iu\",CAFhcMJCX:\"framer-v-1ru0j6s\",DbFHlrTSW:\"framer-v-vxzqo\",ebGcyp_z3:\"framer-v-1j3yb11\",Fli_byAHg:\"framer-v-12qdbzl\",Guk49yPjj:\"framer-v-1prn8xq\",m1OVzscCE:\"framer-v-z9mbjd\",oIltgvCX1:\"framer-v-1mg0tk5\",rdt9ylU76:\"framer-v-joi3vt\",S3Et4JRM9:\"framer-v-1ffxgdp\",t3_ChgooZ:\"framer-v-1aqe7y2\",wXbz1Nr9r:\"framer-v-5dc87t\",WYS2kYq1I:\"framer-v-1st8cy\"};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 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 humanReadableVariantMap={\"Default - Input\":\"WYS2kYq1I\",\"Desktop/01\":\"ebGcyp_z3\",\"Desktop/02\":\"Fli_byAHg\",\"Desktop/03\":\"t3_ChgooZ\",\"Desktop/04\":\"oIltgvCX1\",\"Phone/01\":\"S3Et4JRM9\",\"Phone/02\":\"wXbz1Nr9r\",\"Phone/03\":\"rdt9ylU76\",\"Phone/04\":\"DbFHlrTSW\",\"Tablet/01\":\"CAFhcMJCX\",\"Tablet/02\":\"Guk49yPjj\",\"Tablet/03\":\"m1OVzscCE\",\"Tablet/04\":\"b0xsyj6Yi\"};const getProps=({description01,description02,description03,description04,height,id,image01,image02,image03,image04,service01,service02,service03,service04,width,...props})=>{return{...props,b8a1J5Anc:description04??props.b8a1J5Anc??\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",DHGCr512V:description01??props.DHGCr512V??\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",dnXRTKPVe:image02??props.dnXRTKPVe,ezO9JVcEz:service02??props.ezO9JVcEz??\"This is title 02\",I6Gm0NuZs:service03??props.I6Gm0NuZs??\"This is title 03\",ioXYB3t55:description03??props.ioXYB3t55??\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",Macu4JVD6:service04??props.Macu4JVD6??\"This is title 04\",Q3pUgThjT:image03??props.Q3pUgThjT,r2zyZUdm7:service01??props.r2zyZUdm7??\"This is title 01\",TVMf3I43Z:image01??props.TVMf3I43Z,variant:humanReadableVariantMap[props.variant]??props.variant??\"WYS2kYq1I\",WZDxpUK9F:description02??props.WZDxpUK9F??\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",YgdHpelOk:image04??props.YgdHpelOk};};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,r2zyZUdm7,DHGCr512V,TVMf3I43Z,ezO9JVcEz,WZDxpUK9F,dnXRTKPVe,I6Gm0NuZs,ioXYB3t55,Q3pUgThjT,Macu4JVD6,b8a1J5Anc,YgdHpelOk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WYS2kYq1I\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const JNxREdFTV10q6juk=activeVariantCallback(async(...args)=>{setVariant(\"ebGcyp_z3\");});const JNxREdFTVk39evf=activeVariantCallback(async(...args)=>{setVariant(\"CAFhcMJCX\");});const JNxREdFTVzhvayi=activeVariantCallback(async(...args)=>{setVariant(\"S3Et4JRM9\");});const JNxREdFTV5ho14g=activeVariantCallback(async(...args)=>{setVariant(\"Fli_byAHg\");});const JNxREdFTV1gpi000=activeVariantCallback(async(...args)=>{setVariant(\"Guk49yPjj\");});const JNxREdFTV1hakpzr=activeVariantCallback(async(...args)=>{setVariant(\"wXbz1Nr9r\");});const JNxREdFTV19l7y4g=activeVariantCallback(async(...args)=>{setVariant(\"t3_ChgooZ\");});const JNxREdFTV15yj514=activeVariantCallback(async(...args)=>{setVariant(\"m1OVzscCE\");});const JNxREdFTVtvm1st=activeVariantCallback(async(...args)=>{setVariant(\"rdt9ylU76\");});const JNxREdFTVv9ur1o=activeVariantCallback(async(...args)=>{setVariant(\"oIltgvCX1\");});const JNxREdFTVg2wouw=activeVariantCallback(async(...args)=>{setVariant(\"b0xsyj6Yi\");});const JNxREdFTVhk5j03=activeVariantCallback(async(...args)=>{setVariant(\"DbFHlrTSW\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1st8cy\",className,classNames),\"data-framer-name\":\"Default - Input\",layoutDependency:layoutDependency,layoutId:\"WYS2kYq1I\",ref:refBinding,style:{...style},...addPropertyOverrides({b0xsyj6Yi:{\"data-framer-name\":\"Tablet/04\"},CAFhcMJCX:{\"data-framer-name\":\"Tablet/01\"},DbFHlrTSW:{\"data-framer-name\":\"Phone/04\"},ebGcyp_z3:{\"data-framer-name\":\"Desktop/01\"},Fli_byAHg:{\"data-framer-name\":\"Desktop/02\"},Guk49yPjj:{\"data-framer-name\":\"Tablet/02\"},m1OVzscCE:{\"data-framer-name\":\"Tablet/03\"},oIltgvCX1:{\"data-framer-name\":\"Desktop/04\"},rdt9ylU76:{\"data-framer-name\":\"Phone/03\"},S3Et4JRM9:{\"data-framer-name\":\"Phone/01\"},t3_ChgooZ:{\"data-framer-name\":\"Desktop/03\"},wXbz1Nr9r:{\"data-framer-name\":\"Phone/02\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-edqx0q\",\"data-framer-name\":\"Inner\",layoutDependency:layoutDependency,layoutId:\"jXD0l24zN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfv7\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"lphdphuDT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-umdoub\",\"data-framer-name\":\"Section Title\",layoutDependency:layoutDependency,layoutId:\"TCuTULG3a\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-arhp80\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"il3U2I8TZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-on7x82\",\"data-framer-name\":\"Subtitle\",layoutDependency:layoutDependency,layoutId:\"bkH9u8IDN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15l8qge-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gCuOus_d1-container\",nodeId:\"gCuOus_d1\",rendersWithMotion:true,scopeId:\"MD7wvy7Lb\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"gCuOus_d1\",layoutId:\"gCuOus_d1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"Service\"})}),className:\"framer-xsj292\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"bmj1SJPLx\",style:{\"--extracted-1w1cjl5\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--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.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),className:\"framer-1cj8kjs\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"rhRKHiWJg\",style:{\"--extracted-1of0zx5\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CAFhcMJCX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),fonts:[\"FS;Satoshi-bold\"]},DbFHlrTSW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),fonts:[\"FS;Satoshi-bold\"]},ebGcyp_z3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),fonts:[\"FS;Satoshi-bold\"]},rdt9ylU76:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),fonts:[\"FS;Satoshi-bold\"]},S3Et4JRM9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),fonts:[\"FS;Satoshi-bold\"]},wXbz1Nr9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"\u6226\u7565\u7684\u6210\u529F\u306E\u305F\u3081\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA\u578B\u30B5\u30FC\u30D3\u30B9\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32)))\"},children:\"CORSE\u3067\u306F\u3001\u3055\u307E\u3056\u307E\u306A\u696D\u754C\u306E\u30D3\u30B8\u30CD\u30B9\u30CB\u30FC\u30BA\u306B\u5BFE\u5FDC\u3059\u308B\u5305\u62EC\u7684\u306A\u30B5\u30FC\u30D3\u30B9\u3092\u63D0\u4F9B\u3057\u3066\u3044\u307E\u3059\u3002\u6226\u7565\u7684\u306A\u30A2\u30D7\u30ED\u30FC\u30C1\u3068\u67D4\u8EDF\u306A\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\u306B\u3088\u308A\u3001\u8CB4\u793E\u304C\u5909\u5316\u3059\u308B\u5E02\u5834\u74B0\u5883\u306E\u4E2D\u3067\u8AB2\u984C\u3092\u4E57\u308A\u8D8A\u3048\u3001\u6301\u7D9A\u7684\u306A\u6210\u9577\u3092\u5B9F\u73FE\u3067\u304D\u308B\u3088\u3046\u652F\u63F4\u3057\u307E\u3059\u3002\"})}),className:\"framer-m069gi\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"MIkJcwLnY\",style:{\"--extracted-r6o4lv\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+(100+((componentViewport?.height||1187)-200-882)/2)+0+0+248,...addPropertyOverrides({b0xsyj6Yi:{y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+248},CAFhcMJCX:{y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+248},DbFHlrTSW:{y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+238},ebGcyp_z3:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+248},Fli_byAHg:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+248},Guk49yPjj:{y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+248},m1OVzscCE:{y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+248},oIltgvCX1:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+248},rdt9ylU76:{y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+238},S3Et4JRM9:{y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+238},t3_ChgooZ:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+248},wXbz1Nr9r:{y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+238}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o311gd-container\",layoutDependency:layoutDependency,layoutId:\"JVZK4f8kh-container\",nodeId:\"JVZK4f8kh\",rendersWithMotion:true,scopeId:\"MD7wvy7Lb\",children:/*#__PURE__*/_jsx(ButtonPrimary2,{EUsAmKGDr:\"\u7121\u6599\u76F8\u8AC7\u3059\u308B\",height:\"100%\",id:\"JVZK4f8kh\",kM7KukffH:resolvedLinks[0],layoutId:\"JVZK4f8kh\",variant:\"vtBrJD_dV\",width:\"100%\",...addPropertyOverrides({b0xsyj6Yi:{kM7KukffH:resolvedLinks[8]},CAFhcMJCX:{kM7KukffH:resolvedLinks[5]},DbFHlrTSW:{EUsAmKGDr:\"\u30B5\u30FC\u30D3\u30B9\u4E00\u89A7\",kM7KukffH:resolvedLinks[12]},ebGcyp_z3:{EUsAmKGDr:\"\u30B5\u30FC\u30D3\u30B9\u4E00\u89A7\",kM7KukffH:resolvedLinks[1]},Fli_byAHg:{kM7KukffH:resolvedLinks[2]},Guk49yPjj:{kM7KukffH:resolvedLinks[6]},m1OVzscCE:{kM7KukffH:resolvedLinks[7]},oIltgvCX1:{kM7KukffH:resolvedLinks[4]},rdt9ylU76:{EUsAmKGDr:\"\u30B5\u30FC\u30D3\u30B9\u4E00\u89A7\",kM7KukffH:resolvedLinks[11]},S3Et4JRM9:{EUsAmKGDr:\"\u30B5\u30FC\u30D3\u30B9\u4E00\u89A7\",kM7KukffH:resolvedLinks[9]},t3_ChgooZ:{kM7KukffH:resolvedLinks[3]},wXbz1Nr9r:{EUsAmKGDr:\"\u30B5\u30FC\u30D3\u30B9\u4E00\u89A7\",kM7KukffH:resolvedLinks[10]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lsrexd\",\"data-framer-name\":\"Service List\",layoutDependency:layoutDependency,layoutId:\"TqeJ_U6Zh\",style:{backgroundColor:\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.45 - 50px, 1px) * 1.4019)`,y:(componentViewport?.y||0)+(100+((componentViewport?.height||1187)-200-882)/2)+0+0+342+0+0,...addPropertyOverrides({b0xsyj6Yi:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+0},CAFhcMJCX:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+0},DbFHlrTSW:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+0},ebGcyp_z3:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+0},Fli_byAHg:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+0},Guk49yPjj:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+0},m1OVzscCE:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+0},oIltgvCX1:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+0},rdt9ylU76:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+0},S3Et4JRM9:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+0},t3_ChgooZ:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+0},wXbz1Nr9r:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uk1yzj-container\",\"data-framer-name\":\"Service 01\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BNZkllJVd-container\",name:\"Service 01\",nodeId:\"BNZkllJVd\",rendersWithMotion:true,scopeId:\"MD7wvy7Lb\",children:/*#__PURE__*/_jsx(ServiceCard02,{cpz1nSh5H:\"01\",height:\"100%\",id:\"BNZkllJVd\",layoutId:\"BNZkllJVd\",mOQ1g4GPC:DHGCr512V,name:\"Service 01\",q8WLrFaEO:r2zyZUdm7,style:{width:\"100%\"},variant:\"VJ35PsGYA\",width:\"100%\",...addPropertyOverrides({b0xsyj6Yi:{JNxREdFTV:JNxREdFTVk39evf,variant:\"o4rzOWXxM\"},CAFhcMJCX:{JNxREdFTV:JNxREdFTVk39evf},DbFHlrTSW:{JNxREdFTV:JNxREdFTVzhvayi,variant:\"HyZYGaX4M\"},ebGcyp_z3:{JNxREdFTV:JNxREdFTV10q6juk},Fli_byAHg:{JNxREdFTV:JNxREdFTV10q6juk,variant:\"o4rzOWXxM\"},Guk49yPjj:{JNxREdFTV:JNxREdFTVk39evf,variant:\"o4rzOWXxM\"},m1OVzscCE:{JNxREdFTV:JNxREdFTVk39evf,variant:\"o4rzOWXxM\"},oIltgvCX1:{JNxREdFTV:JNxREdFTV10q6juk,variant:\"o4rzOWXxM\"},rdt9ylU76:{JNxREdFTV:JNxREdFTVzhvayi,variant:\"HyZYGaX4M\"},S3Et4JRM9:{JNxREdFTV:JNxREdFTVzhvayi,variant:\"gISXRi0B6\"},t3_ChgooZ:{JNxREdFTV:JNxREdFTV10q6juk,variant:\"o4rzOWXxM\"},wXbz1Nr9r:{JNxREdFTV:JNxREdFTVzhvayi,variant:\"HyZYGaX4M\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.45 - 50px, 1px) * 1.4019)`,y:(componentViewport?.y||0)+(100+((componentViewport?.height||1187)-200-882)/2)+0+0+342+0+135,...addPropertyOverrides({b0xsyj6Yi:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+135},CAFhcMJCX:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+135},DbFHlrTSW:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+135},ebGcyp_z3:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+135},Fli_byAHg:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+135},Guk49yPjj:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+135},m1OVzscCE:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+135},oIltgvCX1:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+135},rdt9ylU76:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+135},S3Et4JRM9:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+135},t3_ChgooZ:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+135},wXbz1Nr9r:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+135}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xlyfdz-container\",\"data-framer-name\":\"Service 02\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Q63eReC4P-container\",name:\"Service 02\",nodeId:\"Q63eReC4P\",rendersWithMotion:true,scopeId:\"MD7wvy7Lb\",children:/*#__PURE__*/_jsx(ServiceCard02,{cpz1nSh5H:\"02\",height:\"100%\",id:\"Q63eReC4P\",layoutId:\"Q63eReC4P\",mOQ1g4GPC:WZDxpUK9F,name:\"Service 02\",q8WLrFaEO:ezO9JVcEz,style:{width:\"100%\"},variant:\"VJ35PsGYA\",width:\"100%\",...addPropertyOverrides({b0xsyj6Yi:{JNxREdFTV:JNxREdFTV1gpi000,variant:\"o4rzOWXxM\"},CAFhcMJCX:{JNxREdFTV:JNxREdFTV1gpi000,variant:\"o4rzOWXxM\"},DbFHlrTSW:{JNxREdFTV:JNxREdFTV1hakpzr,variant:\"HyZYGaX4M\"},ebGcyp_z3:{JNxREdFTV:JNxREdFTV5ho14g,variant:\"o4rzOWXxM\"},Fli_byAHg:{JNxREdFTV:JNxREdFTV5ho14g},Guk49yPjj:{JNxREdFTV:JNxREdFTV1gpi000},m1OVzscCE:{JNxREdFTV:JNxREdFTV1gpi000,variant:\"o4rzOWXxM\"},oIltgvCX1:{JNxREdFTV:JNxREdFTV5ho14g,variant:\"o4rzOWXxM\"},rdt9ylU76:{JNxREdFTV:JNxREdFTV1hakpzr,variant:\"HyZYGaX4M\"},S3Et4JRM9:{JNxREdFTV:JNxREdFTV1hakpzr,variant:\"HyZYGaX4M\"},t3_ChgooZ:{JNxREdFTV:JNxREdFTV5ho14g,variant:\"o4rzOWXxM\"},wXbz1Nr9r:{JNxREdFTV:JNxREdFTV1hakpzr,variant:\"gISXRi0B6\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.45 - 50px, 1px) * 1.4019)`,y:(componentViewport?.y||0)+(100+((componentViewport?.height||1187)-200-882)/2)+0+0+342+0+270,...addPropertyOverrides({b0xsyj6Yi:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+270},CAFhcMJCX:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+270},DbFHlrTSW:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+270},ebGcyp_z3:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+270},Fli_byAHg:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+270},Guk49yPjj:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+270},m1OVzscCE:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+270},oIltgvCX1:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+270},rdt9ylU76:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+270},S3Et4JRM9:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+270},t3_ChgooZ:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+270},wXbz1Nr9r:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+270}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j3ksyg-container\",\"data-framer-name\":\"Service 03\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"V2CyAY4dg-container\",name:\"Service 03\",nodeId:\"V2CyAY4dg\",rendersWithMotion:true,scopeId:\"MD7wvy7Lb\",children:/*#__PURE__*/_jsx(ServiceCard02,{cpz1nSh5H:\"03\",height:\"100%\",id:\"V2CyAY4dg\",layoutId:\"V2CyAY4dg\",mOQ1g4GPC:ioXYB3t55,name:\"Service 03\",q8WLrFaEO:I6Gm0NuZs,style:{width:\"100%\"},variant:\"VJ35PsGYA\",width:\"100%\",...addPropertyOverrides({b0xsyj6Yi:{JNxREdFTV:JNxREdFTV15yj514,variant:\"o4rzOWXxM\"},CAFhcMJCX:{JNxREdFTV:JNxREdFTV15yj514,variant:\"o4rzOWXxM\"},DbFHlrTSW:{JNxREdFTV:JNxREdFTVtvm1st,variant:\"HyZYGaX4M\"},ebGcyp_z3:{JNxREdFTV:JNxREdFTV19l7y4g,variant:\"o4rzOWXxM\"},Fli_byAHg:{JNxREdFTV:JNxREdFTV19l7y4g,variant:\"o4rzOWXxM\"},Guk49yPjj:{JNxREdFTV:JNxREdFTV15yj514,variant:\"o4rzOWXxM\"},m1OVzscCE:{JNxREdFTV:JNxREdFTV15yj514},oIltgvCX1:{JNxREdFTV:JNxREdFTV19l7y4g,variant:\"o4rzOWXxM\"},rdt9ylU76:{JNxREdFTV:JNxREdFTVtvm1st,variant:\"gISXRi0B6\"},S3Et4JRM9:{JNxREdFTV:JNxREdFTVtvm1st,variant:\"HyZYGaX4M\"},t3_ChgooZ:{JNxREdFTV:JNxREdFTV19l7y4g},wXbz1Nr9r:{JNxREdFTV:JNxREdFTVtvm1st,variant:\"HyZYGaX4M\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.45 - 50px, 1px) * 1.4019)`,y:(componentViewport?.y||0)+(100+((componentViewport?.height||1187)-200-882)/2)+0+0+342+0+405,...addPropertyOverrides({b0xsyj6Yi:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+405},CAFhcMJCX:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+405},DbFHlrTSW:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+405},ebGcyp_z3:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+405},Fli_byAHg:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0+342+0+405},Guk49yPjj:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+0+0+342+0+405},m1OVzscCE:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+0+0+342+0+405},oIltgvCX1:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+405},rdt9ylU76:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+405},S3Et4JRM9:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+405},t3_ChgooZ:{y:(componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0+342+0+405},wXbz1Nr9r:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+0+0+322+0+405}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c9u4qp-container\",\"data-framer-name\":\"Service 04\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bmzinmLUZ-container\",name:\"Service 04\",nodeId:\"bmzinmLUZ\",rendersWithMotion:true,scopeId:\"MD7wvy7Lb\",children:/*#__PURE__*/_jsx(ServiceCard02,{cpz1nSh5H:\"04\",height:\"100%\",id:\"bmzinmLUZ\",layoutId:\"bmzinmLUZ\",mOQ1g4GPC:b8a1J5Anc,name:\"Service 04\",q8WLrFaEO:Macu4JVD6,style:{width:\"100%\"},variant:\"VJ35PsGYA\",width:\"100%\",...addPropertyOverrides({b0xsyj6Yi:{JNxREdFTV:JNxREdFTVg2wouw},CAFhcMJCX:{JNxREdFTV:JNxREdFTVg2wouw,variant:\"o4rzOWXxM\"},DbFHlrTSW:{JNxREdFTV:JNxREdFTVhk5j03,variant:\"gISXRi0B6\"},ebGcyp_z3:{JNxREdFTV:JNxREdFTVv9ur1o,variant:\"o4rzOWXxM\"},Fli_byAHg:{JNxREdFTV:JNxREdFTVv9ur1o,variant:\"o4rzOWXxM\"},Guk49yPjj:{JNxREdFTV:JNxREdFTVg2wouw,variant:\"o4rzOWXxM\"},m1OVzscCE:{JNxREdFTV:JNxREdFTVg2wouw,variant:\"o4rzOWXxM\"},oIltgvCX1:{JNxREdFTV:JNxREdFTVv9ur1o},rdt9ylU76:{JNxREdFTV:JNxREdFTVhk5j03,variant:\"HyZYGaX4M\"},S3Et4JRM9:{JNxREdFTV:JNxREdFTVhk5j03,variant:\"HyZYGaX4M\"},t3_ChgooZ:{JNxREdFTV:JNxREdFTVv9ur1o,variant:\"o4rzOWXxM\"},wXbz1Nr9r:{JNxREdFTV:JNxREdFTVhk5j03,variant:\"HyZYGaX4M\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ec48i\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FdXhtYsvp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(100+((componentViewport?.height||1187)-200-882)/2)+0+0),pixelHeight:756,pixelWidth:535,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.55, 1px)`,...toResponsiveImage(TVMf3I43Z)},className:\"framer-x8cbs4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xyvy_L6kR\",...addPropertyOverrides({b0xsyj6Yi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+932+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(YgdHpelOk)}},CAFhcMJCX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+932+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(TVMf3I43Z)}},DbFHlrTSW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+902+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(YgdHpelOk)}},ebGcyp_z3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0),pixelHeight:756,pixelWidth:535,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.55, 1px)`,...toResponsiveImage(TVMf3I43Z)}},Fli_byAHg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(100+((componentViewport?.height||950)-200-882)/2)+0+0),pixelHeight:756,pixelWidth:535,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.55, 1px)`,...toResponsiveImage(dnXRTKPVe)}},Guk49yPjj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(80+((componentViewport?.height||1568)-160-1582)/2)+0+932+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(dnXRTKPVe)}},m1OVzscCE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(80+((componentViewport?.height||200)-160-1582)/2)+0+932+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(Q3pUgThjT)}},oIltgvCX1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0),pixelHeight:756,pixelWidth:535,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.55, 1px)`,...toResponsiveImage(YgdHpelOk)}},rdt9ylU76:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+902+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(Q3pUgThjT)}},S3Et4JRM9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+902+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(TVMf3I43Z)}},t3_ChgooZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(100+((componentViewport?.height||200)-200-882)/2)+0+0),pixelHeight:756,pixelWidth:535,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.55, 1px)`,...toResponsiveImage(Q3pUgThjT)}},wXbz1Nr9r:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:535,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(60+((componentViewport?.height||1598)-120-1322)/2)+0+902+0),pixelHeight:756,pixelWidth:535,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(dnXRTKPVe)}}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MoCDe.framer-1ieu6w3, .framer-MoCDe .framer-1ieu6w3 { display: block; }\",\".framer-MoCDe.framer-1st8cy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1200px; }\",\".framer-MoCDe .framer-edqx0q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-MoCDe .framer-nfv7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MoCDe .framer-umdoub { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MoCDe .framer-arhp80 { 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-MoCDe .framer-on7x82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MoCDe .framer-15l8qge-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-MoCDe .framer-xsj292 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-MoCDe .framer-1cj8kjs, .framer-MoCDe .framer-m069gi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MoCDe .framer-1o311gd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MoCDe .framer-1lsrexd { 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: 140%; z-index: 1; }\",\".framer-MoCDe .framer-uk1yzj-container, .framer-MoCDe .framer-xlyfdz-container, .framer-MoCDe .framer-j3ksyg-container, .framer-MoCDe .framer-c9u4qp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MoCDe .framer-10ec48i { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 55%; }\",\".framer-MoCDe .framer-x8cbs4 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-MoCDe.framer-v-1ru0j6s.framer-1st8cy, .framer-MoCDe.framer-v-1prn8xq.framer-1st8cy, .framer-MoCDe.framer-v-z9mbjd.framer-1st8cy, .framer-MoCDe.framer-v-172b7iu.framer-1st8cy { padding: 80px 30px 80px 30px; width: 810px; }\",\".framer-MoCDe.framer-v-1ru0j6s .framer-edqx0q, .framer-MoCDe.framer-v-1prn8xq .framer-edqx0q, .framer-MoCDe.framer-v-z9mbjd .framer-edqx0q, .framer-MoCDe.framer-v-172b7iu .framer-edqx0q { flex-direction: column; max-width: unset; }\",\".framer-MoCDe.framer-v-1ru0j6s .framer-nfv7, .framer-MoCDe.framer-v-1prn8xq .framer-nfv7, .framer-MoCDe.framer-v-z9mbjd .framer-nfv7, .framer-MoCDe.framer-v-172b7iu .framer-nfv7 { flex: none; width: 100%; }\",\".framer-MoCDe.framer-v-1ru0j6s .framer-1lsrexd, .framer-MoCDe.framer-v-1prn8xq .framer-1lsrexd, .framer-MoCDe.framer-v-z9mbjd .framer-1lsrexd, .framer-MoCDe.framer-v-172b7iu .framer-1lsrexd, .framer-MoCDe.framer-v-1ffxgdp .framer-1lsrexd, .framer-MoCDe.framer-v-5dc87t .framer-1lsrexd, .framer-MoCDe.framer-v-joi3vt .framer-1lsrexd, .framer-MoCDe.framer-v-vxzqo .framer-1lsrexd { width: 100%; }\",\".framer-MoCDe.framer-v-1ru0j6s .framer-10ec48i, .framer-MoCDe.framer-v-1prn8xq .framer-10ec48i { align-self: unset; aspect-ratio: 1.1538461538461537 / 1; height: var(--framer-aspect-ratio-supported, 650px); width: 100%; }\",\".framer-MoCDe.framer-v-z9mbjd .framer-10ec48i, .framer-MoCDe.framer-v-172b7iu .framer-10ec48i { align-self: unset; aspect-ratio: 1.1538461538461537 / 1; height: var(--framer-aspect-ratio-supported, 173px); width: 100%; }\",\".framer-MoCDe.framer-v-1ffxgdp.framer-1st8cy, .framer-MoCDe.framer-v-5dc87t.framer-1st8cy, .framer-MoCDe.framer-v-joi3vt.framer-1st8cy, .framer-MoCDe.framer-v-vxzqo.framer-1st8cy { padding: 60px 20px 60px 20px; width: 390px; }\",\".framer-MoCDe.framer-v-1ffxgdp .framer-edqx0q, .framer-MoCDe.framer-v-5dc87t .framer-edqx0q, .framer-MoCDe.framer-v-joi3vt .framer-edqx0q, .framer-MoCDe.framer-v-vxzqo .framer-edqx0q { flex-direction: column; gap: 40px; max-width: unset; }\",\".framer-MoCDe.framer-v-1ffxgdp .framer-nfv7, .framer-MoCDe.framer-v-5dc87t .framer-nfv7, .framer-MoCDe.framer-v-joi3vt .framer-nfv7, .framer-MoCDe.framer-v-vxzqo .framer-nfv7 { flex: none; gap: 40px; width: 100%; }\",\".framer-MoCDe.framer-v-1ffxgdp .framer-10ec48i, .framer-MoCDe.framer-v-5dc87t .framer-10ec48i, .framer-MoCDe.framer-v-joi3vt .framer-10ec48i, .framer-MoCDe.framer-v-vxzqo .framer-10ec48i { align-self: unset; aspect-ratio: 0.8333333333333334 / 1; height: var(--framer-aspect-ratio-supported, 420px); width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1187\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ebGcyp_z3\":{\"layout\":[\"fixed\",\"auto\"]},\"Fli_byAHg\":{\"layout\":[\"fixed\",\"auto\"]},\"t3_ChgooZ\":{\"layout\":[\"fixed\",\"auto\"]},\"oIltgvCX1\":{\"layout\":[\"fixed\",\"auto\"]},\"CAFhcMJCX\":{\"layout\":[\"fixed\",\"auto\"]},\"Guk49yPjj\":{\"layout\":[\"fixed\",\"auto\"]},\"m1OVzscCE\":{\"layout\":[\"fixed\",\"auto\"]},\"b0xsyj6Yi\":{\"layout\":[\"fixed\",\"auto\"]},\"S3Et4JRM9\":{\"layout\":[\"fixed\",\"auto\"]},\"wXbz1Nr9r\":{\"layout\":[\"fixed\",\"auto\"]},\"rdt9ylU76\":{\"layout\":[\"fixed\",\"auto\"]},\"DbFHlrTSW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"r2zyZUdm7\":\"service01\",\"DHGCr512V\":\"description01\",\"TVMf3I43Z\":\"image01\",\"ezO9JVcEz\":\"service02\",\"WZDxpUK9F\":\"description02\",\"dnXRTKPVe\":\"image02\",\"I6Gm0NuZs\":\"service03\",\"ioXYB3t55\":\"description03\",\"Q3pUgThjT\":\"image03\",\"Macu4JVD6\":\"service04\",\"b8a1J5Anc\":\"description04\",\"YgdHpelOk\":\"image04\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMD7wvy7Lb=withCSS(Component,css,\"framer-MoCDe\");export default FramerMD7wvy7Lb;FramerMD7wvy7Lb.displayName=\"Our Services 6\";FramerMD7wvy7Lb.defaultProps={height:1187,width:1200};addPropertyControls(FramerMD7wvy7Lb,{variant:{options:[\"WYS2kYq1I\",\"ebGcyp_z3\",\"Fli_byAHg\",\"t3_ChgooZ\",\"oIltgvCX1\",\"CAFhcMJCX\",\"Guk49yPjj\",\"m1OVzscCE\",\"b0xsyj6Yi\",\"S3Et4JRM9\",\"wXbz1Nr9r\",\"rdt9ylU76\",\"DbFHlrTSW\"],optionTitles:[\"Default - Input\",\"Desktop/01\",\"Desktop/02\",\"Desktop/03\",\"Desktop/04\",\"Tablet/01\",\"Tablet/02\",\"Tablet/03\",\"Tablet/04\",\"Phone/01\",\"Phone/02\",\"Phone/03\",\"Phone/04\"],title:\"Variant\",type:ControlType.Enum},r2zyZUdm7:{defaultValue:\"This is title 01\",displayTextArea:false,title:\"Service 01\",type:ControlType.String},DHGCr512V:{defaultValue:\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",displayTextArea:false,title:\"Description 01\",type:ControlType.String},TVMf3I43Z:{title:\"Image 01\",type:ControlType.ResponsiveImage},ezO9JVcEz:{defaultValue:\"This is title 02\",displayTextArea:false,title:\"Service 02\",type:ControlType.String},WZDxpUK9F:{defaultValue:\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",displayTextArea:false,title:\"Description 02\",type:ControlType.String},dnXRTKPVe:{title:\"Image 02\",type:ControlType.ResponsiveImage},I6Gm0NuZs:{defaultValue:\"This is title 03\",displayTextArea:false,title:\"Service 03\",type:ControlType.String},ioXYB3t55:{defaultValue:\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",displayTextArea:false,title:\"Description 03\",type:ControlType.String},Q3pUgThjT:{title:\"Image 03\",type:ControlType.ResponsiveImage},Macu4JVD6:{defaultValue:\"This is title 04\",displayTextArea:false,title:\"Service 04\",type:ControlType.String},b8a1J5Anc:{defaultValue:\"Craft a roadmap for success with our Business Strategy Consulting. We analyze market dynamics, identify opportunities, and set strategic goals tailored to your unique business landscape.\",displayTextArea:false,title:\"Description 04\",type:ControlType.String},YgdHpelOk:{title:\"Image 04\",type:ControlType.ResponsiveImage}});addFonts(FramerMD7wvy7Lb,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...PhosphorFonts,...ButtonPrimary2Fonts,...ServiceCard02Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMD7wvy7Lb\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ebGcyp_z3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fli_byAHg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t3_ChgooZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oIltgvCX1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CAFhcMJCX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Guk49yPjj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m1OVzscCE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b0xsyj6Yi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S3Et4JRM9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wXbz1Nr9r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rdt9ylU76\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DbFHlrTSW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"1187\",\"framerVariables\":\"{\\\"r2zyZUdm7\\\":\\\"service01\\\",\\\"DHGCr512V\\\":\\\"description01\\\",\\\"TVMf3I43Z\\\":\\\"image01\\\",\\\"ezO9JVcEz\\\":\\\"service02\\\",\\\"WZDxpUK9F\\\":\\\"description02\\\",\\\"dnXRTKPVe\\\":\\\"image02\\\",\\\"I6Gm0NuZs\\\":\\\"service03\\\",\\\"ioXYB3t55\\\":\\\"description03\\\",\\\"Q3pUgThjT\\\":\\\"image03\\\",\\\"Macu4JVD6\\\":\\\"service04\\\",\\\"b8a1J5Anc\\\":\\\"description04\\\",\\\"YgdHpelOk\\\":\\\"image04\\\"}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MD7wvy7Lb.map", "// Generated by Framer (20dc3ed)\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 sharedStyle2 from\"https://framerusercontent.com/modules/xnFVsbORy10RJ1Or6esZ/DwXFqaSv3Muhq60e2Xyy/fPOP5nFOT.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nfwgEhkTQUhConE2Bfnm/OwI6xE3XLcWIwgAWUNLh/lA8nktNlQ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qHZZdiUZULB2tPdGcfaY/OTcGQuanRhukAazOZMV4/mQ7v0Ys_C.js\";const serializationHash=\"framer-EtW55\";const variantClassNames={YRG3XEq8J:\"framer-v-f8wb23\"};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 prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};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=({description,height,id,image,number,serviceTitle,width,...props})=>{return{...props,Bkv29i9gq:description??props.Bkv29i9gq??\"From startups to established tech companies, Cubicles provides strategic guidance to navigate the rapidly evolving landscape, enhance product development, and drive technological innovation.\",ugeiSLMj7:serviceTitle??props.ugeiSLMj7??\"This is title\",vre6NzGxW:number??props.vre6NzGxW??\"00\",ZyojuSC4s:image??props.ZyojuSC4s};};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,vre6NzGxW,ZyojuSC4s,ugeiSLMj7,Bkv29i9gq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YRG3XEq8J\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=suffix(prefix(vre6NzGxW,\"[\"),\"]\");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-f8wb23\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YRG3XEq8J\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2ffd52ff-00ba-42d3-86d8-14ef7bd3aecb, rgba(13, 23, 32, 0.2))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c28a4919-a923-4b06-a37f-6412df3a47f4, rgb(247, 247, 247))\",...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-z58rui\",\"data-styles-preset\":\"mQ7v0Ys_C\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44)))\"},children:\"[01]\"})}),className:\"framer-nh7fx2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V0Ll3uNdC\",style:{\"--extracted-1w1cjl5\":\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dwo4sl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FmcDWXZ0I\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371,intrinsicWidth:370,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+45+51.6+0+0),pixelHeight:371,pixelWidth:370,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,...toResponsiveImage(ZyojuSC4s)},className:\"framer-k968e\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vOzYvjZyp\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j82jsd\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"aPpwYxhED\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-13c8vny\",\"data-styles-preset\":\"lA8nktNlQ\",children:\"Technology and Software Development\"})}),className:\"framer-hj8wjg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ua7sqhpZU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ugeiSLMj7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1r56bhr\",\"data-styles-preset\":\"fPOP5nFOT\",children:\"From startups to established tech companies, Cubicles provides strategic guidance to navigate the rapidly evolving landscape, enhance product development, and drive technological innovation.\"})}),className:\"framer-9wfq1l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N5SIxXbuJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Bkv29i9gq,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EtW55.framer-1g45d6a, .framer-EtW55 .framer-1g45d6a { display: block; }\",\".framer-EtW55.framer-f8wb23 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 45px 40px 45px 40px; position: relative; width: 450px; }\",\".framer-EtW55 .framer-nh7fx2, .framer-EtW55 .framer-hj8wjg, .framer-EtW55 .framer-9wfq1l { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EtW55 .framer-1dwo4sl { align-content: center; align-items: center; aspect-ratio: 0.8584686774941995 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 431px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EtW55 .framer-k968e { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-EtW55 .framer-j82jsd { 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: hidden; padding: 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-EtW55[data-border=\"true\"]::after, .framer-EtW55 [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 727\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vre6NzGxW\":\"number\",\"ZyojuSC4s\":\"image\",\"ugeiSLMj7\":\"serviceTitle\",\"Bkv29i9gq\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereRmnJYuUJ=withCSS(Component,css,\"framer-EtW55\");export default FramereRmnJYuUJ;FramereRmnJYuUJ.displayName=\"Service Card/01\";FramereRmnJYuUJ.defaultProps={height:727,width:450};addPropertyControls(FramereRmnJYuUJ,{vre6NzGxW:{defaultValue:\"00\",displayTextArea:false,title:\"Number\",type:ControlType.String},ZyojuSC4s:{title:\"Image\",type:ControlType.ResponsiveImage},ugeiSLMj7:{defaultValue:\"This is title\",displayTextArea:false,title:\"Service Title\",type:ControlType.String},Bkv29i9gq:{defaultValue:\"From startups to established tech companies, Cubicles provides strategic guidance to navigate the rapidly evolving landscape, enhance product development, and drive technological innovation.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramereRmnJYuUJ,[{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\":\"FramereRmnJYuUJ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"vre6NzGxW\\\":\\\"number\\\",\\\"ZyojuSC4s\\\":\\\"image\\\",\\\"ugeiSLMj7\\\":\\\"serviceTitle\\\",\\\"Bkv29i9gq\\\":\\\"description\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"727\",\"framerIntrinsicWidth\":\"450\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import ServiceCard01 from\"https://framerusercontent.com/modules/rXpnrSRcuRGO0Xh5s6a2/ovT2mjwqbzBltXWLJk8Q/eRmnJYuUJ.js\";const ServiceCard01Fonts=getFonts(ServiceCard01);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"etQp5DR51\",\"QEeVP_HMS\",\"zL02NTsNl\"];const serializationHash=\"framer-vCVOs\";const variantClassNames={etQp5DR51:\"framer-v-1oyljo9\",QEeVP_HMS:\"framer-v-v6ruiu\",zL02NTsNl:\"framer-v-3hk2r7\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"etQp5DR51\",Phone:\"zL02NTsNl\",Tablet:\"QEeVP_HMS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"etQp5DR51\"};};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:\"etQp5DR51\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oyljo9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"etQp5DR51\",ref:refBinding,style:{...style},...addPropertyOverrides({QEeVP_HMS:{\"data-framer-name\":\"Tablet\"},zL02NTsNl:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b2f420-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QUGBv_sef-container\",nodeId:\"QUGBv_sef\",rendersWithMotion:true,scopeId:\"wtlqhoXid\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"QUGBv_sef\",layoutId:\"QUGBv_sef\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:\"450px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ry1gg7-container\",\"data-framer-name\":\"Service 01\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"A1G2Xb9Vt-container\",name:\"Service 01\",nodeId:\"A1G2Xb9Vt\",rendersWithMotion:true,scopeId:\"wtlqhoXid\",children:/*#__PURE__*/_jsx(ServiceCard01,{Bkv29i9gq:\"\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3078\u306E\u5C55\u958B\u3092\u3001\u78BA\u5B9F\u306B\u30FB\u30B9\u30E0\u30FC\u30BA\u306B\u3002 \u6D77\u5916\u6CD5\u4EBA\u8A2D\u7ACB\u3001\u9280\u884C\u53E3\u5EA7\u958B\u8A2D\u3001\u6CD5\u898F\u5236\u5BFE\u5FDC\u3001\u73FE\u5730\u30D1\u30FC\u30C8\u30CA\u30FC\u30B7\u30C3\u30D7\u652F\u63F4\u307E\u3067\u3001 \u30D3\u30B8\u30CD\u30B9\u306E\u56FD\u969B\u5C55\u958B\u306B\u5FC5\u8981\u306A\u5B9F\u52D9\u3092\u30EF\u30F3\u30B9\u30C8\u30C3\u30D7\u3067\u30B5\u30DD\u30FC\u30C8\u3002 \u30A2\u30B8\u30A2\u30FB\u4E2D\u6771\u30FB\u6B27\u5DDE\u5404\u5730\u57DF\u3067\u306E\u8C4A\u5BCC\u306A\u77E5\u898B\u3092\u6D3B\u304B\u3057\u3001\u73FE\u5730\u3067\u52DD\u3066\u308B\u571F\u53F0\u4F5C\u308A\u3092\u5B9F\u73FE\u3057\u307E\u3059\u3002\",height:\"100%\",id:\"A1G2Xb9Vt\",layoutId:\"A1G2Xb9Vt\",name:\"Service 01\",style:{height:\"100%\",width:\"100%\"},ugeiSLMj7:\"\u6D77\u5916\u30D3\u30B8\u30CD\u30B9\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\",vre6NzGxW:\"01\",width:\"100%\",ZyojuSC4s:addImageAlt({pixelHeight:1217,pixelWidth:1826,src:\"https://framerusercontent.com/images/ZHPRX0FSYAVtLGtYgLKUMuti2Y.png\",srcSet:\"https://framerusercontent.com/images/ZHPRX0FSYAVtLGtYgLKUMuti2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZHPRX0FSYAVtLGtYgLKUMuti2Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZHPRX0FSYAVtLGtYgLKUMuti2Y.png 1826w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:\"450px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1szruyt-container\",\"data-framer-name\":\"Service 02\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rx61jMzdC-container\",name:\"Service 02\",nodeId:\"rx61jMzdC\",rendersWithMotion:true,scopeId:\"wtlqhoXid\",children:/*#__PURE__*/_jsx(ServiceCard01,{Bkv29i9gq:\"AI\u306E\u529B\u3092\u3001\u30D3\u30B8\u30CD\u30B9\u6210\u679C\u3078\u8EE2\u63DB\u3002 \u696D\u52D9\u30D7\u30ED\u30BB\u30B9\u306E\u81EA\u52D5\u5316\u3001\u9867\u5BA2\u4F53\u9A13\u306E\u9AD8\u5EA6\u5316\u3001\u751F\u6210AI\u6D3B\u7528\u306B\u3088\u308B\u65B0\u305F\u306A\u4FA1\u5024\u5275\u51FA\u3092\u652F\u63F4\u3002 ChatGPT\u3001Claude\u3001Gemini \u306A\u3069\u306E\u751F\u6210AI\u6D3B\u7528\u304B\u3089\u3001\u30E1\u30FC\u30EB\u30FB\u30C1\u30E3\u30C3\u30C8\u30DC\u30C3\u30C8\u69CB\u7BC9\u3001 \u793E\u5185\u6D3B\u7528\u30C8\u30EC\u30FC\u30CB\u30F3\u30B0\u307E\u3067\u3001\u5B9F\u52D9\u306B\u6839\u3056\u3057\u305FAI\u5C0E\u5165\u3092\u30EA\u30FC\u30C9\u3057\u307E\u3059\u3002\",height:\"100%\",id:\"rx61jMzdC\",layoutId:\"rx61jMzdC\",name:\"Service 02\",style:{height:\"100%\",width:\"100%\"},ugeiSLMj7:\"AI\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\",vre6NzGxW:\"02\",width:\"100%\",ZyojuSC4s:addImageAlt({pixelHeight:1001,pixelWidth:1502,src:\"https://framerusercontent.com/images/ag9G0x6KwT9b07279oO5lGY2I.png\",srcSet:\"https://framerusercontent.com/images/ag9G0x6KwT9b07279oO5lGY2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/ag9G0x6KwT9b07279oO5lGY2I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ag9G0x6KwT9b07279oO5lGY2I.png 1502w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:\"450px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18z3ho9-container\",\"data-framer-name\":\"Service 04\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qmzTik60n-container\",name:\"Service 04\",nodeId:\"qmzTik60n\",rendersWithMotion:true,scopeId:\"wtlqhoXid\",children:/*#__PURE__*/_jsx(ServiceCard01,{Bkv29i9gq:\"\u30D6\u30E9\u30F3\u30C9\u306E\u529B\u3067\u3001\u9078\u3070\u308C\u308B\u5B58\u5728\u306B\u3002 \u30A6\u30A7\u30D6\u30B5\u30A4\u30C8\u30FBUI/UX\u30C7\u30B6\u30A4\u30F3\u3001\u30D6\u30E9\u30F3\u30C9\u30B9\u30C8\u30FC\u30EA\u30FC\u8A2D\u8A08\u3001\u30D3\u30B8\u30E5\u30A2\u30EB\u30A2\u30A4\u30C7\u30F3\u30C6\u30A3\u30C6\u30A3\u958B\u767A\u307E\u3067\u3001 \u4E00\u8CAB\u6027\u3042\u308B\u30D6\u30E9\u30F3\u30C9\u4F53\u9A13\u3092\u5275\u51FA\u3002 \u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3067\u3082\u4FE1\u983C\u3068\u5171\u611F\u3092\u751F\u3080\u30D6\u30E9\u30F3\u30C9\u69CB\u7BC9\u3092\u30B5\u30DD\u30FC\u30C8\u3057\u307E\u3059\u3002\",height:\"100%\",id:\"qmzTik60n\",layoutId:\"qmzTik60n\",name:\"Service 04\",style:{height:\"100%\",width:\"100%\"},ugeiSLMj7:\"\u30D6\u30E9\u30F3\u30C9\uFF06\u30C7\u30B6\u30A4\u30F3\u6226\u7565\",vre6NzGxW:\"04\",width:\"100%\",ZyojuSC4s:addImageAlt({pixelHeight:1060,pixelWidth:1587,src:\"https://framerusercontent.com/images/wgfEl9zYA9dbxUdm2OwTiC1Ju78.png\",srcSet:\"https://framerusercontent.com/images/wgfEl9zYA9dbxUdm2OwTiC1Ju78.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgfEl9zYA9dbxUdm2OwTiC1Ju78.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wgfEl9zYA9dbxUdm2OwTiC1Ju78.png 1587w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:\"450px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qa8v7g-container\",\"data-framer-name\":\"Service 03\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HESCX0mB2-container\",name:\"Service 03\",nodeId:\"HESCX0mB2\",rendersWithMotion:true,scopeId:\"wtlqhoXid\",children:/*#__PURE__*/_jsx(ServiceCard01,{Bkv29i9gq:\"\u7AF6\u4E89\u512A\u4F4D\u3092\u5275\u308B\u3001\u67D4\u8EDF\u306A\u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u958B\u767A\u3002 iOS\uFF0FAndroid\u30A2\u30D7\u30EA\u958B\u767A\u3001Web\u30B5\u30FC\u30D3\u30B9\u69CB\u7BC9\u3001\u696D\u52D9\u7CFB\u30B7\u30B9\u30C6\u30E0\u958B\u767A\u307E\u3067\u3001 \u30D3\u30B8\u30CD\u30B9\u6226\u7565\u306B\u6CBF\u3063\u305F\u4FA1\u5024\u3042\u308B\u30E6\u30FC\u30B6\u30FC\u4F53\u9A13\u3092\u5F62\u306B\u3057\u307E\u3059\u3002 \u30B9\u30D4\u30FC\u30C9\u3068\u54C1\u8CEA\u3092\u4E21\u7ACB\u3057\u3001\u4F01\u696D\u306E\u6210\u9577\u30C9\u30E9\u30A4\u30D0\u30FC\u3068\u306A\u308B\u30D7\u30ED\u30C0\u30AF\u30C8\u958B\u767A\u3092\u652F\u63F4\u3057\u307E\u3059\u3002\",height:\"100%\",id:\"HESCX0mB2\",layoutId:\"HESCX0mB2\",name:\"Service 03\",style:{height:\"100%\",width:\"100%\"},ugeiSLMj7:\"\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\",vre6NzGxW:\"03\",width:\"100%\",ZyojuSC4s:addImageAlt({pixelHeight:1074,pixelWidth:1611,src:\"https://framerusercontent.com/images/DlJtendpJPCJX2CNL1bAHCfFScc.png\",srcSet:\"https://framerusercontent.com/images/DlJtendpJPCJX2CNL1bAHCfFScc.png?scale-down-to=512 512w,https://framerusercontent.com/images/DlJtendpJPCJX2CNL1bAHCfFScc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DlJtendpJPCJX2CNL1bAHCfFScc.png 1611w\"},\"\")})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QEeVP_HMS:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}},zL02NTsNl:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vCVOs.framer-1pjwua0, .framer-vCVOs .framer-1pjwua0 { display: block; }\",\".framer-vCVOs.framer-1oyljo9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-vCVOs .framer-1b2f420-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-vCVOs .framer-1ry1gg7-container, .framer-vCVOs .framer-1szruyt-container, .framer-vCVOs .framer-18z3ho9-container, .framer-vCVOs .framer-qa8v7g-container { height: 765px; position: relative; width: 450px; }\",\".framer-vCVOs.framer-v-v6ruiu.framer-1oyljo9 { width: 810px; }\",\".framer-vCVOs.framer-v-3hk2r7.framer-1oyljo9 { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 765\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QEeVP_HMS\":{\"layout\":[\"fixed\",\"auto\"]},\"zL02NTsNl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwtlqhoXid=withCSS(Component,css,\"framer-vCVOs\");export default FramerwtlqhoXid;FramerwtlqhoXid.displayName=\"Service List\";FramerwtlqhoXid.defaultProps={height:765,width:1200};addPropertyControls(FramerwtlqhoXid,{variant:{options:[\"etQp5DR51\",\"QEeVP_HMS\",\"zL02NTsNl\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerwtlqhoXid,[{explicitInter:true,fonts:[]},...ServiceCard01Fonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwtlqhoXid\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QEeVP_HMS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zL02NTsNl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"765\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wtlqhoXid.map", "// Generated by Framer (20dc3ed)\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,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}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 ClientTicker from\"#framer/local/canvasComponent/AMw2fPTdD/AMw2fPTdD.js\";import ValueList from\"#framer/local/canvasComponent/Flh61scvr/Flh61scvr.js\";import OurServices6 from\"#framer/local/canvasComponent/MD7wvy7Lb/MD7wvy7Lb.js\";import ButtonIcon from\"#framer/local/canvasComponent/sKpHNIy0M/sKpHNIy0M.js\";import Footer from\"#framer/local/canvasComponent/tlQ3WT15i/tlQ3WT15i.js\";import Header from\"#framer/local/canvasComponent/UKj31YHf8/UKj31YHf8.js\";import PostCard from\"#framer/local/canvasComponent/vqhT02enO/vqhT02enO.js\";import ServiceList from\"#framer/local/canvasComponent/wtlqhoXid/wtlqhoXid.js\";import ButtonPrimary from\"#framer/local/canvasComponent/ZuzZGbilr/ZuzZGbilr.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/xluePAuT7/xluePAuT7.js\";import*as sharedStyle3 from\"#framer/local/css/Au1LvPACY/Au1LvPACY.js\";import*as sharedStyle1 from\"#framer/local/css/k60w8zGSy/k60w8zGSy.js\";import*as sharedStyle4 from\"#framer/local/css/MkVQUISmr/MkVQUISmr.js\";import*as sharedStyle from\"#framer/local/css/mQ7v0Ys_C/mQ7v0Ys_C.js\";import*as sharedStyle2 from\"#framer/local/css/P1otlNDQ0/P1otlNDQ0.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const ButtonIconFonts=getFonts(ButtonIcon);const PhosphorFonts=getFonts(Phosphor);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const ServiceListFonts=getFonts(ServiceList);const ValueListFonts=getFonts(ValueList);const OurServices6Fonts=getFonts(OurServices6);const PostCardFonts=getFonts(PostCard);const ClientTickerFonts=getFonts(ClientTicker);const FooterFonts=getFonts(Footer);const breakpoints={i9Mh5D5HP:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\",XdudTLNE7:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HeUBC\";const variantClassNames={i9Mh5D5HP:\"framer-v-1e7iacj\",WQLkyLRf1:\"framer-v-72rtr7\",XdudTLNE7:\"framer-v-1mwrh64\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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:\"XdudTLNE7\",Tablet:\"i9Mh5D5HP\"};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,oYLO9TkvYHCt69cPDZ,RgwWGoDPyHCt69cPDZ,Lk_eJnj0ZHCt69cPDZ,Vq5_RAekbHCt69cPDZ,DUQex9TAWHCt69cPDZ,idHCt69cPDZ,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();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-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1062,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1062,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/q0AS0V6KSBICKUFe8e5FP7LQVBk.png\",srcSet:\"https://framerusercontent.com/images/q0AS0V6KSBICKUFe8e5FP7LQVBk.png?scale-down-to=512 512w,https://framerusercontent.com/images/q0AS0V6KSBICKUFe8e5FP7LQVBk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q0AS0V6KSBICKUFe8e5FP7LQVBk.png 1200w\"},className:\"framer-1eenar3\",\"data-framer-name\":\"Page Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ob0z2\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pr5mc6-container\",nodeId:\"XKV4XSfny\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{variant:\"K2Yf8BVx8\"},XdudTLNE7:{variant:\"A3_xB6yzz\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"XKV4XSfny\",layoutId:\"XKV4XSfny\",style:{width:\"100%\"},variant:\"dZZ4DNCDU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mklh0s\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bnv7it\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kgwb2s\",\"data-framer-name\":\"Hero Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ib36a\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u30D3\u30B8\u30CD\u30B9\u8AB2\u984C\u3092\u4E57\u308A\u8D85\u3048\u308B\u3001\u6B21\u4E16\u4EE3\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\u3002\"})}),fonts:[\"FS;Satoshi-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-z58rui\",\"data-styles-preset\":\"mQ7v0Ys_C\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u30D3\u30B8\u30CD\u30B9\u8AB2\u984C\u3092\u4E57\u308A\u8D85\u3048\u308B\u3001\u6B21\u4E16\u4EE3\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\u3002\"})}),className:\"framer-28nu9p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u30B0\u30ED\u30FC\u30D0\u30EB\\xd7AI\\xd7\u30D6\u30E9\u30F3\u30C9\u529B\u3067\u3001\u6B21\u306E\u30B9\u30C6\u30FC\u30B8\u3078\"})})},XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\u30B0\u30ED\u30FC\u30D0\u30EB\\xd7AI\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\\xd7\u30D6\u30E9\u30F3\u30C9\u529B\u3067\u3001\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\u6B21\u306E\u30B9\u30C6\u30FC\u30B8\u3078\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:[\"\u30B0\u30ED\u30FC\u30D0\u30EB\\xd7AI\\xd7\u30D6\u30E9\u30F3\u30C9\u529B\u3067\u3001\",/*#__PURE__*/_jsx(\"br\",{}),\"\u6B21\u306E\u30B9\u30C6\u30FC\u30B8\u3078\"]})}),className:\"framer-1sk2m1d\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14lbvcy\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3078\u306E\u6311\u6226\u3068\u6210\u9577\u3092\u76EE\u6307\u3059\u4F01\u696D\u306E\u305F\u3081\u306B\u3001AI\u5C0E\u5165\u3001\u30D6\u30E9\u30F3\u30C9\uFF06\u30C7\u30B6\u30A4\u30F3\u6226\u7565\u3001\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\u3001\u6D77\u5916\u4E8B\u696D\u5C55\u958B\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\u3092\u30EF\u30F3\u30B9\u30C8\u30C3\u30D7\u3067\u63D0\u4F9B\u3002 \u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3068\u30AF\u30EA\u30A8\u30A4\u30C6\u30A3\u30D6\u3092\u878D\u5408\u3055\u305B\u3001\u30D3\u30B8\u30CD\u30B9\u3092\u6B21\u306E\u30B9\u30C6\u30FC\u30B8\u3078\u3068\u5C0E\u304D\u307E\u3059\u3002\"})}),fonts:[\"FS;Satoshi-regular\"]},XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3078\u306E\u6311\u6226\u3068\u6210\u9577\u3092\u76EE\u6307\u3059\u4F01\u696D\u306E\u305F\u3081\u306B\u3001AI\u5C0E\u5165\u3001\u30D6\u30E9\u30F3\u30C9\uFF06\u30C7\u30B6\u30A4\u30F3\u6226\u7565\u3001\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\u3001\u6D77\u5916\u4E8B\u696D\u5C55\u958B\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\u3092\u30EF\u30F3\u30B9\u30C8\u30C3\u30D7\u3067\u63D0\u4F9B\u3002 \u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3068\u30AF\u30EA\u30A8\u30A4\u30C6\u30A3\u30D6\u3092\u878D\u5408\u3055\u305B\u3001\u30D3\u30B8\u30CD\u30B9\u3092\u6B21\u306E\u30B9\u30C6\u30FC\u30B8\u3078\u3068\u5C0E\u304D\u307E\u3059\u3002\"})}),fonts:[\"FS;Satoshi-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rgpqce\",\"data-styles-preset\":\"k60w8zGSy\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3078\u306E\u6311\u6226\u3068\u6210\u9577\u3092\u76EE\u6307\u3059\u4F01\u696D\u306E\u305F\u3081\u306B\u3001AI\u5C0E\u5165\u3001\u30D6\u30E9\u30F3\u30C9\uFF06\u30C7\u30B6\u30A4\u30F3\u6226\u7565\u3001\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\u3001\u6D77\u5916\u4E8B\u696D\u5C55\u958B\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\u3092\u30EF\u30F3\u30B9\u30C8\u30C3\u30D7\u3067\u63D0\u4F9B\u3002 \u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3068\u30AF\u30EA\u30A8\u30A4\u30C6\u30A3\u30D6\u3092\u878D\u5408\u3055\u305B\u3001\u30D3\u30B8\u30CD\u30B9\u3092\u6B21\u306E\u30B9\u30C6\u30FC\u30B8\u3078\u3068\u5C0E\u304D\u307E\u3059\u3002\"})}),className:\"framer-c66q3f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fSF1LhI6D\"},implicitPathVariables:undefined},{href:{webPageId:\"fSF1LhI6D\"},implicitPathVariables:undefined},{href:{webPageId:\"fSF1LhI6D\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+0+0+150+0+50+0+0+0+104.2+0},XdudTLNE7:{y:(componentViewport?.y||0)+0+0+0+80+0+40+0+0+0+78.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+0+0+170+0+60+0+0+0+127+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aiq1mg-container\",nodeId:\"OBIf_4utc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{XUCjJCiTL:resolvedLinks[1]},XdudTLNE7:{XUCjJCiTL:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonIcon,{height:\"100%\",id:\"OBIf_4utc\",layoutId:\"OBIf_4utc\",variant:\"GGXf8Sxwg\",width:\"100%\",XUCjJCiTL:resolvedLinks[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zdl91m\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+0+50+0+244.2+0),pixelHeight:3146,pixelWidth:4713,sizes:`max((min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px, 1px), 1440px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png 4713w\"}},XdudTLNE7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+80+0+40+0+225.6+0+0),pixelHeight:3146,pixelWidth:4713,sizes:`min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png 4713w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+170+0+60+0+287+0),pixelHeight:3146,pixelWidth:4713,sizes:`max(min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1px), 1440px) * 0.6 - 50px, 1px)`,src:\"https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YfbrtXRIhHez9quXO78BsWQCXM.png 4713w\"},className:\"framer-uz3shn\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5bbi8\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u8996\u70B9\u3001\u30C7\u30B6\u30A4\u30F3\u306E\u529B\u3092\u878D\u5408\u3057\u3001 \u4F01\u696D\u306E\u53EF\u80FD\u6027\u3092\u300C\u5E02\u5834\u3067\u6210\u679C\u3092\u751F\u3080\u5B9F\u8DF5\u529B\u300D\u3078\u3068\u5909\u3048\u3066\u3044\u304D\u307E\u3059\u3002\"})})},XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u8996\u70B9\u3001\u30C7\u30B6\u30A4\u30F3\u306E\u529B\u3092\u878D\u5408\u3057\u3001 \u4F01\u696D\u306E\u53EF\u80FD\u6027\u3092\u300C\u5E02\u5834\u3067\u6210\u679C\u3092\u751F\u3080\u5B9F\u8DF5\u529B\u300D\u3078\u3068\u5909\u3048\u3066\u3044\u304D\u307E\u3059\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u8996\u70B9\u3001\u30C7\u30B6\u30A4\u30F3\u306E\u529B\u3092\u878D\u5408\u3057\u3001 \u4F01\u696D\u306E\u53EF\u80FD\u6027\u3092\u300C\u5E02\u5834\u3067\u6210\u679C\u3092\u751F\u3080\u5B9F\u8DF5\u529B\u300D\u3078\u3068\u5909\u3048\u3066\u3044\u304D\u307E\u3059\u3002\"})}),className:\"framer-hzfn4q\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aks56m\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j836wr\",\"data-framer-name\":\"Fact\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-115e4l8\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"Success Rate\"})}),className:\"framer-ti9nx3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"-\"})}),className:\"framer-1aovtr2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",style:{\"--framer-text-color\":\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\"},children:\"93%\"})}),className:\"framer-l0pzca\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bz7kj8\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"Spotlight\"})}),className:\"framer-14l8cuv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aumzeq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZPWSQt23R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"ZPWSQt23R\",layoutId:\"ZPWSQt23R\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npjakj\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined},{href:{webPageId:\"P0FxuIlEW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+0+0+150+0+50+0+244.2+0+0+204},XdudTLNE7:{y:(componentViewport?.y||0)+0+0+0+80+0+40+0+225.6+0+368+0+201}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+170+0+60+0+287+0+0+192,children:/*#__PURE__*/_jsx(Container,{className:\"framer-im2mhz-container\",nodeId:\"MgaxARdeX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{kM7KukffH:resolvedLinks1[1]},XdudTLNE7:{kM7KukffH:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{EUsAmKGDr:\"\u30B5\u30FC\u30D3\u30B9\u4E00\u89A7\",height:\"100%\",id:\"MgaxARdeX\",kM7KukffH:resolvedLinks1[0],layoutId:\"MgaxARdeX\",variant:\"OAsEBPmCc\",width:\"100%\"})})})})})})]})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwlshd\",\"data-framer-name\":\"Our Cover\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvitqw\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhiyuw\",\"data-border\":true,\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4a2zyh\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsdngr\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtgzsn\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-34gxss-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JB9MbSL1D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"JB9MbSL1D\",layoutId:\"JB9MbSL1D\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-z58rui\",\"data-styles-preset\":\"mQ7v0Ys_C\",children:\"Service Area\"})}),className:\"framer-e7v9xz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-85wpe0\",\"data-styles-preset\":\"Au1LvPACY\",children:\"\u4E8B\u696D\u6210\u9577\u3092\u652F\u3048\u308B4\u3064\u306E\u30B3\u30A2\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\"})}),className:\"framer-muu9bq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-05ac31e2-74d9-46b4-a2b8-65480a11d135, rgb(13, 23, 32))\"},children:\"AI\u3001\u30C7\u30B6\u30A4\u30F3\u3001\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\u3001\u305D\u3057\u3066\u6D77\u5916\u30D3\u30B8\u30CD\u30B9\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\u306E\u77E5\u898B\u3092\u878D\u5408\u3057\u3001\u30D3\u30B8\u30CD\u30B9\u306E\u6210\u9577\u3092\u591A\u9762\u7684\u306B\u652F\u63F4\u3002\u5E02\u5834\u7AF6\u4E89\u529B\u306E\u5F37\u5316\u306F\u3082\u3061\u308D\u3093\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u306B\u304A\u3051\u308B\u65B0\u305F\u306A\u4FA1\u5024\u5275\u51FA\u3068\u6301\u7D9A\u7684\u306A\u6210\u9577\u3092\u5B9F\u73FE\u3059\u308B\u305F\u3081\u3001CORISE\u306F\u30D1\u30FC\u30C8\u30CA\u30FC\u3068\u3057\u3066\u4F01\u696D\u3068\u5171\u306B\u672A\u6765\u3092\u5207\u308A\u62D3\u304D\u307E\u3059\u3002\"})}),fonts:[\"FS;Satoshi-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",children:\"AI\u3001\u30C7\u30B6\u30A4\u30F3\u3001\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\u3001\u305D\u3057\u3066\u6D77\u5916\u30D3\u30B8\u30CD\u30B9\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\u306E\u77E5\u898B\u3092\u878D\u5408\u3057\u3001\u30D3\u30B8\u30CD\u30B9\u306E\u6210\u9577\u3092\u591A\u9762\u7684\u306B\u652F\u63F4\u3002\u5E02\u5834\u7AF6\u4E89\u529B\u306E\u5F37\u5316\u306F\u3082\u3061\u308D\u3093\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u306B\u304A\u3051\u308B\u65B0\u305F\u306A\u4FA1\u5024\u5275\u51FA\u3068\u6301\u7D9A\u7684\u306A\u6210\u9577\u3092\u5B9F\u73FE\u3059\u308B\u305F\u3081\u3001CORISE\u306F\u30D1\u30FC\u30C8\u30CA\u30FC\u3068\u3057\u3066\u4F01\u696D\u3068\u5171\u306B\u672A\u6765\u3092\u5207\u308A\u62D3\u304D\u307E\u3059\u3002\"})}),className:\"framer-yakgif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fSF1LhI6D\"},implicitPathVariables:undefined},{href:{webPageId:\"fSF1LhI6D\"},implicitPathVariables:undefined},{href:{webPageId:\"fSF1LhI6D\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+772.2+68+0+0+50+287.6},XdudTLNE7:{y:(componentViewport?.y||0)+0+1018.6+60+0+0+50+267.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+955+100+0+75+571,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13djjlp-container\",nodeId:\"inTZrN5xZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{kM7KukffH:resolvedLinks2[1]},XdudTLNE7:{kM7KukffH:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{EUsAmKGDr:\"\u304A\u554F\u5408\u305B\",height:\"100%\",id:\"inTZrN5xZ\",kM7KukffH:resolvedLinks2[0],layoutId:\"inTZrN5xZ\",variant:\"OL2bdrgkn\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+772.2+68+0+431.6},XdudTLNE7:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+1018.6+60+0+411.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 450px, 1px)`,y:(componentViewport?.y||0)+0+955+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5kg5f6-container\",nodeId:\"U5cJ5RIdg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{variant:\"QEeVP_HMS\"},XdudTLNE7:{variant:\"zL02NTsNl\"}},children:/*#__PURE__*/_jsx(ServiceList,{height:\"100%\",id:\"U5cJ5RIdg\",layoutId:\"U5cJ5RIdg\",style:{height:\"100%\",width:\"100%\"},variant:\"etQp5DR51\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lcr3b6\",\"data-framer-name\":\"About Us\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4vlxg\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tbm7sa\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6j7nof\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f9pbxl\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1othz35-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZSb6sW3iT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"ZSb6sW3iT\",layoutId:\"ZSb6sW3iT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-z58rui\",\"data-styles-preset\":\"mQ7v0Ys_C\",children:\"About Us\"})}),className:\"framer-uti9l6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-85wpe0\",\"data-styles-preset\":\"Au1LvPACY\",children:\"\u30D3\u30B8\u30CD\u30B9\u6210\u529F\u306E\u30D1\u30FC\u30C8\u30CA\u30FC\u3078\uFF1A  CORISE\u306E\u30B9\u30C8\u30FC\u30EA\u30FC\"})}),className:\"framer-1taf306\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1imtbor\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fifyie\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",children:\"CORISE\u306F\u3001AI\u6D3B\u7528\u30FB\u30C7\u30B6\u30A4\u30F3\u6226\u7565\u30FB\u30B0\u30ED\u30FC\u30D0\u30EB\u5C55\u958B\u306E\u77E5\u898B\u3092\u878D\u5408\u3057\u3001\u4F01\u696D\u306E\u7AF6\u4E89\u529B\u3068\u5E02\u5834\u4FA1\u5024\u306E\u98DB\u8E8D\u7684\u306A\u5411\u4E0A\u3092\u652F\u63F4\u3057\u307E\u3059\u3002\u9769\u65B0\u7684\u306A\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\u3068\u5B9F\u884C\u529B\u3092\u5099\u3048\u305F\u30A2\u30C9\u30D0\u30A4\u30B6\u30EA\u30FC\u3067\u3001\u8CB4\u793E\u306E\u30D3\u30B8\u30CD\u30B9\u30D3\u30B8\u30E7\u30F3\u3092\u78BA\u304B\u306A\u6210\u679C\u3078\u3068\u5C0E\u304D\u307E\u3059\u3002\"})}),className:\"framer-ze5dej\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sJd71VwAo\"},implicitPathVariables:undefined},{href:{webPageId:\"sJd71VwAo\"},implicitPathVariables:undefined},{href:{webPageId:\"sJd71VwAo\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+2036.8+80+0+0+0+0+140},XdudTLNE7:{y:(componentViewport?.y||0)+0+2255.2+60+0+0+0+108.6+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1820+100+0+0+0+0+140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oklliw-container\",nodeId:\"WAeetGHij\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{kM7KukffH:resolvedLinks3[1]},XdudTLNE7:{kM7KukffH:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{EUsAmKGDr:\"CORISE\u306B\u3064\u3044\u3066\",height:\"100%\",id:\"WAeetGHij\",kM7KukffH:resolvedLinks3[0],layoutId:\"WAeetGHij\",variant:\"OL2bdrgkn\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+2036.8+80+0+224},XdudTLNE7:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+2255.2+60+0+332.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:645,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+1820+100+0+234,children:/*#__PURE__*/_jsx(Container,{className:\"framer-284apw-container\",nodeId:\"zJfUKrLuX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{variant:\"qjO_4oj9v\"},XdudTLNE7:{variant:\"i_FN8_96c\"}},children:/*#__PURE__*/_jsx(ValueList,{height:\"100%\",id:\"zJfUKrLuX\",layoutId:\"zJfUKrLuX\",style:{width:\"100%\"},variant:\"A8CoUf7iH\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkinik\",\"data-framer-name\":\"Content Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3065.8+0),pixelHeight:457,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png\",srcSet:\"https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png 1200w\"}},XdudTLNE7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3352.8+0),pixelHeight:457,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png\",srcSet:\"https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:457,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2899+0),pixelHeight:457,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png\",srcSet:\"https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HS0dQ4lfXVEfchQC7dJieja9NoM.png 1200w\"},className:\"framer-v5m3wu\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mh1nh0\",\"data-framer-name\":\"Cover\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m0wqdr\",\"data-framer-name\":\"Inner\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ktv8vf\",\"data-border\":true,\"data-framer-name\":\"Quotes\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u300C\u5909\u5316\u306E\u6642\u4EE3\u306B\u3053\u305D\u3001\u5148\u3092\u8AAD\u3080\u77E5\u898B\u3068\u5B9F\u884C\u529B\u304C\u4FA1\u5024\u306B\u306A\u308B\u3002 CORISE\u306F\u3001AI\u30FB\u30C7\u30B6\u30A4\u30F3\u30FB\u30B0\u30ED\u30FC\u30D0\u30EB\u6226\u7565\u3092\u99C6\u4F7F\u3057\u3001 \u4F01\u696D\u306E\u6210\u9577\u3092\u78BA\u304B\u306A\u6210\u679C\u3068\u3057\u3066\u5F62\u306B\u3057\u307E\u3059\u3002\u300D\u30FC CORISE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u300C\u5909\u5316\u306E\u6642\u4EE3\u306B\u3053\u305D\u3001\u5148\u3092\u8AAD\u3080\u77E5\u898B\u3068\u5B9F\u884C\u529B\u304C\u4FA1\u5024\u306B\u306A\u308B\u3002 CORISE\u306F\u3001AI\u30FB\u30C7\u30B6\u30A4\u30F3\u30FB\u30B0\u30ED\u30FC\u30D0\u30EB\u6226\u7565\u3092\u99C6\u4F7F\u3057\u3001 \u4F01\u696D\u306E\u6210\u9577\u3092\u78BA\u304B\u306A\u6210\u679C\u3068\u3057\u3066\u5F62\u306B\u3057\u307E\u3059\u3002\u300D\u30FC CORISE\"})}),className:\"framer-15dyrea\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+3454.4},XdudTLNE7:{y:(componentViewport?.y||0)+0+3557.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1187,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3367.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r88r9t-container\",nodeId:\"wEWaRdhdU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{variant:\"CAFhcMJCX\"},XdudTLNE7:{variant:\"S3Et4JRM9\"}},children:/*#__PURE__*/_jsx(OurServices6,{b8a1J5Anc:\"\u5909\u5316\u306B\u5BFE\u5FDC\u3067\u304D\u308B\u6301\u7D9A\u53EF\u80FD\u306A\u904B\u7528\u4F53\u5236\u3092\u30B5\u30DD\u30FC\u30C8\u3002 \u904B\u7528\u6539\u5584\u3001AI\u306E\u7D99\u7D9A\u6D3B\u7528\u3001\u30DE\u30FC\u30B1\u30C3\u30C8\u5909\u5316\u3078\u306E\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u652F\u63F4\u3001\u73FE\u5730\u30D1\u30FC\u30C8\u30CA\u30FC\u3068\u306E\u9023\u643A\u5F37\u5316\u306A\u3069\u3001\u4E2D\u9577\u671F\u7684\u306B\u5B89\u5FC3\u3067\u304D\u308B\u4E8B\u696D\u904B\u55B6\u3092\u5171\u306B\u652F\u63F4\u3057\u307E\u3059\u3002\",DHGCr512V:\"\u30D3\u30B8\u30CD\u30B9\u306E\u73FE\u72B6\u3068\u672A\u6765\u3092\u6DF1\u304F\u7406\u89E3\u3057\u3001\u5171\u306B\u30ED\u30FC\u30C9\u30DE\u30C3\u30D7\u3092\u63CF\u304F\u3002 \u5E02\u5834\u52D5\u5411\u3084\u6210\u9577\u8AB2\u984C\u3092\u5171\u6709\u3057\u306A\u304C\u3089\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u8996\u70B9\u30FBAI\u6D3B\u7528\u30FB\u30D6\u30E9\u30F3\u30C9\u6226\u7565\u306A\u3069\u306E\u5207\u308A\u53E3\u304B\u3089\u3001\u6700\u9069\u306A\u6210\u9577\u6226\u7565\u3068\u5B9F\u884C\u30D7\u30E9\u30F3\u3092\u8A2D\u8A08\u3057\u307E\u3059\u3002\",dnXRTKPVe:addImageAlt({pixelHeight:1909,pixelWidth:2859,src:\"https://framerusercontent.com/images/l6uGEn2W6b9SNi6FMGBGBmWflWc.png\",srcSet:\"https://framerusercontent.com/images/l6uGEn2W6b9SNi6FMGBGBmWflWc.png?scale-down-to=512 512w,https://framerusercontent.com/images/l6uGEn2W6b9SNi6FMGBGBmWflWc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l6uGEn2W6b9SNi6FMGBGBmWflWc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l6uGEn2W6b9SNi6FMGBGBmWflWc.png 2859w\"},\"\"),ezO9JVcEz:\"\u30D3\u30B8\u30CD\u30B9\u57FA\u76E4\u306E\u69CB\u7BC9\",height:\"100%\",I6Gm0NuZs:\"\u30D6\u30E9\u30F3\u30C9\u30FB\u30B7\u30B9\u30C6\u30E0\u69CB\u7BC9\",id:\"wEWaRdhdU\",ioXYB3t55:\"\u5909\u5316\u306B\u5BFE\u5FDC\u3067\u304D\u308B\u6301\u7D9A\u53EF\u80FD\u306A\u904B\u7528\u4F53\u5236\u3092\u30B5\u30DD\u30FC\u30C8\u3002 \u904B\u7528\u6539\u5584\u3001AI\u306E\u7D99\u7D9A\u6D3B\u7528\u3001\u30DE\u30FC\u30B1\u30C3\u30C8\u5909\u5316\u3078\u306E\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u652F\u63F4\u3001\u73FE\u5730\u30D1\u30FC\u30C8\u30CA\u30FC\u3068\u306E\u9023\u643A\u5F37\u5316\u306A\u3069\u3001\u4E2D\u9577\u671F\u7684\u306B\u5B89\u5FC3\u3067\u304D\u308B\u4E8B\u696D\u904B\u55B6\u3092\u5171\u306B\u652F\u63F4\u3057\u307E\u3059\u3002\",layoutId:\"wEWaRdhdU\",Macu4JVD6:\"\u7D99\u7D9A\u7684\u306A\u904B\u7528\u30FB\u6539\u5584\",Q3pUgThjT:addImageAlt({pixelHeight:1511,pixelWidth:2007,src:\"https://framerusercontent.com/images/Kaq4070frnEOhNZR221DmA5ckfs.png\",srcSet:\"https://framerusercontent.com/images/Kaq4070frnEOhNZR221DmA5ckfs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Kaq4070frnEOhNZR221DmA5ckfs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kaq4070frnEOhNZR221DmA5ckfs.png 2007w\"},\"\"),r2zyZUdm7:\"\u76F8\u8AC7\u30FB\u6226\u7565\u8A2D\u8A08\",style:{width:\"100%\"},TVMf3I43Z:addImageAlt({pixelHeight:1909,pixelWidth:1874,src:\"https://framerusercontent.com/images/QNXmiTUQGgrnqyXfMK9DlKC5obk.png\",srcSet:\"https://framerusercontent.com/images/QNXmiTUQGgrnqyXfMK9DlKC5obk.png?scale-down-to=1024 1005w,https://framerusercontent.com/images/QNXmiTUQGgrnqyXfMK9DlKC5obk.png 1874w\"},\"\"),variant:\"ebGcyp_z3\",width:\"100%\",WZDxpUK9F:\"\u30D6\u30E9\u30F3\u30C9\u529B\u3068\u30C7\u30B8\u30BF\u30EB\u4F53\u9A13\u3067\u5E02\u5834\u3067\u306E\u7AF6\u4E89\u529B\u3092\u5F37\u5316\u3002 \u30A6\u30A7\u30D6\u30B5\u30A4\u30C8\u30FBUI/UX\u30C7\u30B6\u30A4\u30F3\u3001\u30A2\u30D7\u30EA\u30FB\u30B7\u30B9\u30C6\u30E0\u958B\u767A\u3001AI\u30BD\u30EA\u30E5\u30FC\u30B7\u30E7\u30F3\u5C0E\u5165\u306A\u3069\u3092\u901A\u3058\u3066\u3001\u30D6\u30E9\u30F3\u30C9\u4FA1\u5024\u3068\u4E8B\u696D\u52B9\u7387\u3092\u9AD8\u3081\u308B\u30D7\u30ED\u30C0\u30AF\u30C8\u3084\u30B5\u30FC\u30D3\u30B9\u3092\u69CB\u7BC9\u3057\u307E\u3059\u3002\",YgdHpelOk:addImageAlt({pixelHeight:3023,pixelWidth:4538,src:\"https://framerusercontent.com/images/b8m70sN2fJUgwTtSwWOHfxv2YG8.png\",srcSet:\"https://framerusercontent.com/images/b8m70sN2fJUgwTtSwWOHfxv2YG8.png?scale-down-to=512 512w,https://framerusercontent.com/images/b8m70sN2fJUgwTtSwWOHfxv2YG8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b8m70sN2fJUgwTtSwWOHfxv2YG8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b8m70sN2fJUgwTtSwWOHfxv2YG8.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/b8m70sN2fJUgwTtSwWOHfxv2YG8.png 4538w\"},\"\")})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ckvj3h\",\"data-framer-name\":\"Case Study\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4641.4+80),pixelHeight:484,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png\",srcSet:\"https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png 1200w\"}},XdudTLNE7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4744.4+60),pixelHeight:484,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png\",srcSet:\"https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4554.6+100),pixelHeight:484,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png\",srcSet:\"https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L7yYDjPfw5vuUMW0yQUI6IN3g.png 1200w\"},className:\"framer-1axkd69\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qhon1a\",\"data-framer-name\":\"Cover\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfyxok\",\"data-framer-name\":\"Inner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ol5pw8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6316os\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16q3y0\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kd54ze\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gole9d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QvfbVWI67\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"QvfbVWI67\",layoutId:\"QvfbVWI67\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-z58rui\",\"data-styles-preset\":\"mQ7v0Ys_C\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"UX Value\"})}),className:\"framer-13u0jms\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u6210\u679C\u306B\u30D5\u30A9\u30FC\u30AB\u30B9\u3057\u305F\u30B9\u30C8\u30FC\u30EA\u30FC\uFF1A\u5E02\u5834\u3078\u306E\u53C2\u5165\u3068\u5B9A\u7740\u3092\u5B9F\u73FE\u3059\u308B\u30D3\u30B8\u30CD\u30B9\u306E\u6700\u9069\u5316\"})}),fonts:[\"FS;Satoshi-bold\"]},XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u6210\u679C\u306B\u30D5\u30A9\u30FC\u30AB\u30B9\u3057\u305F\u30B9\u30C8\u30FC\u30EA\u30FC\uFF1A\u5E02\u5834\u3078\u306E\u53C2\u5165\u3068\u5B9A\u7740\u3092\u5B9F\u73FE\u3059\u308B\u30D3\u30B8\u30CD\u30B9\u306E\u6700\u9069\u5316\"})}),fonts:[\"FS;Satoshi-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-85wpe0\",\"data-styles-preset\":\"Au1LvPACY\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"\u6210\u679C\u306B\u30D5\u30A9\u30FC\u30AB\u30B9\u3057\u305F\u30B9\u30C8\u30FC\u30EA\u30FC\uFF1A\u5E02\u5834\u3078\u306E\u53C2\u5165\u3068\u5B9A\u7740\u3092\u5B9F\u73FE\u3059\u308B\u30D3\u30B8\u30CD\u30B9\u306E\u6700\u9069\u5316\"})}),className:\"framer-1afcm26\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XdudTLNE7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u6700\u65B0\u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3068\u30C7\u30B6\u30A4\u30F3\u306E\u529B\u3092\u6D3B\u304B\u3057\u3001\u6D77\u5916\u5E02\u5834\u3067\u306E\u30E6\u30FC\u30B6\u30FC\u7372\u5F97\u304B\u3089\u5B9A\u7740\u307E\u3067\u3092\u4E00\u8CAB\u3057\u3066\u652F\u63F4\u3002\u6226\u7565\u7684\u306AUX\u8A2D\u8A08\u3068\u4E8B\u696D\u57FA\u76E4\u306E\u6700\u9069\u5316\u306B\u3088\u308A\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3067\u6210\u679C\u306B\u3064\u306A\u304C\u308B\u30D3\u30B8\u30CD\u30B9\u6210\u9577\u3092\u5B9F\u73FE\u3057\u307E\u3059\u3002\"})}),fonts:[\"FS;Satoshi-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iy0s87\",\"data-styles-preset\":\"P1otlNDQ0\",style:{\"--framer-text-color\":\"var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, rgb(254, 254, 254))\"},children:\"CORISE\u306F\u3001\u6700\u65B0\u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3068\u30C7\u30B6\u30A4\u30F3\u306E\u529B\u3092\u6D3B\u304B\u3057\u3001\u6D77\u5916\u5E02\u5834\u3067\u306E\u30E6\u30FC\u30B6\u30FC\u7372\u5F97\u304B\u3089\u5B9A\u7740\u307E\u3067\u3092\u4E00\u8CAB\u3057\u3066\u652F\u63F4\u3002\u6226\u7565\u7684\u306AUX\u8A2D\u8A08\u3068\u4E8B\u696D\u57FA\u76E4\u306E\u6700\u9069\u5316\u306B\u3088\u308A\u3001\u30B0\u30ED\u30FC\u30D0\u30EB\u5E02\u5834\u3067\u6210\u679C\u306B\u3064\u306A\u304C\u308B\u30D3\u30B8\u30CD\u30B9\u6210\u9577\u3092\u5B9F\u73FE\u3057\u307E\u3059\u3002\"})}),className:\"framer-17ds9w3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WmjhxNYWC\"},implicitPathVariables:undefined},{href:{webPageId:\"WmjhxNYWC\"},implicitPathVariables:undefined},{href:{webPageId:\"WmjhxNYWC\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+4641.4+80+0+60+0+0+277.6},XdudTLNE7:{y:(componentViewport?.y||0)+0+4744.4+60+0+40+0+0+246.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+4554.6+100+0+80+0+0+297.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n41dz6-container\",nodeId:\"kTM3AlU3H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{kM7KukffH:resolvedLinks4[1]},XdudTLNE7:{kM7KukffH:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{EUsAmKGDr:\"\u5C0E\u5165\u4E8B\u4F8B\u3092\u898B\u308B\",height:\"100%\",id:\"kTM3AlU3H\",kM7KukffH:resolvedLinks4[0],layoutId:\"kTM3AlU3H\",variant:\"OAsEBPmCc\",width:\"100%\"})})})})})})]})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10pc69t\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j3hblw\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6zi99\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hy7wjc\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nljenj\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hb6tef-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e0sdJEMWU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"e0sdJEMWU\",layoutId:\"e0sdJEMWU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-z58rui\",\"data-styles-preset\":\"mQ7v0Ys_C\",children:\"NEWS & BLOG\"})}),className:\"framer-1ob876e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-85wpe0\",\"data-styles-preset\":\"Au1LvPACY\",children:\"\u30D3\u30B8\u30CD\u30B9\u306E\u672A\u6765\u3092\u62D3\u304F\u6700\u65B0\u30A4\u30F3\u30B5\u30A4\u30C8\"})}),className:\"framer-ueyp8y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"APrZ6qcWa\"},implicitPathVariables:undefined},{href:{webPageId:\"APrZ6qcWa\"},implicitPathVariables:undefined},{href:{webPageId:\"APrZ6qcWa\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+5243+80+0+0+0+23.6},XdudTLNE7:{y:(componentViewport?.y||0)+0+5234.6+39+0+0+0+97.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+5256.2+100+0+0+0+23.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15s39mk-container\",nodeId:\"lIRV01kUR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{kM7KukffH:resolvedLinks5[1]},XdudTLNE7:{kM7KukffH:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{EUsAmKGDr:\"\u5168\u3066\u306E\u8A18\u4E8B\",height:\"100%\",id:\"lIRV01kUR\",kM7KukffH:resolvedLinks5[0],layoutId:\"lIRV01kUR\",variant:\"bLwDLDfFm\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-geww0k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HCt69cPDZ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"HCt69cPDZ\",name:\"oYLO9TkvY\",type:\"Identifier\"},{collection:\"HCt69cPDZ\",name:\"RgwWGoDPy\",type:\"Identifier\"},{collection:\"HCt69cPDZ\",name:\"Lk_eJnj0Z\",type:\"Identifier\"},{collection:\"HCt69cPDZ\",name:\"Vq5_RAekb\",type:\"Identifier\"},{collection:\"HCt69cPDZ\",name:\"DUQex9TAW\",type:\"Identifier\"},{collection:\"HCt69cPDZ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({DUQex9TAW:DUQex9TAWHCt69cPDZ,id:idHCt69cPDZ,Lk_eJnj0Z:Lk_eJnj0ZHCt69cPDZ,oYLO9TkvY:oYLO9TkvYHCt69cPDZ,RgwWGoDPy:RgwWGoDPyHCt69cPDZ,Vq5_RAekb:Vq5_RAekbHCt69cPDZ},index)=>{oYLO9TkvYHCt69cPDZ??=\"\";RgwWGoDPyHCt69cPDZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HCt69cPDZ-${idHCt69cPDZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oYLO9TkvY:oYLO9TkvYHCt69cPDZ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oYLO9TkvY:oYLO9TkvYHCt69cPDZ},webPageId:\"le8AjigoI\"},implicitPathVariables:undefined},{href:{pathVariables:{oYLO9TkvY:oYLO9TkvYHCt69cPDZ},webPageId:\"le8AjigoI\"},implicitPathVariables:undefined},{href:{pathVariables:{oYLO9TkvY:oYLO9TkvYHCt69cPDZ},webPageId:\"le8AjigoI\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) - 30px) / 2, 100px)`,y:(componentViewport?.y||0)+0+5243+80+0+107.6+0+0},XdudTLNE7:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+5234.6+39+0+181.6+0+1018}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:469,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5256.2+100+0+117.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v9dm9o-container\",nodeId:\"eUDgXyj7J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{N1y3U2cVn:resolvedLinks6[1]},XdudTLNE7:{N1y3U2cVn:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(PostCard,{height:\"100%\",i6wo0Yiz2:enumToDisplayNameFunctions[\"Vq5_RAekb\"]?.(Vq5_RAekbHCt69cPDZ,activeLocale),id:\"eUDgXyj7J\",layoutId:\"eUDgXyj7J\",m_o1DRnjn:toResponsiveImage(Lk_eJnj0ZHCt69cPDZ),N1y3U2cVn:resolvedLinks6[0],sCWczJ1rr:RgwWGoDPyHCt69cPDZ,style:{width:\"100%\"},t_PPr6cMP:toDateString(DUQex9TAWHCt69cPDZ,activeLocaleCode),width:\"100%\"})})})})})})})},idHCt69cPDZ);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h78hv3\",\"data-framer-name\":\"Client List\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rorutf\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xj6vt\",\"data-border\":true,\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7cbeja-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Fp21IAqaC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, rgb(254, 91, 44))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"Fp21IAqaC\",layoutId:\"Fp21IAqaC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-123dqcg\",\"data-styles-preset\":\"MkVQUISmr\",children:\"Our Trusted Partner\"})}),className:\"framer-1x4zd1y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pi7svm\",\"data-border\":true,\"data-framer-name\":\"List\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{width:`max(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) - 220px, 1px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+6478.6+30+0+21},XdudTLNE7:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+6981.2+30+0+102+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 271px, 1px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+6042.8+40+0+21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mau14h-container\",nodeId:\"Cv0Mld4rk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ClientTicker,{height:\"100%\",id:\"Cv0Mld4rk\",layoutId:\"Cv0Mld4rk\",style:{width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{y:(componentViewport?.y||0)+0+6640.6},XdudTLNE7:{y:(componentViewport?.y||0)+0+7243.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1053,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6224.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lhk2qf-container\",nodeId:\"kvwlSdg4P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9Mh5D5HP:{variant:\"FgQ8atD3E\"},XdudTLNE7:{variant:\"Ixh7b3vpe\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kvwlSdg4P\",layoutId:\"kvwlSdg4P\",style:{width:\"100%\"},variant:\"VIR7yrZy3\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HeUBC.framer-lux5qc, .framer-HeUBC .framer-lux5qc { display: block; }\",\".framer-HeUBC.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, #fefefe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-HeUBC .framer-1eenar3 { 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-HeUBC .framer-1ob0z2 { 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: center; overflow: visible; padding: 170px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-1pr5mc6-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-HeUBC .framer-1mklh0s { 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: hidden; padding: 60px 50px 100px 50px; position: relative; width: 100%; z-index: 3; }\",\".framer-HeUBC .framer-1bnv7it { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-kgwb2s { 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 50px 0px 50px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-9ib36a { 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: hidden; padding: 0px; position: relative; width: 99%; }\",\".framer-HeUBC .framer-28nu9p, .framer-HeUBC .framer-1sk2m1d, .framer-HeUBC .framer-hzfn4q, .framer-HeUBC .framer-muu9bq, .framer-HeUBC .framer-yakgif, .framer-HeUBC .framer-1taf306, .framer-HeUBC .framer-ze5dej, .framer-HeUBC .framer-1afcm26, .framer-HeUBC .framer-17ds9w3, .framer-HeUBC .framer-ueyp8y { --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-HeUBC .framer-14lbvcy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-c66q3f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 43%; word-break: break-word; word-wrap: break-word; }\",\".framer-HeUBC .framer-aiq1mg-container, .framer-HeUBC .framer-im2mhz-container, .framer-HeUBC .framer-13djjlp-container, .framer-HeUBC .framer-1oklliw-container, .framer-HeUBC .framer-1n41dz6-container, .framer-HeUBC .framer-15s39mk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HeUBC .framer-zdl91m, .framer-HeUBC .framer-tbm7sa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-uz3shn { aspect-ratio: 1.8047337278106508 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 338px); overflow: visible; position: relative; width: 1px; }\",\".framer-HeUBC .framer-g5bbi8 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-HeUBC .framer-1aks56m, .framer-HeUBC .framer-1npjakj { background-color: var(--token-3487f23d-82c4-4b48-bcf6-00c7d51729f5, rgba(247, 247, 247, 0.4)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-HeUBC .framer-j836wr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-115e4l8, .framer-HeUBC .framer-bz7kj8 { --border-bottom-width: 1px; --border-color: var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, #fefefe); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 20px 8px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HeUBC .framer-ti9nx3, .framer-HeUBC .framer-1aovtr2, .framer-HeUBC .framer-l0pzca, .framer-HeUBC .framer-14l8cuv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HeUBC .framer-aumzeq-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-HeUBC .framer-1jwlshd { 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: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-1dvitqw { align-content: center; align-items: center; background-color: var(--token-c28a4919-a923-4b06-a37f-6412df3a47f4, #f7f7f7); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-xhiyuw { --border-bottom-width: 1px; --border-color: var(--token-2ffd52ff-00ba-42d3-86d8-14ef7bd3aecb, rgba(13, 23, 32, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-c28a4919-a923-4b06-a37f-6412df3a47f4, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 75px 50px 75px 50px; position: relative; width: 450px; z-index: 1; }\",\".framer-HeUBC .framer-4a2zyh { 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-HeUBC .framer-1bsdngr, .framer-HeUBC .framer-16q3y0 { 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-HeUBC .framer-gtgzsn, .framer-HeUBC .framer-f9pbxl, .framer-HeUBC .framer-1kd54ze, .framer-HeUBC .framer-1nljenj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-34gxss-container, .framer-HeUBC .framer-1othz35-container, .framer-HeUBC .framer-gole9d-container, .framer-HeUBC .framer-hb6tef-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-HeUBC .framer-e7v9xz, .framer-HeUBC .framer-uti9l6, .framer-HeUBC .framer-15dyrea, .framer-HeUBC .framer-13u0jms, .framer-HeUBC .framer-1ob876e, .framer-HeUBC .framer-1x4zd1y { --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-HeUBC .framer-5kg5f6-container { flex: 1 0 0px; height: 765px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-lcr3b6, .framer-HeUBC .framer-10pc69t { 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: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-1r4vlxg, .framer-HeUBC .framer-j3hblw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-6j7nof, .framer-HeUBC .framer-1hy7wjc { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-1imtbor { align-self: stretch; background-color: var(--token-6c84a718-dc96-465c-a3f7-ed61dcc74975, #fe5b2c); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-HeUBC .framer-1fifyie { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-284apw-container, .framer-HeUBC .framer-1r88r9t-container, .framer-HeUBC .framer-1lhk2qf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HeUBC .framer-gkinik { 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: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-v5m3wu, .framer-HeUBC .framer-1axkd69 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-1mh1nh0 { align-content: center; align-items: center; background-color: var(--token-8071d812-8275-4aa4-b43a-65a228264b3a, rgba(0, 0, 0, 0.6)); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-1m0wqdr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 150px 100px 150px 100px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-ktv8vf { --border-bottom-width: 0px; --border-color: var(--token-fa9d89b7-843b-4d0d-9885-1b056087545f, #fefefe); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: hidden; padding: 20px 50px 20px 50px; position: relative; width: 60%; }\",\".framer-HeUBC .framer-ckvj3h { 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: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-qhon1a { align-content: center; align-items: center; background-color: var(--token-d6aad865-caf1-4e6c-a47c-c3e227bb24b8, rgba(0, 0, 0, 0.3)); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-dfyxok { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-ol5pw8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 65%; }\",\".framer-HeUBC .framer-6316os { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-q6zi99 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-geww0k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-v9dm9o-container, .framer-HeUBC .framer-mau14h-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-HeUBC .framer-1h78hv3 { 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: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-HeUBC .framer-rorutf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HeUBC .framer-18xj6vt { --border-bottom-width: 1px; --border-color: var(--token-2ffd52ff-00ba-42d3-86d8-14ef7bd3aecb, rgba(13, 23, 32, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 20px 30px 20px; position: relative; width: 271px; }\",\".framer-HeUBC .framer-7cbeja-container { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-HeUBC .framer-1pi7svm { --border-bottom-width: 1px; --border-color: var(--token-2ffd52ff-00ba-42d3-86d8-14ef7bd3aecb, rgba(13, 23, 32, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-HeUBC[data-border=\"true\"]::after, .framer-HeUBC [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-HeUBC.framer-72rtr7 { width: 810px; } .framer-HeUBC .framer-1ob0z2 { padding: 150px 0px 0px 0px; } .framer-HeUBC .framer-1mklh0s { padding: 50px 30px 80px 30px; } .framer-HeUBC .framer-1bnv7it { gap: 60px; } .framer-HeUBC .framer-kgwb2s { padding: 0px 30px 0px 30px; } .framer-HeUBC .framer-9ib36a { width: 100%; } .framer-HeUBC .framer-c66q3f { order: 0; width: 61%; } .framer-HeUBC .framer-aiq1mg-container { order: 1; } .framer-HeUBC .framer-zdl91m, .framer-HeUBC .framer-q6zi99 { gap: 30px; } .framer-HeUBC .framer-uz3shn { align-self: stretch; aspect-ratio: unset; height: auto; } .framer-HeUBC .framer-g5bbi8 { align-content: center; align-items: center; align-self: unset; flex: 1 0 0px; gap: 20px; height: min-content; width: 1px; } .framer-HeUBC .framer-j836wr { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-HeUBC .framer-1jwlshd { padding: 68px 0px 0px 0px; } .framer-HeUBC .framer-1dvitqw { flex-direction: column; } .framer-HeUBC .framer-xhiyuw { align-self: unset; gap: 80px; height: min-content; justify-content: center; padding: 50px 30px 50px 30px; width: 100%; } .framer-HeUBC .framer-5kg5f6-container { flex: none; width: 100%; } .framer-HeUBC .framer-lcr3b6, .framer-HeUBC .framer-10pc69t { padding: 80px 30px 80px 30px; } .framer-HeUBC .framer-1r4vlxg, .framer-HeUBC .framer-j3hblw { gap: 40px; } .framer-HeUBC .framer-gkinik { padding: 0px 0px 80px 0px; } .framer-HeUBC .framer-1m0wqdr { padding: 120px 80px 120px 80px; } .framer-HeUBC .framer-ktv8vf { padding: 20px 30px 20px 30px; width: 80%; } .framer-HeUBC .framer-ckvj3h { padding: 80px 0px 80px 0px; } .framer-HeUBC .framer-qhon1a { padding: 60px 30px 60px 30px; } .framer-HeUBC .framer-ol5pw8 { gap: 80px; width: 85%; } .framer-HeUBC .framer-geww0k { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(100px, 1fr)); justify-content: center; } .framer-HeUBC .framer-v9dm9o-container { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-HeUBC .framer-1h78hv3 { padding: 30px; } .framer-HeUBC .framer-18xj6vt { width: 220px; }}\",\"@media (max-width: 809px) { .framer-HeUBC.framer-72rtr7 { width: 390px; } .framer-HeUBC .framer-1ob0z2 { padding: 80px 0px 0px 0px; } .framer-HeUBC .framer-1mklh0s { padding: 40px 20px 60px 20px; } .framer-HeUBC .framer-1bnv7it, .framer-HeUBC .framer-1r4vlxg, .framer-HeUBC .framer-j3hblw { gap: 40px; } .framer-HeUBC .framer-kgwb2s { gap: 0px; padding: 0px; } .framer-HeUBC .framer-9ib36a, .framer-HeUBC .framer-18xj6vt { width: 100%; } .framer-HeUBC .framer-14lbvcy { flex-direction: column; gap: 3px; } .framer-HeUBC .framer-c66q3f { order: 1; width: 100%; } .framer-HeUBC .framer-aiq1mg-container { order: 0; } .framer-HeUBC .framer-zdl91m { flex-direction: column; gap: 30px; } .framer-HeUBC .framer-uz3shn { flex: none; height: var(--framer-aspect-ratio-supported, 194px); width: 100%; } .framer-HeUBC .framer-g5bbi8 { align-self: unset; gap: 20px; height: min-content; width: 100%; } .framer-HeUBC .framer-j836wr { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-HeUBC .framer-1jwlshd { padding: 60px 0px 0px 0px; } .framer-HeUBC .framer-1dvitqw, .framer-HeUBC .framer-rorutf { flex-direction: column; } .framer-HeUBC .framer-xhiyuw { align-self: unset; gap: 60px; height: min-content; justify-content: center; padding: 50px 30px 50px 30px; width: 100%; } .framer-HeUBC .framer-5kg5f6-container, .framer-HeUBC .framer-6j7nof, .framer-HeUBC .framer-1fifyie, .framer-HeUBC .framer-1hy7wjc, .framer-HeUBC .framer-v9dm9o-container { flex: none; width: 100%; } .framer-HeUBC .framer-lcr3b6 { padding: 60px 20px 60px 20px; } .framer-HeUBC .framer-tbm7sa { flex-direction: column; gap: 20px; } .framer-HeUBC .framer-1imtbor { align-self: unset; height: 1px; width: 100%; } .framer-HeUBC .framer-gkinik { padding: 0px 0px 15px 0px; } .framer-HeUBC .framer-1m0wqdr { padding: 65px 30px 65px 30px; } .framer-HeUBC .framer-ktv8vf { flex: 1 0 0px; padding: 20px 0px 20px 15px; width: 1px; } .framer-HeUBC .framer-ckvj3h { padding: 60px 0px 60px 0px; } .framer-HeUBC .framer-qhon1a { padding: 40px 20px 40px 20px; } .framer-HeUBC .framer-ol5pw8 { flex: 1 0 0px; gap: 60px; width: 1px; } .framer-HeUBC .framer-6316os { gap: 16px; } .framer-HeUBC .framer-1kd54ze { padding: 6px 0px 6px 0px; } .framer-HeUBC .framer-10pc69t { padding: 39px 20px 39px 20px; } .framer-HeUBC .framer-q6zi99 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; } .framer-HeUBC .framer-geww0k { flex-direction: column; gap: 40px; } .framer-HeUBC .framer-1h78hv3 { padding: 30px 20px 30px 20px; } .framer-HeUBC .framer-1pi7svm { align-self: unset; flex: none; height: min-content; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7276\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i9Mh5D5HP\":{\"layout\":[\"fixed\",\"auto\"]},\"XdudTLNE7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-HeUBC\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7276,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...HeaderFonts,...ButtonIconFonts,...PhosphorFonts,...ButtonPrimaryFonts,...ServiceListFonts,...ValueListFonts,...OurServices6Fonts,...PostCardFonts,...ClientTickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7276\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i9Mh5D5HP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XdudTLNE7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "description", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hlDZK6G8V", "bqPcQz8Hy", "zyFfRzj1N", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText", "x", "css", "Frameri08yZ8or5", "withCSS", "i08yZ8or5_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "ValueCardFonts", "getFonts", "i08yZ8or5_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerFlh61scvr", "withCSS", "Flh61scvr_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "number", "serviceTitle", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cpz1nSh5H", "q8WLrFaEO", "mOQ1g4GPC", "JNxREdFTV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapw86u1", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerHQuW57l9U", "withCSS", "HQuW57l9U_default", "addPropertyControls", "ControlType", "addFonts", "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", "buttonText", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "EUsAmKGDr", "kM7KukffH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerpo3l5NXyw", "withCSS", "po3l5NXyw_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "ButtonPrimary2Fonts", "po3l5NXyw_default", "ServiceCard02Fonts", "HQuW57l9U_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description01", "description02", "description03", "description04", "height", "id", "image01", "image02", "image03", "image04", "service01", "service02", "service03", "service04", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "r2zyZUdm7", "DHGCr512V", "TVMf3I43Z", "ezO9JVcEz", "WZDxpUK9F", "dnXRTKPVe", "I6Gm0NuZs", "ioXYB3t55", "Q3pUgThjT", "Macu4JVD6", "b8a1J5Anc", "YgdHpelOk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "JNxREdFTV10q6juk", "args", "JNxREdFTVk39evf", "JNxREdFTVzhvayi", "JNxREdFTV5ho14g", "JNxREdFTV1gpi000", "JNxREdFTV1hakpzr", "JNxREdFTV19l7y4g", "JNxREdFTV15yj514", "JNxREdFTVtvm1st", "JNxREdFTVv9ur1o", "JNxREdFTVg2wouw", "JNxREdFTVhk5j03", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "ResolveLinks", "resolvedLinks", "Image2", "getLoadingLazyAtYPosition", "css", "FramerMD7wvy7Lb", "withCSS", "MD7wvy7Lb_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "prefix", "value", "suffix", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "id", "image", "number", "serviceTitle", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "vre6NzGxW", "ZyojuSC4s", "ugeiSLMj7", "Bkv29i9gq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "textContent", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "css", "FramereRmnJYuUJ", "withCSS", "eRmnJYuUJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ServiceCard01Fonts", "getFonts", "eRmnJYuUJ_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerwtlqhoXid", "withCSS", "wtlqhoXid_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "UKj31YHf8_default", "ButtonIconFonts", "sKpHNIy0M_default", "PhosphorFonts", "Icon", "ButtonPrimaryFonts", "ZuzZGbilr_default", "ServiceListFonts", "wtlqhoXid_default", "ValueListFonts", "Flh61scvr_default", "OurServices6Fonts", "MD7wvy7Lb_default", "PostCardFonts", "vqhT02enO_default", "ClientTickerFonts", "AMw2fPTdD_default", "FooterFonts", "tlQ3WT15i_default", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "oYLO9TkvYHCt69cPDZ", "RgwWGoDPyHCt69cPDZ", "Lk_eJnj0ZHCt69cPDZ", "Vq5_RAekbHCt69cPDZ", "DUQex9TAWHCt69cPDZ", "idHCt69cPDZ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "PropertyOverrides2", "UKj31YHf8_default", "x", "RichText", "ResolveLinks", "resolvedLinks", "sKpHNIy0M_default", "Icon", "resolvedLinks1", "ZuzZGbilr_default", "resolvedLinks2", "wtlqhoXid_default", "resolvedLinks3", "Flh61scvr_default", "MD7wvy7Lb_default", "resolvedLinks4", "resolvedLinks5", "ChildrenCanSuspend", "xluePAuT7_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks6", "vqhT02enO_default", "enumToDisplayNameFunctions", "AMw2fPTdD_default", "tlQ3WT15i_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HeaderFonts", "ButtonIconFonts", "PhosphorFonts", "ButtonPrimaryFonts", "ServiceListFonts", "ValueListFonts", "OurServices6Fonts", "PostCardFonts", "ClientTickerFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
