{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/AmTMR4oMLBC1OSERpBKL/bIqaSLhhTYRJxdHb0dj7/KWdT3hary.js", "ssg:https://framerusercontent.com/modules/R5A3fJAzL874Bp0VbOHk/IyaY1H3kjIRiR218ovJA/mWwTPCcgl.js", "ssg:https://framerusercontent.com/modules/5RLpbzSntHhhN3hFPavv/satEzXYqsFms3rudVAtm/qbIMhevOh.js", "ssg:https://framerusercontent.com/modules/jEoQau01ovIvhASrXFRG/4FnXiYmpfhttsNyU8vtt/RcI3KVpws.js", "ssg:https://framerusercontent.com/modules/IX54Lg8kensseTxGeMTc/8qayUdnC8W8Ab5treBxc/fRuwfBP8x.js", "ssg:https://framerusercontent.com/modules/zUTtnRlxtvVKjE2W1aiR/HpNU7Z03uOpPEwzAqtP7/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){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 infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4f5e97b)\nimport{jsx as r}from\"react/jsx-runtime\";import{addFonts as e,addPropertyControls as a,ControlType as i,cx as t,getFonts as m,Image as f,useLocaleInfo as l,useVariantState as n,withCSS as d}from\"framer\";import{LayoutGroup as o,motion as s,MotionConfigContext as c}from\"framer-motion\";import*as p from\"react\";import g from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";let h=m(g),u=[\"DjkuBMsT4\",\"pGeYMBRpc\",\"LZr6rygte\",\"SSqrwF7k3\"],y=\"framer-XiRQO\",O={DjkuBMsT4:\"framer-v-9xyl8d\",LZr6rygte:\"framer-v-12fpdrs\",pGeYMBRpc:\"framer-v-ci81h0\",SSqrwF7k3:\"framer-v-1sthx0j\"};function R(r,...e){let a={};return null==e||e.forEach(e=>e&&Object.assign(a,r[e])),a;}let Q={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},X=({value:e,children:a})=>{let i=p.useContext(c),t=null!=e?e:i.transition,m=p.useMemo(()=>({...i,transition:t}),[JSON.stringify(t)]);return /*#__PURE__*/r(c.Provider,{value:m,children:a});},x={Desktop:\"DjkuBMsT4\",Phone:\"LZr6rygte\",Tablet:\"pGeYMBRpc\",Variant:\"SSqrwF7k3\"},b=({height:r,id:e,width:a,...i})=>{var t,m;return{...i,variant:null!==(m=null!==(t=x[i.variant])&&void 0!==t?t:i.variant)&&void 0!==m?m:\"DjkuBMsT4\"};},v=(r,e)=>e.join(\"-\")+r.layoutDependency,k=/*#__PURE__*/p.forwardRef(function(e,a){let{activeLocale:i}=l(),{style:m,className:d,layoutId:c,variant:h,...y}=b(e),{baseVariant:x,classNames:k,gestureVariant:j,setGestureState:w,setVariant:D,transition:W,variants:N}=n({cycleOrder:u,defaultVariant:\"DjkuBMsT4\",transitions:Q,variant:h,variantClassNames:O}),H=v(e,N),I=p.useRef(null),q=p.useId();return /*#__PURE__*/r(o,{id:null!=c?c:q,children:/*#__PURE__*/r(s.div,{initial:h,animate:N,onHoverStart:()=>w({isHovered:!0}),onHoverEnd:()=>w({isHovered:!1}),onTapStart:()=>w({isPressed:!0}),onTap:()=>w({isPressed:!1}),onTapCancel:()=>w({isPressed:!1}),className:t(\"framer-XiRQO\",...[],k),style:{display:\"contents\"},children:/*#__PURE__*/r(X,{value:W,children:/*#__PURE__*/r(s.div,{...y,className:t(\"framer-9xyl8d\",d),\"data-framer-name\":\"Desktop\",layoutDependency:H,layoutId:\"DjkuBMsT4\",ref:null!=a?a:I,style:{...m},...R({LZr6rygte:{\"data-framer-name\":\"Phone\"},pGeYMBRpc:{\"data-framer-name\":\"Tablet\"},SSqrwF7k3:{\"data-framer-name\":void 0}},x,j),children:/*#__PURE__*/r(s.div,{className:\"framer-ook5or-container\",layoutDependency:H,layoutId:\"xpZO3BFsg-container\",children:/*#__PURE__*/r(g,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:!1,fadeInset:0,fadeWidth:25,overflow:!1},gap:4,height:\"100%\",hoverFactor:1,id:\"xpZO3BFsg\",layoutId:\"xpZO3BFsg\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:!0,paddingRight:0,paddingTop:0,sizingOptions:{heightType:!0,widthType:!0},slots:[/*#__PURE__*/r(s.div,{className:\"framer-1g9m9os\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"Q6rQQN0sp\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/7yPxddZAqMPpG94VE3LArjBSeo.jpg\"},className:\"framer-19ioi1w\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"lGiCJea1u\"})}),/*#__PURE__*/r(s.div,{className:\"framer-t9t39u\",\"data-framer-name\":\"2\",layoutDependency:H,layoutId:\"aTUdLvxD9\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/n5uRLkgHHlhEGJyNPvasqyCethM.jpg\"},className:\"framer-1uujym9\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"oMGe_NsdE\"})}),/*#__PURE__*/r(s.div,{className:\"framer-1rd549z\",\"data-framer-name\":\"3\",layoutDependency:H,layoutId:\"slLJWCeQt\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/HsRUg7Zr5SLg2XPQkdSatWFzXj8.jpg\"},className:\"framer-1xh9v90\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"jUkrRrenW\"})}),/*#__PURE__*/r(s.div,{className:\"framer-1tkry21\",\"data-framer-name\":\"4\",layoutDependency:H,layoutId:\"WKinWs0xt\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/zlTNJoNaBEQ510BXoYZKLadCOg.jpg\"},className:\"framer-moqqlk\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"ONr1MMWBP\"})}),/*#__PURE__*/r(s.div,{className:\"framer-omrdv3\",\"data-framer-name\":\"5\",layoutDependency:H,layoutId:\"hgUB5n5SB\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/6TQ9OJan96PoEYk4bTWifGtAYE.jpg\"},className:\"framer-1yobzx5\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"qB8FksOyY\"})}),/*#__PURE__*/r(s.div,{className:\"framer-1aasgbt\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"ZstmRZYix\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/06U6JTIHlISylMWYDiCZuNsf0.jpg\"},className:\"framer-1oijzac\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"XuSSoiVNf\"})}),/*#__PURE__*/r(s.div,{className:\"framer-14oqjef\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"Mzq6YtUfF\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/IUSMCUA1pYjSGOQWNbW3R24Gs.jpg\"},className:\"framer-1j28kqw\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"BsGn4zsVY\"})}),/*#__PURE__*/r(s.div,{className:\"framer-ccu18i\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"UHEtbj2md\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/RkyemYSW7yoPlOEIFPWrlD1sKd8.jpg\"},className:\"framer-1u3qdr6\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"qBXGO953X\"})}),/*#__PURE__*/r(s.div,{className:\"framer-cdtfl4\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"W2UVaA7TS\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/SQoBANN4B7BgnePaQs5dC1mAosU.jpg\"},className:\"framer-1fnpz8o\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"boWtnLzZc\"})}),/*#__PURE__*/r(s.div,{className:\"framer-mj9icw\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"p12itV2BR\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/C8viAH9Rh21oG8Ehzk4Z6AACs4.jpg\"},className:\"framer-3xnix4\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"Fsfz11OFo\"})}),/*#__PURE__*/r(s.div,{className:\"framer-1wvqduj\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"h1mmLE9XH\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/duNaLP2y0yHy54no65Cpfcs29WI.jpg\"},className:\"framer-1vjsg09\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"S_6ZLoa89\"})}),/*#__PURE__*/r(s.div,{className:\"framer-cuuay9\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"PNc579_Mn\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/LDT4Bo9iTe38RIljDuWZsDwUpM.jpg\"},className:\"framer-14nf8cy\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"XrmwYXT5p\"})}),/*#__PURE__*/r(s.div,{className:\"framer-1lh9xdr\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"bWkAIXlZm\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/1fLoewYx0HKCVorHoQU5vOtH8i8.jpg\"},className:\"framer-1m0cwzc\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"bJ_pda1sT\"})}),/*#__PURE__*/r(s.div,{className:\"framer-rl6q9i\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"aGzkwqsUd\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/KF8o68tCvZBIVrXhFXuXFb1IO8Q.jpg\"},className:\"framer-1dj26vv\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"I2G6Htjtb\"})}),/*#__PURE__*/r(s.div,{className:\"framer-9ggpre\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"fuhoaYh3O\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/2WtyC1UsZqHS4I3wAen92me1bKE.jpg\"},className:\"framer-bc5lzf\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"s79IBqbj9\"})}),/*#__PURE__*/r(s.div,{className:\"framer-nbeo0e\",\"data-framer-name\":\"1\",layoutDependency:H,layoutId:\"YCohQwqsQ\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/r(f,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:500,pixelHeight:300,pixelWidth:500,src:\"https://framerusercontent.com/images/nwUQhVDRcncD3dNzwbXaWBg88.jpg\"},className:\"framer-1cc0rtn\",\"data-framer-name\":\"firma_glas\",layoutDependency:H,layoutId:\"cWXs2ymQE\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...R({SSqrwF7k3:{direction:\"right\"}},x,j)})})})})})});}),j=['.framer-XiRQO [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-XiRQO .framer-1w6r6vz { display: block; }\",\".framer-XiRQO .framer-9xyl8d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-XiRQO .framer-ook5or-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-XiRQO .framer-1g9m9os, .framer-XiRQO .framer-t9t39u, .framer-XiRQO .framer-1rd549z, .framer-XiRQO .framer-1tkry21, .framer-XiRQO .framer-omrdv3, .framer-XiRQO .framer-1aasgbt, .framer-XiRQO .framer-14oqjef, .framer-XiRQO .framer-ccu18i, .framer-XiRQO .framer-cdtfl4, .framer-XiRQO .framer-mj9icw, .framer-XiRQO .framer-1wvqduj, .framer-XiRQO .framer-cuuay9, .framer-XiRQO .framer-1lh9xdr, .framer-XiRQO .framer-rl6q9i, .framer-XiRQO .framer-9ggpre, .framer-XiRQO .framer-nbeo0e { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 120px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 120px; }\",\".framer-XiRQO .framer-19ioi1w, .framer-XiRQO .framer-1uujym9, .framer-XiRQO .framer-1xh9v90, .framer-XiRQO .framer-moqqlk, .framer-XiRQO .framer-1yobzx5, .framer-XiRQO .framer-1oijzac, .framer-XiRQO .framer-1j28kqw, .framer-XiRQO .framer-1u3qdr6, .framer-XiRQO .framer-1fnpz8o, .framer-XiRQO .framer-3xnix4, .framer-XiRQO .framer-1vjsg09, .framer-XiRQO .framer-14nf8cy, .framer-XiRQO .framer-1m0cwzc, .framer-XiRQO .framer-1dj26vv, .framer-XiRQO .framer-bc5lzf, .framer-XiRQO .framer-1cc0rtn { aspect-ratio: 1.6666666666666667 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XiRQO .framer-9xyl8d, .framer-XiRQO .framer-1g9m9os, .framer-XiRQO .framer-t9t39u, .framer-XiRQO .framer-1rd549z, .framer-XiRQO .framer-1tkry21, .framer-XiRQO .framer-omrdv3, .framer-XiRQO .framer-1aasgbt, .framer-XiRQO .framer-14oqjef, .framer-XiRQO .framer-ccu18i, .framer-XiRQO .framer-cdtfl4, .framer-XiRQO .framer-mj9icw, .framer-XiRQO .framer-1wvqduj, .framer-XiRQO .framer-cuuay9, .framer-XiRQO .framer-1lh9xdr, .framer-XiRQO .framer-rl6q9i, .framer-XiRQO .framer-9ggpre, .framer-XiRQO .framer-nbeo0e { gap: 0px; } .framer-XiRQO .framer-9xyl8d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XiRQO .framer-9xyl8d > :first-child { margin-top: 0px; } .framer-XiRQO .framer-9xyl8d > :last-child { margin-bottom: 0px; } .framer-XiRQO .framer-1g9m9os > *, .framer-XiRQO .framer-t9t39u > *, .framer-XiRQO .framer-1rd549z > *, .framer-XiRQO .framer-1tkry21 > *, .framer-XiRQO .framer-omrdv3 > *, .framer-XiRQO .framer-1aasgbt > *, .framer-XiRQO .framer-14oqjef > *, .framer-XiRQO .framer-ccu18i > *, .framer-XiRQO .framer-cdtfl4 > *, .framer-XiRQO .framer-mj9icw > *, .framer-XiRQO .framer-1wvqduj > *, .framer-XiRQO .framer-cuuay9 > *, .framer-XiRQO .framer-1lh9xdr > *, .framer-XiRQO .framer-rl6q9i > *, .framer-XiRQO .framer-9ggpre > *, .framer-XiRQO .framer-nbeo0e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XiRQO .framer-1g9m9os > :first-child, .framer-XiRQO .framer-t9t39u > :first-child, .framer-XiRQO .framer-1rd549z > :first-child, .framer-XiRQO .framer-1tkry21 > :first-child, .framer-XiRQO .framer-omrdv3 > :first-child, .framer-XiRQO .framer-1aasgbt > :first-child, .framer-XiRQO .framer-14oqjef > :first-child, .framer-XiRQO .framer-ccu18i > :first-child, .framer-XiRQO .framer-cdtfl4 > :first-child, .framer-XiRQO .framer-mj9icw > :first-child, .framer-XiRQO .framer-1wvqduj > :first-child, .framer-XiRQO .framer-cuuay9 > :first-child, .framer-XiRQO .framer-1lh9xdr > :first-child, .framer-XiRQO .framer-rl6q9i > :first-child, .framer-XiRQO .framer-9ggpre > :first-child, .framer-XiRQO .framer-nbeo0e > :first-child { margin-left: 0px; } .framer-XiRQO .framer-1g9m9os > :last-child, .framer-XiRQO .framer-t9t39u > :last-child, .framer-XiRQO .framer-1rd549z > :last-child, .framer-XiRQO .framer-1tkry21 > :last-child, .framer-XiRQO .framer-omrdv3 > :last-child, .framer-XiRQO .framer-1aasgbt > :last-child, .framer-XiRQO .framer-14oqjef > :last-child, .framer-XiRQO .framer-ccu18i > :last-child, .framer-XiRQO .framer-cdtfl4 > :last-child, .framer-XiRQO .framer-mj9icw > :last-child, .framer-XiRQO .framer-1wvqduj > :last-child, .framer-XiRQO .framer-cuuay9 > :last-child, .framer-XiRQO .framer-1lh9xdr > :last-child, .framer-XiRQO .framer-rl6q9i > :last-child, .framer-XiRQO .framer-9ggpre > :last-child, .framer-XiRQO .framer-nbeo0e > :last-child { margin-right: 0px; } }\",\".framer-XiRQO.framer-v-ci81h0 .framer-9xyl8d { width: 810px; }\",\".framer-XiRQO.framer-v-12fpdrs .framer-9xyl8d { width: 390px; }\",\".framer-XiRQO.framer-v-12fpdrs .framer-ook5or-container { height: 60px; }\"],w=d(k,j,\"framer-XiRQO\");export default w;w.displayName=\"Client Logos Copy 2\",w.defaultProps={height:120,width:1200},a(w,{variant:{options:[\"DjkuBMsT4\",\"pGeYMBRpc\",\"LZr6rygte\",\"SSqrwF7k3\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Variant\"],title:\"Variant\",type:i.Enum}}),e(w,[...h]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKWdT3hary\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pGeYMBRpc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LZr6rygte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SSqrwF7k3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"120\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KWdT3hary.map", "// Generated by Framer (d0e15c0)\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 sharedStyle from\"https://framerusercontent.com/modules/e8MwzCzFaOxGu2YzXDbh/Li9D14Oc58xtu42zEWdB/bK5YQqvLX.js\";const enabledGestures={ABBYIx0g5:{hover:true},u_U0Dtq29:{hover:true}};const cycleOrder=[\"ABBYIx0g5\",\"u_U0Dtq29\"];const serializationHash=\"framer-OWVIK\";const variantClassNames={ABBYIx0g5:\"framer-v-11i4f6l\",u_U0Dtq29:\"framer-v-1et0trt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{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 transition1={delay:.1,duration:.6,ease:[0,.69,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"ABBYIx0g5\",Mob:\"u_U0Dtq29\"};const getProps=({color,colorActive,height,id,image,image2,industry,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,AAlCMQWh5:(_ref=color!==null&&color!==void 0?color:props.AAlCMQWh5)!==null&&_ref!==void 0?_ref:'var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34)) /* {\"name\":\"text/default\"} */',dO8LNaXW9:(_ref1=colorActive!==null&&colorActive!==void 0?colorActive:props.dO8LNaXW9)!==null&&_ref1!==void 0?_ref1:'var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205)) /* {\"name\":\"Accent\"} */',eetAYFyiL:(_ref2=image!==null&&image!==void 0?image:props.eetAYFyiL)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=512 341w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=1024 682w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=2048 1365w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=4096 2730w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg 4447w\"},J2MwXYUgU:(_ref3=image2!==null&&image2!==void 0?image2:props.J2MwXYUgU)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=512 341w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=1024 682w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=2048 1365w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg?scale-down-to=4096 2730w, https://framerusercontent.com/images/gmP0LP8gx2ragPF1HoajMIXpLY.jpg 4447w\"},O4i2760fR:(_ref4=industry!==null&&industry!==void 0?industry:props.O4i2760fR)!==null&&_ref4!==void 0?_ref4:\"Fintech\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"ABBYIx0g5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,O4i2760fR,eetAYFyiL,AAlCMQWh5,dO8LNaXW9,J2MwXYUgU,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ABBYIx0g5\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-OWVIK\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-11i4f6l\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ABBYIx0g5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"ABBYIx0g5-hover\":{\"data-framer-name\":undefined},\"u_U0Dtq29-hover\":{\"data-framer-name\":undefined},u_U0Dtq29:{\"data-framer-name\":\"Mob\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AAlCMQWh5-mWwTPCcgl))\"},children:\"Fintech\"})}),className:\"framer-1yccl1y\",layoutDependency:layoutDependency,layoutId:\"vYjbq6gNe\",style:{\"--extracted-r6o4lv\":\" var(--variable-reference-AAlCMQWh5-mWwTPCcgl)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AAlCMQWh5-mWwTPCcgl\":AAlCMQWh5,\"--variable-reference-dO8LNaXW9-mWwTPCcgl\":dO8LNaXW9},text:O4i2760fR,variants:{\"ABBYIx0g5-hover\":{\"--extracted-r6o4lv\":\" var(--variable-reference-dO8LNaXW9-mWwTPCcgl)\",\"--variable-reference-dO8LNaXW9-mWwTPCcgl\":dO8LNaXW9},u_U0Dtq29:{\"--extracted-r6o4lv\":\"var(--variable-reference-dO8LNaXW9-mWwTPCcgl)\",\"--variable-reference-dO8LNaXW9-mWwTPCcgl\":dO8LNaXW9}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ABBYIx0g5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dO8LNaXW9-mWwTPCcgl))\"},children:\"Fintech\"})})},u_U0Dtq29:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dO8LNaXW9-mWwTPCcgl))\",\"--framer-text-transform\":\"uppercase\"},children:\"Fintech\"})}),fonts:[\"FS;Satoshi-light\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6670,intrinsicWidth:4447,pixelHeight:6670,pixelWidth:4447,sizes:\"65.1199px\",...toResponsiveImage(eetAYFyiL)},className:\"framer-pq1w1h\",layoutDependency:layoutDependency,layoutId:\"LimcioTen\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:0,rotate:0},variants:{\"ABBYIx0g5-hover\":{opacity:1,rotate:-7},\"u_U0Dtq29-hover\":{opacity:1},u_U0Dtq29:{opacity:1}},...addPropertyOverrides({\"ABBYIx0g5-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6670,intrinsicWidth:4447,pixelHeight:6670,pixelWidth:4447,sizes:\"98px\",...toResponsiveImage(eetAYFyiL)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6670,intrinsicWidth:4447,pixelHeight:6670,pixelWidth:4447,sizes:\"65.1199px\",...toResponsiveImage(eetAYFyiL)},className:\"framer-13nth1y\",layoutDependency:layoutDependency,layoutId:\"YT3_1OHUs\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:0,rotate:7},variants:{\"ABBYIx0g5-hover\":{opacity:1},\"u_U0Dtq29-hover\":{opacity:1},u_U0Dtq29:{opacity:1}},...addPropertyOverrides({\"ABBYIx0g5-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6670,intrinsicWidth:4447,pixelHeight:6670,pixelWidth:4447,sizes:\"98px\",...toResponsiveImage(J2MwXYUgU)}}},baseVariant,gestureVariant)})})]})})})});});const css=['.framer-OWVIK [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-OWVIK .framer-1xxa8ul { display: block; }\",\".framer-OWVIK .framer-11i4f6l { align-content: start; align-items: start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 24px 24px 24px 24px; position: relative; width: min-content; }\",\".framer-OWVIK .framer-1yccl1y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OWVIK .framer-pq1w1h, .framer-OWVIK .framer-13nth1y { -webkit-user-select: none; flex: none; height: 85px; overflow: hidden; position: absolute; right: 5px; top: calc(53.03030303030305% - 84.72606657944266px / 2); user-select: none; width: 65px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OWVIK .framer-11i4f6l { gap: 0px; } .framer-OWVIK .framer-11i4f6l > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-OWVIK .framer-11i4f6l > :first-child { margin-left: 0px; } .framer-OWVIK .framer-11i4f6l > :last-child { margin-right: 0px; } }\",\".framer-OWVIK.framer-v-1et0trt .framer-11i4f6l { padding: 8px 8px 8px 8px; }\",\".framer-OWVIK.framer-v-11i4f6l.hover .framer-pq1w1h { bottom: -7px; height: 128px; right: 0px; top: unset; width: 98px; }\",\".framer-OWVIK.framer-v-11i4f6l.hover .framer-13nth1y { height: 128px; right: -25px; top: -7px; width: 98px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 136\n * @framerIntrinsicWidth 342\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"u_U0Dtq29\":{\"layout\":[\"auto\",\"auto\"]},\"xx6nkL5hn\":{\"layout\":[\"auto\",\"auto\"]},\"UOnKG3v3z\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"O4i2760fR\":\"industry\",\"eetAYFyiL\":\"image\",\"AAlCMQWh5\":\"color\",\"dO8LNaXW9\":\"colorActive\",\"J2MwXYUgU\":\"image2\"}\n * @framerImmutableVariables true\n */const FramermWwTPCcgl=withCSS(Component,css,\"framer-OWVIK\");export default FramermWwTPCcgl;FramermWwTPCcgl.displayName=\"Industry Text\";FramermWwTPCcgl.defaultProps={height:136,width:342};addPropertyControls(FramermWwTPCcgl,{variant:{options:[\"ABBYIx0g5\",\"u_U0Dtq29\"],optionTitles:[\"Variant 1\",\"Mob\"],title:\"Variant\",type:ControlType.Enum},O4i2760fR:{defaultValue:\"Fintech\",displayTextArea:false,title:\"Industry\",type:ControlType.String},eetAYFyiL:{__defaultAssetReference:\"data:framer/asset-reference,gmP0LP8gx2ragPF1HoajMIXpLY.jpg?originalFilename=photo-1558591710-4b4a1ae0f04d%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzNXx8bWluaW1hbCUyMGFic3RyYWN0fGVufDB8fHx8MTY5OTk0ODg3OHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},AAlCMQWh5:{defaultValue:'var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34)) /* {\"name\":\"text/default\"} */',title:\"Color\",type:ControlType.Color},dO8LNaXW9:{defaultValue:'var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205)) /* {\"name\":\"Accent\"} */',title:\"Color Active\",type:ControlType.Color},J2MwXYUgU:{__defaultAssetReference:\"data:framer/asset-reference,gmP0LP8gx2ragPF1HoajMIXpLY.jpg?originalFilename=photo-1558591710-4b4a1ae0f04d%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzNXx8bWluaW1hbCUyMGFic3RyYWN0fGVufDB8fHx8MTY5OTk0ODg3OHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage}});addFonts(FramermWwTPCcgl,[{family:\"Satoshi\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/D7WD5OXZFWQ5T76HSPWAC7MNKAJXE2YG/LUGNSPO5YC34ABNB2O6K7AFDSOJZT56V/WNDVG7O66ENLOD43GS7FBUCC4KMT5OM2.woff2\",weight:\"300\"},...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermWwTPCcgl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"O4i2760fR\\\":\\\"industry\\\",\\\"eetAYFyiL\\\":\\\"image\\\",\\\"AAlCMQWh5\\\":\\\"color\\\",\\\"dO8LNaXW9\\\":\\\"colorActive\\\",\\\"J2MwXYUgU\\\":\\\"image2\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"136\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"u_U0Dtq29\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xx6nkL5hn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UOnKG3v3z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"342\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mWwTPCcgl.map", "// Generated by Framer (ac3938c)\nimport{jsx as r}from\"react/jsx-runtime\";import{addFonts as e,addPropertyControls as t,ControlType as a,cx as n,Image as i,Link as o,RichText as l,useLocaleInfo as f,useVariantState as m,withCSS as d}from\"framer\";import{LayoutGroup as s,motion as p,MotionConfigContext as c}from\"framer-motion\";import*as g from\"react\";let u={K2IdrIyHG:{hover:!0}},h=[\"K2IdrIyHG\",\"w8k1SqKuf\"],x=\"framer-gsEW5\",v={K2IdrIyHG:\"framer-v-rcjjm0\",w8k1SqKuf:\"framer-v-1e4o6q3\"};function b(r,...e){let t={};return null==e||e.forEach(e=>e&&Object.assign(t,r[e])),t;}let y={default:{delay:0,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"}},w=r=>\"object\"==typeof r&&null!==r&&\"string\"==typeof r.src?r:\"string\"==typeof r?{src:r}:void 0,I=({value:e,children:t})=>{let a=g.useContext(c),n=null!=e?e:a.transition,i=g.useMemo(()=>({...a,transition:n}),[JSON.stringify(n)]);return /*#__PURE__*/r(c.Provider,{value:i,children:t});},j={\"Variant 1\":\"K2IdrIyHG\",Tablet:\"w8k1SqKuf\"},E=({featuredImage:r,height:e,id:t,link:a,title:n,width:i,...o})=>{var l,f,m;return{...o,n7tc7E_Yi:null!=a?a:o.n7tc7E_Yi,PIgtT3bM7:null!=r?r:o.PIgtT3bM7,stewprJ74:null!==(l=null!=n?n:o.stewprJ74)&&void 0!==l?l:\"Project Title\",variant:null!==(m=null!==(f=j[o.variant])&&void 0!==f?f:o.variant)&&void 0!==m?m:\"K2IdrIyHG\"};},k=(r,e)=>e.join(\"-\")+r.layoutDependency,W=/*#__PURE__*/g.forwardRef(function(e,t){let{activeLocale:a}=f(),{style:d,className:c,layoutId:x,variant:j,n7tc7E_Yi:W,PIgtT3bM7:K,stewprJ74:H,...T}=E(e),{baseVariant:S,classNames:P,gestureVariant:G,setGestureState:F,setVariant:R,transition:q,variants:A}=m({cycleOrder:h,defaultVariant:\"K2IdrIyHG\",enabledGestures:u,transitions:y,variant:j,variantClassNames:v}),C=k(e,A),N=g.useRef(null),D=g.useId();return /*#__PURE__*/r(s,{id:null!=x?x:D,children:/*#__PURE__*/r(p.div,{initial:j,animate:A,onHoverStart:()=>F({isHovered:!0}),onHoverEnd:()=>F({isHovered:!1}),onTapStart:()=>F({isPressed:!0}),onTap:()=>F({isPressed:!1}),onTapCancel:()=>F({isPressed:!1}),className:n(\"framer-gsEW5\",...[],P),style:{display:\"contents\"},children:/*#__PURE__*/r(I,{value:q,children:/*#__PURE__*/r(o,{href:W,openInNewTab:!1,children:/*#__PURE__*/r(p.a,{...T,className:`${n(\"framer-rcjjm0\",c)} framer-ldgqn8`,\"data-framer-name\":\"Variant 1\",layoutDependency:C,layoutId:\"K2IdrIyHG\",ref:null!=t?t:N,style:{...d},...b({\"K2IdrIyHG-hover\":{\"data-framer-name\":void 0},w8k1SqKuf:{\"data-framer-name\":\"Tablet\"}},S,G),children:/*#__PURE__*/r(i,{as:\"figure\",background:{alt:\"\",fit:\"fill\",sizes:\"min(1160px, 100vw)\",...w(K)},className:\"framer-1w8dnml\",\"data-framer-name\":\"Featured Image\",layoutDependency:C,layoutId:\"YlIDqAMSE\",...b({\"K2IdrIyHG-hover\":{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(1160px, 100vw) * 1.01)\",...w(K)}}},S,G),children:/*#__PURE__*/r(p.div,{className:\"framer-akv21u\",\"data-framer-name\":\"Button\",layoutDependency:C,layoutId:\"CrEldFT8b\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(191, 191, 191, 0.5)\",borderBottomLeftRadius:130,borderBottomRightRadius:130,borderTopLeftRadius:130,borderTopRightRadius:130,opacity:0,WebkitBackdropFilter:\"blur(10px)\"},variants:{\"K2IdrIyHG-hover\":{backgroundColor:\"rgba(238, 232, 205, 0.5)\",opacity:1},w8k1SqKuf:{opacity:1}},children:/*#__PURE__*/r(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(g.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Project Title\"})}),className:\"framer-1d0fdp8\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:C,layoutId:\"mXtnaY1CI\",style:{\"--extracted-r6o4lv\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:H,variants:{\"K2IdrIyHG-hover\":{\"--extracted-r6o4lv\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"}},verticalAlignment:\"top\",withExternalLayout:!0,...b({\"K2IdrIyHG-hover\":{children:/*#__PURE__*/r(g.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Project Title\"})})}},S,G)})})})})})})})});}),K=['.framer-gsEW5 [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-gsEW5 .framer-ldgqn8 { display: block; }\",\".framer-gsEW5 .framer-rcjjm0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 680px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 1160px; }\",\".framer-gsEW5 .framer-1w8dnml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-gsEW5 .framer-akv21u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 20px 10px 20px; pointer-events: none; position: relative; width: min-content; z-index: 10; }\",\".framer-gsEW5 .framer-1d0fdp8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gsEW5 .framer-rcjjm0, .framer-gsEW5 .framer-1w8dnml, .framer-gsEW5 .framer-akv21u { gap: 0px; } .framer-gsEW5 .framer-rcjjm0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gsEW5 .framer-rcjjm0 > :first-child, .framer-gsEW5 .framer-akv21u > :first-child { margin-left: 0px; } .framer-gsEW5 .framer-rcjjm0 > :last-child, .framer-gsEW5 .framer-akv21u > :last-child { margin-right: 0px; } .framer-gsEW5 .framer-1w8dnml > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gsEW5 .framer-1w8dnml > :first-child { margin-top: 0px; } .framer-gsEW5 .framer-1w8dnml > :last-child { margin-bottom: 0px; } .framer-gsEW5 .framer-akv21u > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-gsEW5.framer-v-1e4o6q3 .framer-rcjjm0 { aspect-ratio: 1.7058823529411764 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 680px); }\",\".framer-gsEW5.framer-v-rcjjm0.hover .framer-rcjjm0 { aspect-ratio: 1.7058823529411764 / 1; height: var(--framer-aspect-ratio-supported, 680px); }\",\".framer-gsEW5.framer-v-rcjjm0.hover .framer-1w8dnml { height: 101%; width: 101%; }\"],H=d(W,K,\"framer-gsEW5\");export default H;H.displayName=\"Project Image Copy\",H.defaultProps={height:680,width:1160},t(H,{variant:{options:[\"K2IdrIyHG\",\"w8k1SqKuf\"],optionTitles:[\"Variant 1\",\"Tablet\"],title:\"Variant\",type:a.Enum},n7tc7E_Yi:{title:\"Link\",type:a.Link},PIgtT3bM7:{title:\"Featured Image\",type:a.ResponsiveImage},stewprJ74:{defaultValue:\"Project Title\",displayTextArea:!1,title:\"Title\",type:a.String}}),e(H,[{family:\"Satoshi\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqbIMhevOh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1160\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"n7tc7E_Yi\\\":\\\"link\\\",\\\"PIgtT3bM7\\\":\\\"featuredImage\\\",\\\"stewprJ74\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w8k1SqKuf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UkP0kSv4e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"680\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qbIMhevOh.map", "// Generated by Framer (d0e15c0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/mua9lUjNNWvI0rqXd9Xq/aT2gYIzgCEszybWcCJ8U/HPCNkCHCb.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/456xVfggFOzFUuY4xdGF/CAqyB4vT2Qd7eSnPXAst/i6r0kI2sg.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/32X13KVRWJD0zalsKydq/CzDGQhv1Hc0347pdTRl5/NWkCScbQS.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/g3zk0biJHxrrelBpqi6V/STb5bwz2fIcjIDMOkiuh/xZndidUCt.js\";const cycleOrder=[\"WdhvXuP2p\"];const serializationHash=\"framer-Bg5Se\";const variantClassNames={WdhvXuP2p:\"framer-v-1gxqu99\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,iconTop,id,location,name1,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,l2PRx9pCq:(_ref=text!==null&&text!==void 0?text:props.l2PRx9pCq)!==null&&_ref!==void 0?_ref:\"With Nexus, I can bring my ideas to life quickly and effortlessly. It has streamlined my workflow and elevated my website designs to a whole new level.\",MqYQk4oqw:(_ref1=name1!==null&&name1!==void 0?name1:props.MqYQk4oqw)!==null&&_ref1!==void 0?_ref1:\"Emily Rodriguez\",t8Xu1PIRD:(_ref2=iconTop!==null&&iconTop!==void 0?iconTop:props.t8Xu1PIRD)!==null&&_ref2!==void 0?_ref2:true,V5dmilz2G:(_ref3=title!==null&&title!==void 0?title:props.V5dmilz2G)!==null&&_ref3!==void 0?_ref3:\"Empowering Non-Technical Users to Design Like Real Pros\",XRXhRdbkw:(_ref4=location!==null&&location!==void 0?location:props.XRXhRdbkw)!==null&&_ref4!==void 0?_ref4:\"text\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,MqYQk4oqw,XRXhRdbkw,V5dmilz2G,l2PRx9pCq,t8Xu1PIRD,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"WdhvXuP2p\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Bg5Se\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1gxqu99\",className),\"data-framer-name\":\"Testimonial\",layoutDependency:layoutDependency,layoutId:\"WdhvXuP2p\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(242, 242, 242)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ast88d\",layoutDependency:layoutDependency,layoutId:\"HKMxHgQX3\",children:[t8Xu1PIRD&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdrs7v\",\"data-framer-name\":\"ICON\",layoutDependency:layoutDependency,layoutId:\"EdgZ2C9fA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ox62cm\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"FXMVgbYm6\",style:{backgroundColor:\"var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h4osm9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"AFQbLq5Mv\",svg:'<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"#151515\"><path d=\"M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x4s37y\",layoutDependency:layoutDependency,layoutId:\"HmP63V2bL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1x09rnd\",\"data-styles-preset\":\"HPCNkCHCb\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34)))\"},children:\"Empowering Non-Technical Users to Design Like Real Pros\"})}),className:\"framer-1i5jt03\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"Ev8j8cLgl\",style:{\"--extracted-1eung3n\":\" var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:V5dmilz2G,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34)))\"},children:\"With Nexus, I can bring my ideas to life quickly and effortlessly. It has streamlined my workflow and elevated my website designs to a whole new level.\"})}),className:\"framer-1siz440\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"g7PPqIWmZ\",style:{\"--extracted-r6o4lv\":\" var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:l2PRx9pCq,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l2ngca\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"BuxXuqT7q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tde6wz\",\"data-styles-preset\":\"i6r0kI2sg\",children:\"Emily Rodriguez\"})}),className:\"framer-1am0a28\",layoutDependency:layoutDependency,layoutId:\"vBgi7aG1Z\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:MqYQk4oqw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(150, 145, 136)))\"},children:\"Elevation Design Co.\"})}),className:\"framer-1sf5gir\",layoutDependency:layoutDependency,layoutId:\"ZlkHR_R67\",style:{\"--extracted-r6o4lv\":\" var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(150, 145, 136))\",\"--framer-paragraph-spacing\":\"0px\"},text:XRXhRdbkw,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=['.framer-Bg5Se [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-Bg5Se .framer-wg6vnh { display: block; }\",\".framer-Bg5Se .framer-1gxqu99 { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px 40px 40px 40px; position: relative; width: 518px; }\",\".framer-Bg5Se .framer-1ast88d { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Bg5Se .framer-1bdrs7v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 42px; }\",\".framer-Bg5Se .framer-ox62cm { flex: none; height: 42px; overflow: visible; position: relative; width: 42px; }\",\".framer-Bg5Se .framer-h4osm9 { bottom: 11px; flex: none; left: 11px; position: absolute; right: 11px; top: 11px; }\",\".framer-Bg5Se .framer-x4s37y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Bg5Se .framer-1i5jt03, .framer-Bg5Se .framer-1siz440 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Bg5Se .framer-1l2ngca { align-content: start; align-items: start; 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: min-content; }\",\".framer-Bg5Se .framer-1am0a28, .framer-Bg5Se .framer-1sf5gir { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bg5Se .framer-1gxqu99, .framer-Bg5Se .framer-1ast88d, .framer-Bg5Se .framer-1bdrs7v, .framer-Bg5Se .framer-x4s37y, .framer-Bg5Se .framer-1l2ngca { gap: 0px; } .framer-Bg5Se .framer-1gxqu99 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Bg5Se .framer-1gxqu99 > :first-child, .framer-Bg5Se .framer-1ast88d > :first-child, .framer-Bg5Se .framer-x4s37y > :first-child, .framer-Bg5Se .framer-1l2ngca > :first-child { margin-top: 0px; } .framer-Bg5Se .framer-1gxqu99 > :last-child, .framer-Bg5Se .framer-1ast88d > :last-child, .framer-Bg5Se .framer-x4s37y > :last-child, .framer-Bg5Se .framer-1l2ngca > :last-child { margin-bottom: 0px; } .framer-Bg5Se .framer-1ast88d > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Bg5Se .framer-1bdrs7v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Bg5Se .framer-1bdrs7v > :first-child { margin-left: 0px; } .framer-Bg5Se .framer-1bdrs7v > :last-child { margin-right: 0px; } .framer-Bg5Se .framer-x4s37y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Bg5Se .framer-1l2ngca > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 518\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MqYQk4oqw\":\"name1\",\"XRXhRdbkw\":\"location\",\"V5dmilz2G\":\"title\",\"l2PRx9pCq\":\"text\",\"t8Xu1PIRD\":\"iconTop\"}\n * @framerImmutableVariables true\n */const FramerRcI3KVpws=withCSS(Component,css,\"framer-Bg5Se\");export default FramerRcI3KVpws;FramerRcI3KVpws.displayName=\"Card\";FramerRcI3KVpws.defaultProps={height:400,width:518};addPropertyControls(FramerRcI3KVpws,{MqYQk4oqw:{defaultValue:\"Emily Rodriguez\",displayTextArea:false,title:\"Name\",type:ControlType.String},XRXhRdbkw:{defaultValue:\"text\",displayTextArea:false,title:\"Location\",type:ControlType.String},V5dmilz2G:{defaultValue:\"Empowering Non-Technical Users to Design Like Real Pros\",displayTextArea:false,title:\"Title\",type:ControlType.String},l2PRx9pCq:{defaultValue:\"With Nexus, I can bring my ideas to life quickly and effortlessly. It has streamlined my workflow and elevated my website designs to a whole new level.\",title:\"Text\",type:ControlType.String},t8Xu1PIRD:{defaultValue:true,title:\"Icon Top\",type:ControlType.Boolean}});addFonts(FramerRcI3KVpws,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRcI3KVpws\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"518\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"MqYQk4oqw\\\":\\\"name1\\\",\\\"XRXhRdbkw\\\":\\\"location\\\",\\\"V5dmilz2G\\\":\\\"title\\\",\\\"l2PRx9pCq\\\":\\\"text\\\",\\\"t8Xu1PIRD\\\":\\\"iconTop\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RcI3KVpws.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"FS;Satoshi-bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/fRuwfBP8x:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}];export const css=['.framer-3lHMy .framer-styles-preset-1q4nh6q:not(.rich-text-wrapper), .framer-3lHMy .framer-styles-preset-1q4nh6q.rich-text-wrapper h6 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0.5px; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, #151515); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-3lHMy\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import SideTitle from\"#framer/local/canvasComponent/kd_Q1oPZQ/kd_Q1oPZQ.js\";import ClientLogosCopy2 from\"#framer/local/canvasComponent/KWdT3hary/KWdT3hary.js\";import IndustryText from\"#framer/local/canvasComponent/mWwTPCcgl/mWwTPCcgl.js\";import Button from\"#framer/local/canvasComponent/nEDMPIJV1/nEDMPIJV1.js\";import ProjectImageCopy from\"#framer/local/canvasComponent/qbIMhevOh/qbIMhevOh.js\";import ScrollButton from\"#framer/local/canvasComponent/r0Bktci6f/r0Bktci6f.js\";import Card from\"#framer/local/canvasComponent/RcI3KVpws/RcI3KVpws.js\";import Footer from\"#framer/local/canvasComponent/RwxZLcIgs/RwxZLcIgs.js\";import Instagram from\"#framer/local/canvasComponent/TvSwvo9Q0/TvSwvo9Q0.js\";import NavBar from\"#framer/local/canvasComponent/w_SozfxtW/w_SozfxtW.js\";import SupplierList from\"#framer/local/collection/GY0ChKIeT/GY0ChKIeT.js\";import ProjectsList from\"#framer/local/collection/Sj3SzQ8Lf/Sj3SzQ8Lf.js\";import*as sharedStyle7 from\"#framer/local/css/AcMI_880b/AcMI_880b.js\";import*as sharedStyle3 from\"#framer/local/css/d7g3Xba_U/d7g3Xba_U.js\";import*as sharedStyle6 from\"#framer/local/css/fRuwfBP8x/fRuwfBP8x.js\";import*as sharedStyle5 from\"#framer/local/css/h4jVEYDkM/h4jVEYDkM.js\";import*as sharedStyle9 from\"#framer/local/css/JuvA9K84_/JuvA9K84_.js\";import*as sharedStyle2 from\"#framer/local/css/N67EoJd0d/N67EoJd0d.js\";import*as sharedStyle4 from\"#framer/local/css/N7G8fkFvp/N7G8fkFvp.js\";import*as sharedStyle11 from\"#framer/local/css/NWkCScbQS/NWkCScbQS.js\";import*as sharedStyle1 from\"#framer/local/css/ovg9D21_X/ovg9D21_X.js\";import*as sharedStyle8 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle10 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const RichTextWithFX=withFX(RichText);const ScrollButtonFonts=getFonts(ScrollButton);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const SideTitleFonts=getFonts(SideTitle);const ButtonFonts=getFonts(Button);const ClientLogosCopy2Fonts=getFonts(ClientLogosCopy2);const MotionDivWithFX=withFX(motion.div);const ProjectImageCopyFonts=getFonts(ProjectImageCopy);const IndustryTextFonts=getFonts(IndustryText);const MotionMainWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.main);const CardFonts=getFonts(Card);const Ticker1Fonts=getFonts(Ticker1);const InstagramFonts=getFonts(Instagram);const FooterFonts=getFonts(Footer);const breakpoints={AyRkVb10h:\"(min-width: 1600px) and (max-width: 2559px)\",JtN8IEEEW:\"(max-width: 809px)\",Kbv4_kp4U:\"(min-width: 2560px)\",QsOjzMEOj:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ltVu7\";const variantClassNames={AyRkVb10h:\"framer-v-n7ol2c\",JtN8IEEEW:\"framer-v-1vb5nd8\",Kbv4_kp4U:\"framer-v-g8xzyv\",QsOjzMEOj:\"framer-v-1g6n99x\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition1={delay:0,duration:.6,ease:[.5,1,.89,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const transition2={damping:30,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const transition3={damping:60,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:20};const transition4={delay:.6,duration:.6,ease:[.5,1,.89,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:20};const transition5={delay:.5,duration:.6,ease:[.5,1,.89,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition6={delay:.2,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition7={delay:.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8};const transition9={delay:0,duration:1,ease:[.5,1,.89,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"AyRkVb10h\",Desktop:\"WQLkyLRf1\",Phone:\"JtN8IEEEW\",Tablet:\"QsOjzMEOj\",XL:\"Kbv4_kp4U\"};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,hAQy__hhIyZ3YHyRQs,r6pdiuCSAyZ3YHyRQs,xEyvcTwoLyZ3YHyRQs,idyZ3YHyRQs,hAQy__hhID3hXRQaKB,r6pdiuCSAD3hXRQaKB,xEyvcTwoLD3hXRQaKB,idD3hXRQaKB,yKCxz2BkSiZKJWnUc6,iBrazcUBLiZKJWnUc6,OaibxMOGZiZKJWnUc6,idiZKJWnUc6,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"gqVhfhACD\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"wZFHLaOO1\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"QsOjzMEOj\")return false;return true;};const elementId2=useRouteElementId(\"DQS2gRT7a\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"h6ln7DYpw\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"JtN8IEEEW\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JtN8IEEEW\")return true;return false;};const elementId4=useRouteElementId(\"y5ECfxsx1\");const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"AyRkVb10h\",\"Kbv4_kp4U\"].includes(baseVariant))return false;return true;};const elementId5=useRouteElementId(\"HoONBWwpG\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"jh_AA8Mwa\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"Cy1Lnlyrf\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jilq5h-container\",layoutScroll:true,nodeId:\"WAl_1sn9o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"GVqojuBn2\"},QsOjzMEOj:{variant:\"nt0TPiOVf\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"WAl_1sn9o\",layoutId:\"WAl_1sn9o\",mt3NirW9p:true,style:{width:\"100%\"},variant:\"fFcRghEXC\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-e1a5wt\",\"data-framer-name\":\"Main Wrapper\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-7sumeb\",\"data-framer-name\":\"Section HERO\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1533zuj\",\"data-framer-name\":\"Hero Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-at0rhu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6qqrn8\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(197, 192, 183))\"},children:[\"Quality meets creativity.\",/*#__PURE__*/_jsx(\"br\",{})]}),\"30 years creating luxurious spaces and bespoke interiors.\"]})}),className:\"framer-1547ell\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":wZFHLaOO1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":wZFHLaOO1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":wZFHLaOO1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":wZFHLaOO1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":wZFHLaOO1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-154tkhh-container\",nodeId:\"ulvbnKAgX\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{TTE6P0kGN:resolvedLinks[1]},JtN8IEEEW:{TTE6P0kGN:resolvedLinks[3]},Kbv4_kp4U:{TTE6P0kGN:resolvedLinks[4]},QsOjzMEOj:{TTE6P0kGN:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ScrollButton,{B9lZqnv5Y:\"Scroll\",G6YG2sBEf:\"ArrowDown\",HaLlZqemT:\"ArrowDown\",height:\"100%\",id:\"ulvbnKAgX\",layoutId:\"ulvbnKAgX\",TTE6P0kGN:resolvedLinks[0],variant:\"fveoZxVRA\",width:\"100%\",YWvg3ciNO:true})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgbzx4\",\"data-framer-name\":\"TICKER\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jmrsf\",\"data-framer-name\":\"Testimonial Row 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8lu9cn-container\",isModuleExternal:true,nodeId:\"hAGc6LvLW\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"hAGc6LvLW\",layoutId:\"hAGc6LvLW\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"A modern living room designed with neutral tones features plush armchairs, a sleek coffee table with decorative items, and large windows bringing in natural light, embodying the elegance of an interior design studio in Marbella.\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1333,pixelHeight:2e3,pixelWidth:1333,sizes:\"500px\",src:\"https://framerusercontent.com/images/N9dFcHZxOyfOYJCOtJL3RSvdk.jpg\",srcSet:\"https://framerusercontent.com/images/N9dFcHZxOyfOYJCOtJL3RSvdk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/N9dFcHZxOyfOYJCOtJL3RSvdk.jpg 1333w\"},className:\"framer-p0sn9w\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Three modern cylindrical pendant lights with bubble details hang from the ceiling, casting a warm, ambient glow in a contemporary setting, ideal for an interior design studio in Marbella.\",fit:\"fill\",intrinsicHeight:4208,intrinsicWidth:2801,pixelHeight:4208,pixelWidth:2801,sizes:\"500px\",src:\"https://framerusercontent.com/images/dCRZU8llPsZm5bAmxB3ZEp88EAc.jpg\",srcSet:\"https://framerusercontent.com/images/dCRZU8llPsZm5bAmxB3ZEp88EAc.jpg?scale-down-to=1024 681w,https://framerusercontent.com/images/dCRZU8llPsZm5bAmxB3ZEp88EAc.jpg?scale-down-to=2048 1363w,https://framerusercontent.com/images/dCRZU8llPsZm5bAmxB3ZEp88EAc.jpg?scale-down-to=4096 2726w,https://framerusercontent.com/images/dCRZU8llPsZm5bAmxB3ZEp88EAc.jpg 2801w\"},className:\"framer-17yf73i\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A modern interior design studio in Marbella showcases an elegant dining area with a sleek glass table, plush cream chairs, and luxurious dark chandeliers, accentuated by a vibrant red decorative centerpiece against large windows that offer a view of lush greenery and an outdoor patio.\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,pixelHeight:1333,pixelWidth:2e3,sizes:\"500px\",src:\"https://framerusercontent.com/images/sITXE4tjGjukwoGii8YvyPqXI.jpg\",srcSet:\"https://framerusercontent.com/images/sITXE4tjGjukwoGii8YvyPqXI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sITXE4tjGjukwoGii8YvyPqXI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sITXE4tjGjukwoGii8YvyPqXI.jpg 2000w\"},className:\"framer-qdjnwx\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A luxurious and elegantly designed interior living space in Marbella, featuring a plush gray sofa adorned with pillows, a soft throw blanket, and surrounded by large, light-filled windows, accompanied by sophisticated decor elements like a crystal chandelier and tasteful vases, representing a chic interior design studio aesthetic.\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,pixelHeight:1125,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/i4yN1LoRZZBxYSzk3n7L2KyvKo.jpg\",srcSet:\"https://framerusercontent.com/images/i4yN1LoRZZBxYSzk3n7L2KyvKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/i4yN1LoRZZBxYSzk3n7L2KyvKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i4yN1LoRZZBxYSzk3n7L2KyvKo.jpg 1500w\"},className:\"framer-jdniov\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"An elegant outdoor patio in Marbella features a round dining table with woven chairs, surrounded by white columns and lush greenery, capturing the essence of a luxurious interior design studio setting.\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,pixelHeight:1333,pixelWidth:2e3,sizes:\"500px\",src:\"https://framerusercontent.com/images/CVQIsVP0WVDnz2q7uhbbb6plGs.jpg\",srcSet:\"https://framerusercontent.com/images/CVQIsVP0WVDnz2q7uhbbb6plGs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CVQIsVP0WVDnz2q7uhbbb6plGs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CVQIsVP0WVDnz2q7uhbbb6plGs.jpg 2000w\"},className:\"framer-nrh7fn\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A modern interior design studio in Marbella features a stylish hallway with a round mirror, patterned wall decor, and an elegant hanging lamp beside a black console table.\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1500,pixelHeight:2e3,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/s6V9Wxu6CPm6JYnu5qeGRfTnUy8.jpg\",srcSet:\"https://framerusercontent.com/images/s6V9Wxu6CPm6JYnu5qeGRfTnUy8.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/s6V9Wxu6CPm6JYnu5qeGRfTnUy8.jpg 1500w\"},className:\"framer-py22ds\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A cozy interior design studio in Marbella features a stylish corner with a polka dot armchair and ottoman, paired with a sleek floor lamp and modern abstract art on the wall, creating an inviting and sophisticated atmosphere.\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1500,pixelHeight:2e3,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/TQkaCRVeQwZDwPch8tuz7ZCM4.jpg\",srcSet:\"https://framerusercontent.com/images/TQkaCRVeQwZDwPch8tuz7ZCM4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/TQkaCRVeQwZDwPch8tuz7ZCM4.jpg 1500w\"},className:\"framer-v62mlb\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A modern interior design studio in Marbella featuring a sleek dining area with a round table surrounded by gray chairs, an artistic pendant light, a large decorative vase, and contemporary wall art.\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1500,pixelHeight:2e3,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/5bdv5u9pvyFmtjHeTej0f8foI.jpg\",srcSet:\"https://framerusercontent.com/images/5bdv5u9pvyFmtjHeTej0f8foI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/5bdv5u9pvyFmtjHeTej0f8foI.jpg 1500w\"},className:\"framer-1etbh8b\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A luxurious interior design studio in Marbella features a sophisticated living space with a white sofa, modern coffee tables, and elegant decor, framed by large arched windows overlooking a courtyard with lush greenery.\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,pixelHeight:4500,pixelWidth:3e3,sizes:\"500px\",src:\"https://framerusercontent.com/images/ARlCdQajVyerNdG4Qbf8ny3uM0U.jpg\",srcSet:\"https://framerusercontent.com/images/ARlCdQajVyerNdG4Qbf8ny3uM0U.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/ARlCdQajVyerNdG4Qbf8ny3uM0U.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/ARlCdQajVyerNdG4Qbf8ny3uM0U.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/ARlCdQajVyerNdG4Qbf8ny3uM0U.jpg 3000w\"},className:\"framer-dnmzmh\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"An interior designer sketches a luxurious residential design on a paper, featuring an elegant chandelier and high-end furniture, reflecting a sophisticated aesthetic, ideal for an interior design studio in Marbella.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"500px\",src:\"https://framerusercontent.com/images/3dbMrx3dVnynKQIJJndOzeLIPE.jpg\",srcSet:\"https://framerusercontent.com/images/3dbMrx3dVnynKQIJJndOzeLIPE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3dbMrx3dVnynKQIJJndOzeLIPE.jpg 1000w\"},className:\"framer-1lz03oo\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A luxurious living room with large glass windows offers a seamless view of lush greenery, featuring a cozy sectional sofa adorned with patterned cushions and surrounded by natural wooden elements, perfect for an Interior Design Studio in Marbella.\",fit:\"fill\",intrinsicHeight:650,intrinsicWidth:736,pixelHeight:650,pixelWidth:736,sizes:\"500px\",src:\"https://framerusercontent.com/images/wPeanXTEYd2bRl5WkqX3jEzmbU.jpg\",srcSet:\"https://framerusercontent.com/images/wPeanXTEYd2bRl5WkqX3jEzmbU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wPeanXTEYd2bRl5WkqX3jEzmbU.jpg 736w\"},className:\"framer-1cefe09\",\"data-border\":true,\"data-framer-name\":\"Social Card\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"A stylish, minimalist interior design features a modern wooden bench adorned with patterned cushions, set against an intricately paneled white wall, embodying contemporary elegance typical of a high-end interior design studio in Marbella.\",fit:\"fill\",intrinsicHeight:3360,intrinsicWidth:2240,pixelHeight:3360,pixelWidth:2240,sizes:\"500px\",src:\"https://framerusercontent.com/images/gjbGI3yX0rGvdWSB6CGwrn4v9iU.jpeg\",srcSet:\"https://framerusercontent.com/images/gjbGI3yX0rGvdWSB6CGwrn4v9iU.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/gjbGI3yX0rGvdWSB6CGwrn4v9iU.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/gjbGI3yX0rGvdWSB6CGwrn4v9iU.jpeg 2240w\"},className:\"framer-1neeony\",\"data-border\":true,\"data-framer-name\":\"Social Card\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zalu8x\",\"data-framer-name\":\"Section ABOUT\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1urhhtz\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sil3cy-container\",nodeId:\"VUVrg1Q2h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SideTitle,{color:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",height:\"100%\",id:\"VUVrg1Q2h\",layoutId:\"VUVrg1Q2h\",title:\"Who we are\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10t0poc\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oyi8vb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrfiet\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v34iec\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",style:{\"--framer-text-alignment\":\"left\"},children:\"Interior\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",children:\"Interior\"})}),className:\"framer-jh3qmm\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experts\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",children:\"Experts\"})}),className:\"framer-rdr5tp\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hwuLFQ9F7\"},implicitPathVariables:undefined},{href:{webPageId:\"hwuLFQ9F7\"},implicitPathVariables:undefined},{href:{webPageId:\"hwuLFQ9F7\"},implicitPathVariables:undefined},{href:{webPageId:\"hwuLFQ9F7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15wyy94-container hidden-1g6n99x\",nodeId:\"TOCDPNqnp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{QkE8o0HIe:resolvedLinks1[1]},JtN8IEEEW:{QkE8o0HIe:resolvedLinks1[2]},Kbv4_kp4U:{QkE8o0HIe:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"About Us\",height:\"100%\",id:\"TOCDPNqnp\",layoutId:\"TOCDPNqnp\",QkE8o0HIe:resolvedLinks1[0],UKYg0ulNp:\"ArrowRight\",variant:\"MblpBuNJI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1184yql\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-u40m9a\",\"data-styles-preset\":\"N7G8fkFvp\",children:\"Welcome to Alison Bethell Collins, a leading design company that\\xa0 has been creating luxurious homes for over 30 years in Marbella.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-u40m9a\",\"data-styles-preset\":\"N7G8fkFvp\",children:\"Our expertise is bringing extraordinary homes and spaces to life.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5e10ov\",\"data-styles-preset\":\"d7g3Xba_U\",children:\"Welcome to Alison Bethell Collins, a leading design company that\\xa0 has been creating luxurious homes for over 30 years in Marbella.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5e10ov\",\"data-styles-preset\":\"d7g3Xba_U\",children:\"Our expertise is bringing extraordinary homes and spaces to life.\"})]}),className:\"framer-1n2h323\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"Our skilled team of designers, artisans and upholsterers deliver tailored solutions for you and your home.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"From full renovations to compelling pieces of bespoke furniture and captivating interiors, we create engaging and visually stunning spaces that reflect your style and connect you deeply with your home.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"Join us on this journey of transforming ideas into extraordinary realities that stand out.\"})]}),className:\"framer-18ibdn6\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g6a90\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-46kzsw\",\"data-framer-name\":\"Section LOGOS\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16d7tqd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wzidq5-container\",nodeId:\"gW5QavF3x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"LZr6rygte\"},QsOjzMEOj:{variant:\"pGeYMBRpc\"}},children:/*#__PURE__*/_jsx(ClientLogosCopy2,{height:\"100%\",id:\"gW5QavF3x\",layoutId:\"gW5QavF3x\",style:{width:\"100%\"},variant:\"DjkuBMsT4\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2xsfs9\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-gejxdw\",\"data-framer-name\":\"Section PROJECTS\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10mcxza\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1zkdtf-container\",nodeId:\"AU8U1fGhR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SideTitle,{color:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",height:\"100%\",id:\"AU8U1fGhR\",layoutId:\"AU8U1fGhR\",title:\"Projects\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wet95s\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lxr523\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1damj3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wpkrl3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gxr7b9\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",children:\"LATEST\"})}),className:\"framer-qqjznz\",\"data-framer-name\":\"Our\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",children:\"PROJECTS\"})}),className:\"framer-xoxcgf\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined},{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined},{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined},{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r7zor4-container hidden-1g6n99x\",nodeId:\"oIYjiKpeg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{QkE8o0HIe:resolvedLinks2[1]},JtN8IEEEW:{QkE8o0HIe:resolvedLinks2[2]},Kbv4_kp4U:{QkE8o0HIe:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"All Projects\",height:\"100%\",id:\"oIYjiKpeg\",layoutId:\"oIYjiKpeg\",QkE8o0HIe:resolvedLinks2[0],UKYg0ulNp:\"ArrowRight\",variant:\"MblpBuNJI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-clkfb1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"Explore some of our recent achievements, each a testament to our passion for exceptional interior design. Our team excels in transforming spaces into elegant, functional homes that embody luxury living.\"})}),className:\"framer-12tn382\",\"data-framer-name\":\"From crafting compelling brand identities to delivering innovative digital solutions, our meticulous art direction ensures cohesive experiences. With engaging social media campaigns, we ignite meaningful connections, helping your brand thrive in the digital landscape.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7l3fq1\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hp5w1h\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yZ3YHyRQs\",data:ProjectsList,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"yZ3YHyRQs\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"yZ3YHyRQs\",name:\"hAQy__hhI\",type:\"Identifier\"},{collection:\"yZ3YHyRQs\",name:\"r6pdiuCSA\",type:\"Identifier\"},{collection:\"yZ3YHyRQs\",name:\"xEyvcTwoL\",type:\"Identifier\"},{collection:\"yZ3YHyRQs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"yZ3YHyRQs\",name:\"rgk0GR2HU\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"yZ3YHyRQs\",name:\"CGYzlR1dK\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({hAQy__hhI:hAQy__hhIyZ3YHyRQs,id:idyZ3YHyRQs,r6pdiuCSA:r6pdiuCSAyZ3YHyRQs,xEyvcTwoL:xEyvcTwoLyZ3YHyRQs},index)=>{r6pdiuCSAyZ3YHyRQs??=\"\";xEyvcTwoLyZ3YHyRQs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yZ3YHyRQs-${idyZ3YHyRQs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xEyvcTwoL:xEyvcTwoLyZ3YHyRQs},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kmzeki\",\"data-framer-name\":\"Project\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-crpp7o-container\",nodeId:\"oKMSiF5FE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QsOjzMEOj:{variant:\"w8k1SqKuf\"}},children:/*#__PURE__*/_jsx(ProjectImageCopy,{height:\"100%\",id:\"oKMSiF5FE\",layoutId:\"oKMSiF5FE\",PIgtT3bM7:toResponsiveImage(hAQy__hhIyZ3YHyRQs),stewprJ74:r6pdiuCSAyZ3YHyRQs,style:{height:\"100%\",width:\"100%\"},variant:\"K2IdrIyHG\",width:\"100%\"})})})})})})},idyZ3YHyRQs);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tr09zu\",\"data-framer-name\":\"Works Collection\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{query:{from:{alias:\"D3hXRQaKB\",data:ProjectsList,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"D3hXRQaKB\",name:\"hAQy__hhI\",type:\"Identifier\"},{collection:\"D3hXRQaKB\",name:\"r6pdiuCSA\",type:\"Identifier\"},{collection:\"D3hXRQaKB\",name:\"xEyvcTwoL\",type:\"Identifier\"},{collection:\"D3hXRQaKB\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"D3hXRQaKB\",name:\"rgk0GR2HU\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"D3hXRQaKB\",name:\"CGYzlR1dK\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"D3hXRQaKB\",data:ProjectsList,type:\"Collection\"},limit:{type:\"LiteralValue\",value:9},select:[{collection:\"D3hXRQaKB\",name:\"hAQy__hhI\",type:\"Identifier\"},{collection:\"D3hXRQaKB\",name:\"r6pdiuCSA\",type:\"Identifier\"},{collection:\"D3hXRQaKB\",name:\"xEyvcTwoL\",type:\"Identifier\"},{collection:\"D3hXRQaKB\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"D3hXRQaKB\",name:\"rgk0GR2HU\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"D3hXRQaKB\",name:\"CGYzlR1dK\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({hAQy__hhI:hAQy__hhID3hXRQaKB,id:idD3hXRQaKB,r6pdiuCSA:r6pdiuCSAD3hXRQaKB,xEyvcTwoL:xEyvcTwoLD3hXRQaKB},index1)=>{r6pdiuCSAD3hXRQaKB??=\"\";xEyvcTwoLD3hXRQaKB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`D3hXRQaKB-${idD3hXRQaKB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xEyvcTwoL:xEyvcTwoLD3hXRQaKB},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r0ty08\",\"data-framer-name\":\"Work Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8u9b0l-container\",nodeId:\"Zgg2lQhS5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QsOjzMEOj:{variant:\"w8k1SqKuf\"}},children:/*#__PURE__*/_jsx(ProjectImageCopy,{height:\"100%\",id:\"Zgg2lQhS5\",layoutId:\"Zgg2lQhS5\",PIgtT3bM7:toResponsiveImage(hAQy__hhID3hXRQaKB),stewprJ74:r6pdiuCSAD3hXRQaKB,style:{height:\"100%\",width:\"100%\"},variant:\"K2IdrIyHG\",width:\"100%\"})})})})})})},idD3hXRQaKB);})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rqf83r\",\"data-framer-name\":\"See All Strip\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined},{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined},{href:{webPageId:\"RYi0fdylr\"},implicitPathVariables:undefined},{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined},{href:{webPageId:\"BvKW5UXD1\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5706x-container\",nodeId:\"ULWKKEj7c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{QkE8o0HIe:resolvedLinks3[1]},JtN8IEEEW:{QkE8o0HIe:resolvedLinks3[3],style:{width:\"100%\"}},Kbv4_kp4U:{QkE8o0HIe:resolvedLinks3[4]},QsOjzMEOj:{QkE8o0HIe:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"See more Projects\",height:\"100%\",id:\"ULWKKEj7c\",layoutId:\"ULWKKEj7c\",QkE8o0HIe:resolvedLinks3[0],UKYg0ulNp:\"ArrowRight\",variant:\"MblpBuNJI\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-5zmzba\",\"data-framer-name\":\"Section SERVICES\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1hqwn\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dqk63x-container\",nodeId:\"DG8j_XBm8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SideTitle,{color:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",height:\"100%\",id:\"DG8j_XBm8\",layoutId:\"DG8j_XBm8\",title:\"What we do\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brxvh8\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1szm9ez\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mgbmjv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8yrfeg\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",children:\"Our\"})}),className:\"framer-qnmql0\",\"data-framer-name\":\"Our\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",children:\"Services\"})}),className:\"framer-5qhzr1\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-elhvzm\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:[\"For over 30 years, Alison Bethell-Collins has been making ambitious dream homes a reality.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We offer a wide range of services, listed below.\"]})})},Kbv4_kp4U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:[\"For over 30 years, Alison Bethell-Collins has been making ambitious dream homes a reality.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We offer a wide range of services, listed below.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"From creating interior concepts to delivering innovative design solutions, our meticulous approach ensures that we achieve a home you will be happy to live in.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"We love turning dreams into stunning realities around the world.\"})]}),className:\"framer-9zhv1b\",\"data-framer-name\":\"From crafting compelling brand identities to delivering innovative digital solutions, our meticulous art direction ensures cohesive experiences. With engaging social media campaigns, we ignite meaningful connections, helping your brand thrive in the digital landscape.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qs2ofh hidden-1vb5nd8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-njj0bd-container\",nodeId:\"KMDyiareG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IndustryText,{AAlCMQWh5:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",dO8LNaXW9:\"var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205))\",eetAYFyiL:addImageAlt({pixelHeight:1430,pixelWidth:2120,src:\"https://framerusercontent.com/images/GkYmnIfkfURBJThRrjjq9910.jpeg\",srcSet:\"https://framerusercontent.com/images/GkYmnIfkfURBJThRrjjq9910.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GkYmnIfkfURBJThRrjjq9910.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GkYmnIfkfURBJThRrjjq9910.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GkYmnIfkfURBJThRrjjq9910.jpeg 2120w\"},\"\"),height:\"100%\",id:\"KMDyiareG\",J2MwXYUgU:addImageAlt({pixelHeight:939,pixelWidth:1500,src:\"https://framerusercontent.com/images/hb0y5NZGq4ZWpplhewvQCfrPU.jpeg\",srcSet:\"https://framerusercontent.com/images/hb0y5NZGq4ZWpplhewvQCfrPU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/hb0y5NZGq4ZWpplhewvQCfrPU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hb0y5NZGq4ZWpplhewvQCfrPU.jpeg 1500w\"},\"\"),layoutId:\"KMDyiareG\",O4i2760fR:\"Interiors\",variant:\"ABBYIx0g5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kx8f7b-container\",nodeId:\"sTd0UEQ1I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IndustryText,{AAlCMQWh5:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",dO8LNaXW9:\"var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205))\",eetAYFyiL:addImageAlt({pixelHeight:680,pixelWidth:1250,src:\"https://framerusercontent.com/images/rLTcqx8Zi5enmQEqD73ZjAG48.jpg\",srcSet:\"https://framerusercontent.com/images/rLTcqx8Zi5enmQEqD73ZjAG48.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rLTcqx8Zi5enmQEqD73ZjAG48.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rLTcqx8Zi5enmQEqD73ZjAG48.jpg 1250w\"},\"\"),height:\"100%\",id:\"sTd0UEQ1I\",J2MwXYUgU:addImageAlt({pixelHeight:2e3,pixelWidth:1333,src:\"https://framerusercontent.com/images/dhzlMtezpzR6BGO8lPFbTXHmK0.jpg\",srcSet:\"https://framerusercontent.com/images/dhzlMtezpzR6BGO8lPFbTXHmK0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/dhzlMtezpzR6BGO8lPFbTXHmK0.jpg 1333w\"},\"\"),layoutId:\"sTd0UEQ1I\",O4i2760fR:\"Bespoke Designs\",variant:\"ABBYIx0g5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udpwg5-container\",nodeId:\"e0hDsgJND\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IndustryText,{AAlCMQWh5:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",dO8LNaXW9:\"var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205))\",eetAYFyiL:addImageAlt({pixelHeight:1060,pixelWidth:1440,src:\"https://framerusercontent.com/images/JtNkzpkwp6sse6yE7EL9Y4QSLw.jpeg\",srcSet:\"https://framerusercontent.com/images/JtNkzpkwp6sse6yE7EL9Y4QSLw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/JtNkzpkwp6sse6yE7EL9Y4QSLw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JtNkzpkwp6sse6yE7EL9Y4QSLw.jpeg 1440w\"},\"\"),height:\"100%\",id:\"e0hDsgJND\",J2MwXYUgU:addImageAlt({pixelHeight:1500,pixelWidth:1437,src:\"https://framerusercontent.com/images/sHYzMWPSEeKlZHiVRRzi39ya2WQ.jpg\",srcSet:\"https://framerusercontent.com/images/sHYzMWPSEeKlZHiVRRzi39ya2WQ.jpg?scale-down-to=1024 980w,https://framerusercontent.com/images/sHYzMWPSEeKlZHiVRRzi39ya2WQ.jpg 1437w\"},\"\"),layoutId:\"e0hDsgJND\",O4i2760fR:\"Luxury Renovations\",variant:\"ABBYIx0g5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w9p61k-container\",nodeId:\"k7YrdYODG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IndustryText,{AAlCMQWh5:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",dO8LNaXW9:\"var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205))\",eetAYFyiL:addImageAlt({pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/t6nYZZstiTuCXF9zYu00ErYnGs.webp\",srcSet:\"https://framerusercontent.com/images/t6nYZZstiTuCXF9zYu00ErYnGs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/t6nYZZstiTuCXF9zYu00ErYnGs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/t6nYZZstiTuCXF9zYu00ErYnGs.webp 1200w\"},\"\"),height:\"100%\",id:\"k7YrdYODG\",J2MwXYUgU:addImageAlt({pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/KUegelSC48CDNX3mkytUmvoNI88.jpeg\"},\"\"),layoutId:\"k7YrdYODG\",O4i2760fR:\"Artwork\",variant:\"ABBYIx0g5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fviq3x-container\",nodeId:\"rL4I4sqSB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IndustryText,{AAlCMQWh5:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",dO8LNaXW9:\"var(--token-26ada7b6-241c-404e-92e0-945410227db3, rgb(238, 232, 205))\",eetAYFyiL:addImageAlt({pixelHeight:1e3,pixelWidth:800,src:\"https://framerusercontent.com/images/NGiLn9FEoimr6FrQyQmS77JbM.jpg\",srcSet:\"https://framerusercontent.com/images/NGiLn9FEoimr6FrQyQmS77JbM.jpg 800w\"},\"\"),height:\"100%\",id:\"rL4I4sqSB\",J2MwXYUgU:addImageAlt({pixelHeight:1e3,pixelWidth:800,src:\"https://framerusercontent.com/images/Cz9PqBiq5zWHBY5gXGlPR6Ry0.jpg\",srcSet:\"https://framerusercontent.com/images/Cz9PqBiq5zWHBY5gXGlPR6Ry0.jpg 800w\"},\"\"),layoutId:\"rL4I4sqSB\",O4i2760fR:\"Textiles & Fabrics\",variant:\"ABBYIx0g5\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbiwe4 hidden-72rtr7 hidden-n7ol2c hidden-1g6n99x hidden-g8xzyv\",\"data-framer-name\":\"SERVICE LIST\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efqevi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",\"--framer-text-transform\":\"uppercase\"},children:\"Interior Concepts\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1q4nh6q\",\"data-styles-preset\":\"fRuwfBP8x\",children:[\"Interior\",/*#__PURE__*/_jsx(\"br\",{}),\"Concepts\"]})}),className:\"framer-mv6t5c\",\"data-framer-name\":\"Branding\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tadvms\",\"data-framer-name\":\"List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Renders & Visuals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Renders & \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Visuals\"})]})}),className:\"framer-18dwgik\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"ColoUr Theory\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"ColoUr Theory\"})}),className:\"framer-1706i51\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Spatial Planning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Spatial Planning\"})}),className:\"framer-19dvb6u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Lighting Solutions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Lighting Solutions\"})}),className:\"framer-oa7gc9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rre6kq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bespoke Furniture\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1q4nh6q\",\"data-styles-preset\":\"fRuwfBP8x\",children:[\"Bespoke\",/*#__PURE__*/_jsx(\"br\",{}),\"Furniture\"]})}),className:\"framer-xxytfx\",\"data-framer-name\":\"Digital\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ybdwg\",\"data-framer-name\":\"List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Sustainable Materials\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:[\"Sustainable\",/*#__PURE__*/_jsx(\"br\",{}),\"Materials\"]})}),className:\"framer-4xh3e2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Custom Pieces\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Custom Pieces\"})}),className:\"framer-zi9zw1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Local Artisans\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Local Artisans\"})}),className:\"framer-w9pgge\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Luxury Furnishings\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Luxury Furnishings\"})}),className:\"framer-1kshi8g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9q9toy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1q4nh6q\",\"data-styles-preset\":\"fRuwfBP8x\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Luxury \",/*#__PURE__*/_jsx(\"br\",{}),\"Renovations\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1q4nh6q\",\"data-styles-preset\":\"fRuwfBP8x\",children:[\"Luxury \",/*#__PURE__*/_jsx(\"br\",{}),\"Renovations\"]})}),className:\"framer-dm8o9i\",\"data-framer-name\":\"Motion\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hpty5x\",\"data-framer-name\":\"List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Architectural Enhancements\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:[\"Architectural\",/*#__PURE__*/_jsx(\"br\",{}),\"Enhancements\"]})}),className:\"framer-qifpt1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"High-End Finishes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"High-End Finishes\"})}),className:\"framer-c2b52z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Full Renovations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Full Renovations\"})}),className:\"framer-1qfqaqo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Space Optimisation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Space Optimisation\"})}),className:\"framer-9qqg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u4n8ou\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",\"--framer-text-transform\":\"uppercase\"},children:\"Curated Decor\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1q4nh6q\",\"data-styles-preset\":\"fRuwfBP8x\",children:[\"Curated\",/*#__PURE__*/_jsx(\"br\",{}),\"Decor\"]})}),className:\"framer-sd8g3u\",\"data-framer-name\":\"Social Media\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1seq8bk\",\"data-framer-name\":\"List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Fine Fabrics Selection\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:[\"Fine Fabrics\",/*#__PURE__*/_jsx(\"br\",{}),\"Selection\"]})}),className:\"framer-1a20heq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Italian Furniture\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Italian Furniture\"})}),className:\"framer-u5jlye\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Artwork Gallery\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"Artwork Gallery\"})}),className:\"framer-1pj2qto\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"INTERNATIONAL BRANDS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-83pqr8\",\"data-styles-preset\":\"AcMI_880b\",style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\"},children:\"INTERNATIONAL BRANDS\"})}),className:\"framer-1lb6ens\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1czn33\",\"data-framer-name\":\"Section PROCESS\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ov9kgz\",\"data-framer-name\":\"Process Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iso6up\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8ln1d-container\",nodeId:\"hIK_3Q3e4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SideTitle,{color:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",height:\"100%\",id:\"hIK_3Q3e4\",layoutId:\"hIK_3Q3e4\",title:\"Our Process\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-371pr8\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgb(197, 192, 183))\"},children:\"Collaborative Design Process:\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),\"Our approach blends luxury and precision, transforming your vision into a reality.\"]})}),className:\"framer-x8h49q\",\"data-framer-name\":\"Collaborative Design Process: We dive deep into your brand's essence, ideate innovative solutions, and meticulously craft exceptional experiences for success.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xzgmy7\",\"data-framer-name\":\"Process Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12orsci\",\"data-framer-name\":\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+0+7714.4+0+187.2+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg\",srcSet:\"https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg 1000w\"}},QsOjzMEOj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg\",srcSet:\"https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:`max(${componentViewport?.width||\"100vw\"} - 600px, 1px)`,src:\"https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg\",srcSet:\"https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H3imVI5dWyWF16G2SNMvhXe033Y.jpg 1000w\"},className:\"framer-1cldc7o\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efrnbc\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",style:{\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"Our\"})}),className:\"framer-w65zcz\",\"data-framer-name\":\"Our\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",style:{\"--framer-text-color\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\"},children:\"PROCESS\"})}),className:\"framer-1d9tlkk\",\"data-framer-name\":\"PROCESS\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rt17u5\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17iujpi\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gp5djh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t8uq3l\",\"data-styles-preset\":\"JuvA9K84_\",children:\"01\"})}),className:\"framer-bktwsc\",\"data-framer-name\":\"01\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p3sh7e\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Consultation\"})}),className:\"framer-17uhu7p\",\"data-framer-name\":\"Consultation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12lgk7i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We begin with a consultation with you and a visit to your property, in order to understand your vision and style. Through our meticulous experience, we gather insight into exactly what it is you would like to create.\"})}),className:\"framer-22wd1l\",\"data-framer-name\":\"We aspire to be a leading force in shaping captivating brand experiences that resonate with audiences worldwide.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dftoir\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlhvos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gqi31v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t8uq3l\",\"data-styles-preset\":\"JuvA9K84_\",children:\"02\"})}),className:\"framer-26d7yl\",\"data-framer-name\":\"02\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8slkr\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Concept\"})})},Kbv4_kp4U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Concept\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Design\"})}),className:\"framer-v54z2j\",\"data-framer-name\":\"Design\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9exwub\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Our process begins by fostering a close collaborative relationship with our clients, where we start shaping a working concept through on-site visits, digital explorations and renders. With a strong focus on project management, we meticulously outline each phase of the project to guarantee transparency.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"During this stage, we focus on producing detailed concepts, along with rough visuals and moodboards, tailoring each element to the specific needs and vision of the project.\"})]}),className:\"framer-ylyz87\",\"data-framer-name\":\"We aspire to be a leading force in shaping captivating brand experiences that resonate with audiences worldwide. Through innovation, collaboration, and pushing artistic boundaries, we strive to create impactful design solutions that leave a lasting impression.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qmb8ng\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"MOODBOARDS\"})}),className:\"framer-p78x23\",\"data-framer-name\":\"Webdesign\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"ConceptS\"})}),className:\"framer-c6fb7\",\"data-framer-name\":\"Print\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"KEY VISUALS\"})}),className:\"framer-x022zy\",\"data-framer-name\":\"Print\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h6husq\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6wlon\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13u47sn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t8uq3l\",\"data-styles-preset\":\"JuvA9K84_\",children:\"03\"})}),className:\"framer-1iym3d8\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-61fm41\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Execution\"})}),className:\"framer-15mt7p9\",\"data-framer-name\":\"Delivery\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hc0vfm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Once we are confident that our explorations are refined into a working concept for the design, and upon reaching a mutual agreement, we will proceed to prepare any final visuals, technical drawings along with a detailed quotation.\"})}),className:\"framer-3zidvv\",\"data-framer-name\":\"We aspire to be a leading force in shaping captivating brand experiences that resonate with audiences worldwide. Through innovation, collaboration, and pushing artistic boundaries, we strive to create impactful design solutions that leave a lasting impression.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rerky7\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"Bespoke furniture\"})}),className:\"framer-10wcl0g\",\"data-framer-name\":\"Webdesign\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"project management\"})}),className:\"framer-1py60f0\",\"data-framer-name\":\"Social Media\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"technical specifications\"})}),className:\"framer-259p9j hidden-n7ol2c hidden-g8xzyv\",\"data-framer-name\":\"Print\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7n9pgr\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z065e8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pjw647\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t8uq3l\",\"data-styles-preset\":\"JuvA9K84_\",children:\"04\"})}),className:\"framer-oykw9g\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eq5vi2\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Delivery\"})}),className:\"framer-a2xapg\",\"data-framer-name\":\"Delivery\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fakhvw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Our team, including expert craftsmen and skilled workers with whom we have built strong relationships over many years, will begin the meticulous installation of your furniture, fittings, curtains, carpets, and other essentials with utmost precision and care. We keep our client continuously informed at every stage, providing frequent updates to ensure the project aligns perfectly with expectations.\"})}),className:\"framer-1kgp9j\",\"data-framer-name\":\"We aspire to be a leading force in shaping captivating brand experiences that resonate with audiences worldwide. Through innovation, collaboration, and pushing artistic boundaries, we strive to create impactful design solutions that leave a lasting impression.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4dkof\",\"data-framer-name\":\"List\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"LUXURIOUS CURTAINS\"})}),className:\"framer-1vw9ixs hidden-n7ol2c hidden-g8xzyv\",\"data-framer-name\":\"Social Media\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"BESPOKE CARPENTRY\"})}),className:\"framer-orbt06\",\"data-framer-name\":\"Print\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"PROFESSIONAL INSTALLATIONS\"})}),className:\"framer-o2hynx\",\"data-framer-name\":\"Webdesign\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m0hsx7\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1czo9a5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jhhwqw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t8uq3l\",\"data-styles-preset\":\"JuvA9K84_\",children:\"05\"})}),className:\"framer-1redird\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zusxf7\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Aftercare\"})}),className:\"framer-1hrn92z\",\"data-framer-name\":\"Delivery\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frgcz5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"With the finishing touches in place, we maintain ongoing support and get feedback from our clients to ensure that they are able to enjoy their new homes to the fullest.\"})}),className:\"framer-hqmaab\",\"data-framer-name\":\"We aspire to be a leading force in shaping captivating brand experiences that resonate with audiences worldwide. Through innovation, collaboration, and pushing artistic boundaries, we strive to create impactful design solutions that leave a lasting impression.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x37d2t\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"SUpport\"})}),className:\"framer-dih1p\",\"data-framer-name\":\"Webdesign\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"on-site visits\"})}),className:\"framer-119n35g\",\"data-framer-name\":\"Print\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"Project management\"})}),className:\"framer-hwrpdk\",\"data-framer-name\":\"Print\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-j2dhh4\",\"data-framer-name\":\"Section SUPPLIERS\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-101dc9t\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-74pgcm-container\",nodeId:\"kyTuCU27b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SideTitle,{color:\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(36, 36, 34))\",height:\"100%\",id:\"kyTuCU27b\",layoutId:\"kyTuCU27b\",title:\"Suppliers\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14fd69x\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ws88al\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rv03v1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wr64l2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujertu\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",children:\"Brands\"})}),className:\"framer-4lxepi\",\"data-framer-name\":\"Our\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",children:\"in Stock\"})}),className:\"framer-yz86r5\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12i9s8q-container\",nodeId:\"I5krWX7U5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{ApxukoHYo:\"See all Suppliers\",QkE8o0HIe:resolvedLinks4[1]},JtN8IEEEW:{QkE8o0HIe:resolvedLinks4[3]},Kbv4_kp4U:{ApxukoHYo:\"See all Suppliers\",QkE8o0HIe:resolvedLinks4[4]},QsOjzMEOj:{QkE8o0HIe:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"Our Suppliers\",height:\"100%\",id:\"I5krWX7U5\",layoutId:\"I5krWX7U5\",QkE8o0HIe:resolvedLinks4[0],UKYg0ulNp:\"ArrowRight\",variant:\"MblpBuNJI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j55bcr\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1po5agv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:[\"Discover the world's finest furniture, lighting, textiles and home accessories. With hundreds of options and catalogues to choose from as well as bespoke services for furniture and upholstery, we will be able to make whatever you want.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Visit our showroom to experience the samples first-hand.\"]})})},Kbv4_kp4U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:[\"Discover the world's finest furniture, lighting, textiles and home accessories. With hundreds of options and catalogues to choose from as well as bespoke services for furniture and upholstery, we will be able to make whatever you want.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Visit our showroom to experience the samples first-hand.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"Discover a selection of the world's finest furniture, lighting, textiles, and home accessories. Our expansive collection, enriched by a variety of options and catalogues, pairs seamlessly with our custom furniture and bespoke upholstery services, enabling us to create anything you desire, made to measure.\"})}),className:\"framer-12wcw5h\",\"data-framer-name\":\"From crafting compelling brand identities to delivering innovative digital solutions, our meticulous art direction ensures cohesive experiences. With engaging social media campaigns, we ignite meaningful connections, helping your brand thrive in the digital landscape.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:[\"Discover the world's finest furniture, lighting, textiles and home accessories. With hundreds of options and catalogues to choose from as well as bespoke services for furniture and upholstery, we will be able to make whatever you want.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Visit our showroom to experience the samples first-hand.\"]})})},Kbv4_kp4U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:[\"Discover the world's finest furniture, lighting, textiles and home accessories. With hundreds of options and catalogues to choose from as well as bespoke services for furniture and upholstery, we will be able to make whatever you want.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Visit our showroom to experience the samples first-hand.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",children:\"Visit our showroom to see the samples first-hand and browse through our huge collection of designer fabrics.\"})}),className:\"framer-1v8j9t2\",\"data-framer-name\":\"From crafting compelling brand identities to delivering innovative digital solutions, our meticulous art direction ensures cohesive experiences. With engaging social media campaigns, we ignite meaningful connections, helping your brand thrive in the digital landscape.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1k6doos\",\"data-framer-name\":\"Suppliers grid\",children:[/*#__PURE__*/_jsx(MotionMainWithOptimizedAppearEffect,{animate:animation8,\"aria-label\":\"Featured work grid container\",className:\"framer-oik00r\",\"data-framer-appear-id\":\"oik00r\",\"data-framer-name\":\"Featured Work Grid\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{\"aria-label\":\"CMS item collection list\",className:\"framer-1b269ji\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iZKJWnUc6\",data:SupplierList,type:\"Collection\"},limit:{type:\"LiteralValue\",value:12},select:[{collection:\"iZKJWnUc6\",name:\"yKCxz2BkS\",type:\"Identifier\"},{collection:\"iZKJWnUc6\",name:\"iBrazcUBL\",type:\"Identifier\"},{collection:\"iZKJWnUc6\",name:\"OaibxMOGZ\",type:\"Identifier\"},{collection:\"iZKJWnUc6\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"iZKJWnUc6\",name:\"iBrazcUBL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"?\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"iZKJWnUc6\",name:\"iBrazcUBL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"-\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"iZKJWnUc6\",name:\"lUrZE02wX\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({iBrazcUBL:iBrazcUBLiZKJWnUc6,id:idiZKJWnUc6,OaibxMOGZ:OaibxMOGZiZKJWnUc6,yKCxz2BkS:yKCxz2BkSiZKJWnUc6},index2)=>{iBrazcUBLiZKJWnUc6??=\"\";OaibxMOGZiZKJWnUc6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iZKJWnUc6-${idiZKJWnUc6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OaibxMOGZ:OaibxMOGZiZKJWnUc6},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{href:undefined},Kbv4_kp4U:{href:undefined}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"W6zzWJkDr\"},motionChild:true,nodeId:\"i0Wj8c5tc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{\"aria-label\":\"Items wapper\",className:\"framer-1h1qylj framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 208px) / 4, 200px)`,...toResponsiveImage(yKCxz2BkSiZKJWnUc6)},whileHover:animation10},JtN8IEEEW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+0+12033.2+40+0+0+0+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(yKCxz2BkSiZKJWnUc6)}},Kbv4_kp4U:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 208px) / 4, 200px)`,...toResponsiveImage(yKCxz2BkSiZKJWnUc6)},whileHover:animation10},QsOjzMEOj:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 3, 200px)`,...toResponsiveImage(yKCxz2BkSiZKJWnUc6)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 196px) / 4, 200px)`,...toResponsiveImage(yKCxz2BkSiZKJWnUc6)},className:\"framer-1jw0gf7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},children:\"Title\"})}),className:\"framer-fbb5dw\",\"data-framer-name\":\"Invision Studio\",fonts:[\"FS;Satoshi-medium\"],text:iBrazcUBLiZKJWnUc6,verticalAlignment:\"center\",withExternalLayout:true})]})})})})},idiZKJWnUc6);})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fy6vsk\",\"data-framer-name\":\"See All Strip\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"RYi0fdylr\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined},{href:{webPageId:\"qYlKwcMAu\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6laaz-container\",nodeId:\"SObkn2mst\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{QkE8o0HIe:resolvedLinks5[1]},JtN8IEEEW:{QkE8o0HIe:resolvedLinks5[3],style:{width:\"100%\"}},Kbv4_kp4U:{QkE8o0HIe:resolvedLinks5[4]},QsOjzMEOj:{QkE8o0HIe:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"See more Brands\",height:\"100%\",id:\"SObkn2mst\",layoutId:\"SObkn2mst\",QkE8o0HIe:resolvedLinks5[0],UKYg0ulNp:\"ArrowRight\",variant:\"MblpBuNJI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o706xz\",\"data-framer-name\":\"Section TESTIMONIALS\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-94bho8\",\"data-framer-name\":\"CARD ROW\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eee9vf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BpB1zYmMu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"BpB1zYmMu\",layoutId:\"BpB1zYmMu\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-77w6u0-container\",inComponentSlot:true,nodeId:\"xBvSZpwHT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"xBvSZpwHT\",l2PRx9pCq:'She is fun and entertaining whilst listening and taking the job very seriously. It\u2019s all about you the client and what you want. She develops and creates with you and helps you realise your vision. This is an amazing process as she has so much experience and has impressive access to a diverse range of suppliers, products from all over Europe and uses some of the best local craftsman. She is dynamic and gives momentum to the difficult business of getting a home beautifully put together. Having lived in 8 countries I have experience of working with designers and I can honestly say Alison is exceptional and we cannot thank her enough for getting the detail on our luxury boutique beachfront pad just right, and on time.\"',layoutId:\"xBvSZpwHT\",MqYQk4oqw:\"Jennifer Kesler\",style:{height:\"100%\"},t8Xu1PIRD:false,V5dmilz2G:\"Working with Alison as our designer was a great experience from day one.\",width:\"100%\",XRXhRdbkw:\"Marbella\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-152c33i-container\",inComponentSlot:true,nodeId:\"S0eoFXGXY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"S0eoFXGXY\",l2PRx9pCq:\"Imagine a dream coming true with minimum hassle, maximum quality and brilliant ideas. Alison quickly cottoned on to our eclectic style for a historic monument which we totally restored from a ruinous state to the magnificent home it is now. \",layoutId:\"S0eoFXGXY\",MqYQk4oqw:\"Alexandra Salzer Levy\",style:{width:\"100%\"},t8Xu1PIRD:false,V5dmilz2G:'\"A thing of beauty is a joy forever\" John Keats put it in words - Alison realises it in practice.',width:\"100%\",XRXhRdbkw:\"The Netherlands\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q3cukz-container\",inComponentSlot:true,nodeId:\"ICYI5q0pM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"ICYI5q0pM\",l2PRx9pCq:\"Living in Holland and working with Ali in Spain is a very relaxing way of putting things together from a distance. She is a very good listener, finding ways together with us, keeping an eye on the building works and deliveries. She handles everything - and within our budget.\",layoutId:\"ICYI5q0pM\",MqYQk4oqw:\"Edith & Peter Karsten\",style:{width:\"100%\"},t8Xu1PIRD:false,V5dmilz2G:\"We could not have done it without her help and the best thing of all is we now have a new friend in Spain!\",width:\"100%\",XRXhRdbkw:\"The Netherlands\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pkzssr-container\",inComponentSlot:true,nodeId:\"PlXn9_NYG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"PlXn9_NYG\",l2PRx9pCq:\"Alison took the stress off our shoulders, bringing samples to our home and ensuring her suggestions were in keeping with our taste and pocket.  There was absolutely no pressure  which was much appreciated  and she saw the project through from start to finish with energy and flair. The end result was a fabulous finca in the hills which has an air of a boutique hotel.\",layoutId:\"PlXn9_NYG\",MqYQk4oqw:\"Grace Frankel\",style:{width:\"100%\"},t8Xu1PIRD:false,V5dmilz2G:\"We had a major interior design project to undertake and were fortunate to find the perfect person to do the job.\",width:\"100%\",XRXhRdbkw:\"Gibraltar\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yfhf7-container\",inComponentSlot:true,nodeId:\"yKovnlAUJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"yKovnlAUJ\",l2PRx9pCq:\"She completely designed the interior of my mansion in Marbella in 2000 to exactly my specifications, and over the years has proved herself to be refreshingly  honest and extremely capable, always going the extra mile in everything she does for her clients.\",layoutId:\"yKovnlAUJ\",MqYQk4oqw:\"Neil McGlynn\",style:{width:\"100%\"},t8Xu1PIRD:false,V5dmilz2G:\"I have used Alison as my Interior Designer for over 20 years.\",width:\"100%\",XRXhRdbkw:\"Wraysbury\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1leu3c0-container\",inComponentSlot:true,nodeId:\"E4xhuO_M3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"E4xhuO_M3\",l2PRx9pCq:\"She comes highly recommended and I have worked with her numerous times.\",layoutId:\"E4xhuO_M3\",MqYQk4oqw:\"Louise & Bernard Hitchen\",style:{width:\"100%\"},t8Xu1PIRD:false,V5dmilz2G:\"Exceptional Creativity and Results.\",width:\"100%\",XRXhRdbkw:\"Sotogrande & Guernsey\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfiu8q hidden-72rtr7 hidden-n7ol2c hidden-1g6n99x hidden-g8xzyv\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",children:\"CLIENT\"})}),className:\"framer-1aojvi7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",children:\"STORIES\"})}),className:\"framer-drl81a\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1990q6e-container\",nodeId:\"QawF7xZCS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"xHJVrlAp9\"}},children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"QawF7xZCS\",layoutId:\"QawF7xZCS\",style:{width:\"100%\"},variant:\"mE9TU5zGT\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n0fdv\",\"data-framer-name\":\"Call to action\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127fmj1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d2vv3l\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14z4ysj\",\"data-styles-preset\":\"ovg9D21_X\",children:\"Let's work\"})}),className:\"framer-1n2a7ws\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2klufk\",\"data-styles-preset\":\"N67EoJd0d\",children:\"together\"})}),className:\"framer-xrolxq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Let's create something beautiful together. At Alison Bethell-Collins, we believe in collaboration to bring your unique vision to life. Whether you're a home or business owner, let's work together to take your space to the next level. Get in touch and let's get started.\"})}),className:\"framer-divhc4\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xhoTs71s2\"},implicitPathVariables:undefined},{href:{webPageId:\"xhoTs71s2\"},implicitPathVariables:undefined},{href:{webPageId:\"xhoTs71s2\"},implicitPathVariables:undefined},{href:{webPageId:\"xhoTs71s2\"},implicitPathVariables:undefined},{href:{webPageId:\"xhoTs71s2\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hf91hu-container\",nodeId:\"maaDqNWxM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AyRkVb10h:{QkE8o0HIe:resolvedLinks6[1]},JtN8IEEEW:{QkE8o0HIe:resolvedLinks6[3],style:{width:\"100%\"}},Kbv4_kp4U:{QkE8o0HIe:resolvedLinks6[4]},QsOjzMEOj:{QkE8o0HIe:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"Schedule a consultation\",height:\"100%\",id:\"maaDqNWxM\",layoutId:\"maaDqNWxM\",QkE8o0HIe:resolvedLinks6[0],UKYg0ulNp:\"ArrowRight\",variant:\"MblpBuNJI\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-szbyv4-container\",id:elementId7,nodeId:\"Cy1Lnlyrf\",ref:ref8,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"N32m2TuiJ\"},QsOjzMEOj:{variant:\"X7nOlkXY9\"}},children:/*#__PURE__*/_jsx(Footer,{GFtTwVNn8:\"mailto:design@alisonbethellcollins.com\",h81f32mQR:\"https://www.facebook.com/alisonbethellcollinsinteriordesign\",height:\"100%\",id:\"Cy1Lnlyrf\",K1s1GUeWy:\"https://maps.app.goo.gl/hnqDMiEmRdTJe9636\",layoutId:\"Cy1Lnlyrf\",style:{width:\"100%\"},variant:\"trS9HLZeB\",vRerENHWt:\"https://api.whatsapp.com/send?phone=34627487364&text=Hello! I came from your website%20\",width:\"100%\",XpczzY3jU:\"https://www.instagram.com/alisonbethellcollins/\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ltVu7.framer-lux5qc, .framer-ltVu7 .framer-lux5qc { display: block; }\",\".framer-ltVu7.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-ltVu7 .framer-1jilq5h-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-ltVu7 .framer-e1a5wt { align-content: center; align-items: center; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #fdfbf6); border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ltVu7 .framer-7sumeb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1533zuj { align-content: flex-start; align-items: flex-start; background-color: var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-at0rhu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-6qqrn8 { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-1547ell { flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-154tkhh-container, .framer-ltVu7 .framer-sil3cy-container, .framer-ltVu7 .framer-15wyy94-container, .framer-ltVu7 .framer-1zkdtf-container, .framer-ltVu7 .framer-1r7zor4-container, .framer-ltVu7 .framer-1y5706x-container, .framer-ltVu7 .framer-dqk63x-container, .framer-ltVu7 .framer-1j8ln1d-container, .framer-ltVu7 .framer-74pgcm-container, .framer-ltVu7 .framer-12i9s8q-container, .framer-ltVu7 .framer-v6laaz-container, .framer-ltVu7 .framer-hf91hu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ltVu7 .framer-1xgbzx4 { align-content: center; align-items: center; background-color: var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-13jmrsf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-8lu9cn-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-p0sn9w, .framer-ltVu7 .framer-17yf73i, .framer-ltVu7 .framer-qdjnwx, .framer-ltVu7 .framer-jdniov, .framer-ltVu7 .framer-nrh7fn, .framer-ltVu7 .framer-py22ds, .framer-ltVu7 .framer-v62mlb, .framer-ltVu7 .framer-1etbh8b, .framer-ltVu7 .framer-dnmzmh, .framer-ltVu7 .framer-1lz03oo, .framer-ltVu7 .framer-1cefe09, .framer-ltVu7 .framer-1neeony { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 500px; }\",\".framer-ltVu7 .framer-zalu8x { align-content: flex-start; align-items: flex-start; background-color: var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 44px; width: 100%; }\",\".framer-ltVu7 .framer-1urhhtz, .framer-ltVu7 .framer-10mcxza, .framer-ltVu7 .framer-i1hqwn, .framer-ltVu7 .framer-iso6up, .framer-ltVu7 .framer-101dc9t { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ltVu7 .framer-10t0poc, .framer-ltVu7 .framer-1wet95s, .framer-ltVu7 .framer-1brxvh8, .framer-ltVu7 .framer-14fd69x { background-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #e0ddd5); flex: none; height: 100%; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-oyi8vb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-1xrfiet { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-v34iec { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 444px; }\",\".framer-ltVu7 .framer-jh3qmm, .framer-ltVu7 .framer-rdr5tp, .framer-ltVu7 .framer-1n2h323, .framer-ltVu7 .framer-18ibdn6, .framer-ltVu7 .framer-qqjznz, .framer-ltVu7 .framer-xoxcgf, .framer-ltVu7 .framer-12tn382, .framer-ltVu7 .framer-qnmql0, .framer-ltVu7 .framer-5qhzr1, .framer-ltVu7 .framer-9zhv1b, .framer-ltVu7 .framer-mv6t5c, .framer-ltVu7 .framer-18dwgik, .framer-ltVu7 .framer-1706i51, .framer-ltVu7 .framer-19dvb6u, .framer-ltVu7 .framer-oa7gc9, .framer-ltVu7 .framer-xxytfx, .framer-ltVu7 .framer-4xh3e2, .framer-ltVu7 .framer-zi9zw1, .framer-ltVu7 .framer-w9pgge, .framer-ltVu7 .framer-1kshi8g, .framer-ltVu7 .framer-dm8o9i, .framer-ltVu7 .framer-qifpt1, .framer-ltVu7 .framer-c2b52z, .framer-ltVu7 .framer-1qfqaqo, .framer-ltVu7 .framer-9qqg, .framer-ltVu7 .framer-sd8g3u, .framer-ltVu7 .framer-1a20heq, .framer-ltVu7 .framer-u5jlye, .framer-ltVu7 .framer-1pj2qto, .framer-ltVu7 .framer-1lb6ens, .framer-ltVu7 .framer-22wd1l, .framer-ltVu7 .framer-ylyz87, .framer-ltVu7 .framer-p78x23, .framer-ltVu7 .framer-c6fb7, .framer-ltVu7 .framer-x022zy, .framer-ltVu7 .framer-3zidvv, .framer-ltVu7 .framer-10wcl0g, .framer-ltVu7 .framer-1py60f0, .framer-ltVu7 .framer-259p9j, .framer-ltVu7 .framer-1kgp9j, .framer-ltVu7 .framer-1vw9ixs, .framer-ltVu7 .framer-orbt06, .framer-ltVu7 .framer-o2hynx, .framer-ltVu7 .framer-hqmaab, .framer-ltVu7 .framer-dih1p, .framer-ltVu7 .framer-119n35g, .framer-ltVu7 .framer-hwrpdk, .framer-ltVu7 .framer-4lxepi, .framer-ltVu7 .framer-yz86r5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-1184yql, .framer-ltVu7 .framer-efqevi, .framer-ltVu7 .framer-1rre6kq, .framer-ltVu7 .framer-9q9toy, .framer-ltVu7 .framer-1u4n8ou { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-1g6a90, .framer-ltVu7 .framer-2xsfs9, .framer-ltVu7 .framer-1dftoir, .framer-ltVu7 .framer-1h6husq, .framer-ltVu7 .framer-7n9pgr, .framer-ltVu7 .framer-m0hsx7 { background-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #e0ddd5); flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-46kzsw { align-content: flex-start; align-items: flex-start; background-color: var(--token-f82457c5-8438-48a1-bcce-dde3448a0d3a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-16d7tqd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-wzidq5-container, .framer-ltVu7 .framer-1990q6e-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-gejxdw { align-content: flex-start; align-items: flex-start; background-color: var(--token-cd2934a7-4e35-4347-a32c-9650fca4db23, #f4f1eb); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 44px; width: 100%; }\",\".framer-ltVu7 .framer-lxr523 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-1damj3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-wpkrl3, .framer-ltVu7 .framer-clkfb1, .framer-ltVu7 .framer-elhvzm, .framer-ltVu7 .framer-1wr64l2, .framer-ltVu7 .framer-1j55bcr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-gxr7b9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-7l3fq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-hp5w1h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1kmzeki { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-crpp7o-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-tr09zu { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-r0ty08 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 8px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-8u9b0l-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 256px); position: relative; width: 100%; }\",\".framer-ltVu7 .framer-rqf83r { 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: 16px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-5zmzba { align-content: flex-start; align-items: flex-start; background-color: var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 40px 40px; position: relative; scroll-margin-top: 44px; width: 100%; }\",\".framer-ltVu7 .framer-1szm9ez { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-mgbmjv, .framer-ltVu7 .framer-1fbiwe4, .framer-ltVu7 .framer-rv03v1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-8yrfeg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-1qs2ofh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-njj0bd-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-ltVu7 .framer-kx8f7b-container { flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\".framer-ltVu7 .framer-1udpwg5-container { flex: none; height: auto; position: relative; width: auto; z-index: 4; }\",\".framer-ltVu7 .framer-w9p61k-container { flex: none; height: auto; position: relative; width: auto; z-index: 5; }\",\".framer-ltVu7 .framer-1fviq3x-container { flex: none; height: auto; position: relative; width: auto; z-index: 7; }\",\".framer-ltVu7 .framer-1tadvms, .framer-ltVu7 .framer-1ybdwg, .framer-ltVu7 .framer-hpty5x, .framer-ltVu7 .framer-1seq8bk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1czn33, .framer-ltVu7 .framer-1d2vv3l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1ov9kgz { align-content: flex-start; align-items: flex-start; background-color: var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-371pr8 { background-color: #e0ddd5; flex: none; height: 100%; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-x8h49q, .framer-ltVu7 .framer-17uhu7p, .framer-ltVu7 .framer-v54z2j, .framer-ltVu7 .framer-15mt7p9, .framer-ltVu7 .framer-a2xapg, .framer-ltVu7 .framer-1hrn92z { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-1xzgmy7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-12orsci { flex: 1 0 0px; gap: 0px; height: 100vh; overflow: hidden; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-ltVu7 .framer-1cldc7o { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-ltVu7 .framer-efrnbc { align-content: flex-end; align-items: flex-end; bottom: 80px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 80px; width: min-content; }\",\".framer-ltVu7 .framer-w65zcz, .framer-ltVu7 .framer-1d9tlkk, .framer-ltVu7 .framer-bktwsc, .framer-ltVu7 .framer-26d7yl, .framer-ltVu7 .framer-1iym3d8, .framer-ltVu7 .framer-oykw9g, .framer-ltVu7 .framer-1redird { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ltVu7 .framer-rt17u5 { align-content: flex-start; align-items: flex-start; background-color: var(--token-cd2934a7-4e35-4347-a32c-9650fca4db23, #f4f1eb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px; position: relative; width: 600px; }\",\".framer-ltVu7 .framer-17iujpi, .framer-ltVu7 .framer-12lgk7i, .framer-ltVu7 .framer-1tlhvos, .framer-ltVu7 .framer-9exwub, .framer-ltVu7 .framer-h6wlon, .framer-ltVu7 .framer-1hc0vfm, .framer-ltVu7 .framer-z065e8, .framer-ltVu7 .framer-1fakhvw, .framer-ltVu7 .framer-1czo9a5, .framer-ltVu7 .framer-1frgcz5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-gp5djh, .framer-ltVu7 .framer-1gqi31v, .framer-ltVu7 .framer-13u47sn, .framer-ltVu7 .framer-pjw647, .framer-ltVu7 .framer-jhhwqw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-p3sh7e, .framer-ltVu7 .framer-t8slkr, .framer-ltVu7 .framer-61fm41, .framer-ltVu7 .framer-eq5vi2, .framer-ltVu7 .framer-zusxf7 { background-color: var(--token-e830bf38-f845-4e94-a74a-251577f31ae2, #242422); flex: none; height: 1px; position: relative; width: 40px; }\",\".framer-ltVu7 .framer-qmb8ng, .framer-ltVu7 .framer-rerky7, .framer-ltVu7 .framer-y4dkof, .framer-ltVu7 .framer-1x37d2t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-j2dhh4 { align-content: flex-start; align-items: flex-start; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #fdfbf6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 0px 40px; position: relative; scroll-margin-top: 44px; width: 100%; }\",\".framer-ltVu7 .framer-ws88al { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 192px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-ujertu { 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-ltVu7 .framer-1po5agv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-12wcw5h, .framer-ltVu7 .framer-1v8j9t2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 495px; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-1k6doos { align-content: flex-start; align-items: flex-start; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #fdfbf6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-oik00r { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ltVu7 .framer-1b269ji { display: grid; flex: none; gap: 12px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1h1qylj { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-ltVu7 .framer-1jw0gf7 { flex: none; height: 240px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-fbb5dw { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-1fy6vsk { 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 16px 0px 16px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1o706xz { align-content: center; align-items: center; background-color: var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, #ffffff); 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-ltVu7 .framer-94bho8 { 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-ltVu7 .framer-eee9vf-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ltVu7 .framer-77w6u0-container { height: 701px; position: relative; width: auto; }\",\".framer-ltVu7 .framer-152c33i-container, .framer-ltVu7 .framer-q3cukz-container, .framer-ltVu7 .framer-pkzssr-container, .framer-ltVu7 .framer-yfhf7-container, .framer-ltVu7 .framer-1leu3c0-container { height: auto; position: relative; width: 518px; }\",\".framer-ltVu7 .framer-mfiu8q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-1aojvi7, .framer-ltVu7 .framer-drl81a, .framer-ltVu7 .framer-1n2a7ws, .framer-ltVu7 .framer-xrolxq { flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-n0fdv { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-ltVu7 .framer-127fmj1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ltVu7 .framer-divhc4 { flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ltVu7 .framer-szbyv4-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-ltVu7[data-border=\"true\"]::after, .framer-ltVu7 [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: 1600px) and (max-width: 2559px) { .framer-ltVu7.framer-72rtr7 { width: 1600px; } .framer-ltVu7 .framer-1jilq5h-container { order: 2; } .framer-ltVu7 .framer-e1a5wt, .framer-ltVu7 .framer-2xsfs9 { order: 5; } .framer-ltVu7 .framer-7sumeb, .framer-ltVu7 .framer-1xrfiet, .framer-ltVu7 .framer-oik00r { order: 0; } .framer-ltVu7 .framer-1533zuj { padding: 120px 80px 80px 80px; } .framer-ltVu7 .framer-at0rhu { gap: unset; justify-content: space-between; padding: 0px; } .framer-ltVu7 .framer-zalu8x { gap: 96px; order: 1; } .framer-ltVu7 .framer-oyi8vb, .framer-ltVu7 .framer-1damj3, .framer-ltVu7 .framer-mgbmjv, .framer-ltVu7 .framer-1ov9kgz, .framer-ltVu7 .framer-rv03v1 { gap: 96px; } .framer-ltVu7 .framer-v34iec { width: 100%; } .framer-ltVu7 .framer-1184yql { order: 1; } .framer-ltVu7 .framer-1g6a90, .framer-ltVu7 .framer-1fy6vsk { order: 3; } .framer-ltVu7 .framer-46kzsw { order: 4; } .framer-ltVu7 .framer-gejxdw { gap: 96px; order: 7; } .framer-ltVu7 .framer-clkfb1, .framer-ltVu7 .framer-elhvzm, .framer-ltVu7 .framer-1j55bcr { gap: 64px; } .framer-ltVu7 .framer-crpp7o-container { height: 800px; } .framer-ltVu7 .framer-8u9b0l-container { height: var(--framer-aspect-ratio-supported, 150px); } .framer-ltVu7 .framer-5zmzba { gap: 96px; order: 11; } .framer-ltVu7 .framer-1czn33 { order: 18; } .framer-ltVu7 .framer-j2dhh4 { gap: 96px; order: 19; padding: 120px 40px 0px 40px; } .framer-ltVu7 .framer-1k6doos { order: 20; padding: 40px 80px 40px 80px; } .framer-ltVu7 .framer-1b269ji { gap: 16px; } .framer-ltVu7 .framer-1h1qylj { gap: 4px; } .framer-ltVu7 .framer-1jw0gf7 { overflow: hidden; will-change: var(--framer-will-change-effect-override, transform); } .framer-ltVu7 .framer-1o706xz { background-color: unset; order: 23; } .framer-ltVu7 .framer-94bho8 { order: 6; } .framer-ltVu7 .framer-1990q6e-container { order: 24; } .framer-ltVu7 .framer-n0fdv { order: 6; padding: 120px 80px 80px 80px; } .framer-ltVu7 .framer-szbyv4-container { order: 7; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ltVu7.framer-72rtr7 { padding: 68px 0px 0px 0px; width: 810px; } .framer-ltVu7 .framer-e1a5wt { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; } .framer-ltVu7 .framer-1533zuj { gap: 16px; padding: 64px 0px 64px 0px; } .framer-ltVu7 .framer-at0rhu { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 40px 0px 40px; } .framer-ltVu7 .framer-6qqrn8, .framer-ltVu7 .framer-1xrfiet, .framer-ltVu7 .framer-1184yql, .framer-ltVu7 .framer-wpkrl3, .framer-ltVu7 .framer-8yrfeg, .framer-ltVu7 .framer-elhvzm, .framer-ltVu7 .framer-1wr64l2, .framer-ltVu7 .framer-1j55bcr { flex: none; width: 100%; } .framer-ltVu7 .framer-zalu8x, .framer-ltVu7 .framer-gejxdw, .framer-ltVu7 .framer-5zmzba { padding: 64px 40px 64px 40px; } .framer-ltVu7 .framer-oyi8vb, .framer-ltVu7 .framer-mgbmjv, .framer-ltVu7 .framer-rv03v1 { flex-direction: column; gap: 32px; } .framer-ltVu7 .framer-v34iec { width: 100%; } .framer-ltVu7 .framer-lxr523 { gap: 40px; } .framer-ltVu7 .framer-1damj3 { flex-direction: column; gap: 32px; order: 0; } .framer-ltVu7 .framer-clkfb1 { flex: none; gap: 24px; width: 100%; } .framer-ltVu7 .framer-7l3fq1 { order: 7; } .framer-ltVu7 .framer-tr09zu { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-ltVu7 .framer-8u9b0l-container { height: var(--framer-aspect-ratio-supported, 243px); } .framer-ltVu7 .framer-1szm9ez { gap: 80px; } .framer-ltVu7 .framer-12orsci { height: 1000px; } .framer-ltVu7 .framer-efrnbc { bottom: 48px; right: 48px; } .framer-ltVu7 .framer-rt17u5 { flex: 1 0 0px; gap: 64px; padding: 64px; width: 1px; } .framer-ltVu7 .framer-j2dhh4 { background-color: unset; padding: 64px 40px 64px 40px; } .framer-ltVu7 .framer-ws88al { gap: 128px; } .framer-ltVu7 .framer-1k6doos { padding: 40px; } .framer-ltVu7 .framer-oik00r { padding: 10px; } .framer-ltVu7 .framer-1b269ji { gap: 10px; grid-template-columns: repeat(3, minmax(200px, 1fr)); }}\",\"@media (max-width: 809px) { .framer-ltVu7.framer-72rtr7 { padding: 64px 0px 0px 0px; width: 390px; } .framer-ltVu7 .framer-e1a5wt { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; } .framer-ltVu7 .framer-1533zuj { gap: 16px; padding: 40px 24px 40px 24px; } .framer-ltVu7 .framer-at0rhu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; padding: 0px; } .framer-ltVu7 .framer-6qqrn8, .framer-ltVu7 .framer-wpkrl3, .framer-ltVu7 .framer-1kmzeki, .framer-ltVu7 .framer-8yrfeg, .framer-ltVu7 .framer-1wr64l2 { flex: none; width: 100%; } .framer-ltVu7 .framer-13jmrsf { height: min-content; } .framer-ltVu7 .framer-zalu8x, .framer-ltVu7 .framer-gejxdw, .framer-ltVu7 .framer-5zmzba, .framer-ltVu7 .framer-1ov9kgz { gap: 24px; padding: 64px 16px 40px 16px; } .framer-ltVu7 .framer-oyi8vb, .framer-ltVu7 .framer-1fbiwe4 { flex-direction: column; gap: 40px; } .framer-ltVu7 .framer-1xrfiet, .framer-ltVu7 .framer-clkfb1, .framer-ltVu7 .framer-elhvzm, .framer-ltVu7 .framer-1j55bcr { flex: none; gap: 24px; width: 100%; } .framer-ltVu7 .framer-v34iec, .framer-ltVu7 .framer-hf91hu-container { width: 100%; } .framer-ltVu7 .framer-1184yql, .framer-ltVu7 .framer-efqevi, .framer-ltVu7 .framer-1rre6kq, .framer-ltVu7 .framer-9q9toy, .framer-ltVu7 .framer-1u4n8ou { flex: none; gap: 16px; width: 100%; } .framer-ltVu7 .framer-lxr523, .framer-ltVu7 .framer-1szm9ez { gap: 40px; } .framer-ltVu7 .framer-1damj3, .framer-ltVu7 .framer-mgbmjv, .framer-ltVu7 .framer-rv03v1 { flex-direction: column; gap: 16px; } .framer-ltVu7 .framer-7l3fq1 { gap: 8px; } .framer-ltVu7 .framer-hp5w1h, .framer-ltVu7 .framer-1xzgmy7 { flex-direction: column; } .framer-ltVu7 .framer-crpp7o-container { height: 340px; } .framer-ltVu7 .framer-tr09zu { gap: 8px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-ltVu7 .framer-8u9b0l-container { height: var(--framer-aspect-ratio-supported, 150px); } .framer-ltVu7 .framer-rqf83r { padding: 16px 0px 16px 0px; } .framer-ltVu7 .framer-1y5706x-container, .framer-ltVu7 .framer-v6laaz-container { flex: 1 0 0px; width: 1px; } .framer-ltVu7 .framer-1tadvms, .framer-ltVu7 .framer-1ybdwg, .framer-ltVu7 .framer-hpty5x, .framer-ltVu7 .framer-1seq8bk { gap: 16px; } .framer-ltVu7 .framer-12orsci { flex: none; height: 500px; position: relative; top: unset; width: 100%; } .framer-ltVu7 .framer-efrnbc { bottom: 48px; right: 48px; } .framer-ltVu7 .framer-rt17u5 { gap: 48px; padding: 32px 16px 32px 16px; width: 100%; } .framer-ltVu7 .framer-j2dhh4 { gap: 24px; padding: 64px 16px 0px 16px; } .framer-ltVu7 .framer-ws88al { gap: 96px; } .framer-ltVu7 .framer-1k6doos { gap: 24px; padding: 40px 16px 40px 16px; } .framer-ltVu7 .framer-1b269ji { gap: 10px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-ltVu7 .framer-1jw0gf7 { height: 200px; } .framer-ltVu7 .framer-1fy6vsk { padding: 0px; } .framer-ltVu7 .framer-1o706xz { padding: 64px 0px 0px 0px; } .framer-ltVu7 .framer-mfiu8q { padding: 0px 16px 0px 16px; } .framer-ltVu7 .framer-n0fdv { background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #fdfbf6); flex-direction: row; gap: 24px; justify-content: flex-start; overflow: visible; padding: 64px 16px 40px 16px; } .framer-ltVu7 .framer-127fmj1 { gap: 24px; }}\",\"@media (min-width: 2560px) { .framer-ltVu7.framer-72rtr7 { width: 2560px; } .framer-ltVu7 .framer-1jilq5h-container { order: 2; } .framer-ltVu7 .framer-e1a5wt, .framer-ltVu7 .framer-2xsfs9 { order: 5; } .framer-ltVu7 .framer-7sumeb, .framer-ltVu7 .framer-1xrfiet, .framer-ltVu7 .framer-oik00r { order: 0; } .framer-ltVu7 .framer-1533zuj { padding: 120px 80px 80px 80px; } .framer-ltVu7 .framer-at0rhu { gap: unset; justify-content: space-between; padding: 0px; } .framer-ltVu7 .framer-zalu8x { gap: 96px; order: 1; } .framer-ltVu7 .framer-oyi8vb, .framer-ltVu7 .framer-1damj3, .framer-ltVu7 .framer-mgbmjv, .framer-ltVu7 .framer-1ov9kgz, .framer-ltVu7 .framer-rv03v1 { gap: 96px; } .framer-ltVu7 .framer-v34iec { width: 100%; } .framer-ltVu7 .framer-1184yql { order: 1; } .framer-ltVu7 .framer-1g6a90, .framer-ltVu7 .framer-1fy6vsk { order: 3; } .framer-ltVu7 .framer-46kzsw { order: 4; } .framer-ltVu7 .framer-gejxdw { gap: 96px; order: 7; } .framer-ltVu7 .framer-clkfb1, .framer-ltVu7 .framer-elhvzm, .framer-ltVu7 .framer-1j55bcr { gap: 64px; } .framer-ltVu7 .framer-crpp7o-container { height: 800px; } .framer-ltVu7 .framer-8u9b0l-container { height: var(--framer-aspect-ratio-supported, 150px); } .framer-ltVu7 .framer-5zmzba { gap: 96px; order: 11; } .framer-ltVu7 .framer-1czn33 { order: 18; } .framer-ltVu7 .framer-j2dhh4 { gap: 96px; order: 19; padding: 120px 40px 0px 40px; } .framer-ltVu7 .framer-1k6doos { order: 20; padding: 40px 80px 40px 80px; } .framer-ltVu7 .framer-1b269ji { gap: 16px; } .framer-ltVu7 .framer-1h1qylj { gap: 4px; } .framer-ltVu7 .framer-1jw0gf7 { overflow: hidden; will-change: var(--framer-will-change-effect-override, transform); } .framer-ltVu7 .framer-1o706xz { background-color: unset; order: 23; } .framer-ltVu7 .framer-94bho8 { order: 6; } .framer-ltVu7 .framer-1990q6e-container { order: 24; } .framer-ltVu7 .framer-n0fdv { order: 6; padding: 120px 80px 80px 80px; } .framer-ltVu7 .framer-szbyv4-container { order: 7; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10478\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AyRkVb10h\":{\"layout\":[\"fixed\",\"auto\"]},\"QsOjzMEOj\":{\"layout\":[\"fixed\",\"auto\"]},\"JtN8IEEEW\":{\"layout\":[\"fixed\",\"auto\"]},\"Kbv4_kp4U\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"gqVhfhACD\":{\"pattern\":\":gqVhfhACD\",\"name\":\"home-section\"},\"wZFHLaOO1\":{\"pattern\":\":wZFHLaOO1\",\"name\":\"about\"},\"DQS2gRT7a\":{\"pattern\":\":DQS2gRT7a\",\"name\":\"projects\"},\"h6ln7DYpw\":{\"pattern\":\":h6ln7DYpw\",\"name\":\"services\"},\"y5ECfxsx1\":{\"pattern\":\":y5ECfxsx1\",\"name\":\"process\"},\"HoONBWwpG\":{\"pattern\":\":HoONBWwpG\",\"name\":\"suppliers\"},\"jh_AA8Mwa\":{\"pattern\":\":jh_AA8Mwa\",\"name\":\"testimonials-section\"},\"Cy1Lnlyrf\":{\"pattern\":\":Cy1Lnlyrf\",\"name\":\"footer-section\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ltVu7\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10478,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/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavBarFonts,...ScrollButtonFonts,...TickerFonts,...SideTitleFonts,...ButtonFonts,...ClientLogosCopy2Fonts,...ProjectImageCopyFonts,...IndustryTextFonts,...CardFonts,...Ticker1Fonts,...InstagramFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"10478\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AyRkVb10h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QsOjzMEOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JtN8IEEEW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kbv4_kp4U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"gqVhfhACD\\\":{\\\"pattern\\\":\\\":gqVhfhACD\\\",\\\"name\\\":\\\"home-section\\\"},\\\"wZFHLaOO1\\\":{\\\"pattern\\\":\\\":wZFHLaOO1\\\",\\\"name\\\":\\\"about\\\"},\\\"DQS2gRT7a\\\":{\\\"pattern\\\":\\\":DQS2gRT7a\\\",\\\"name\\\":\\\"projects\\\"},\\\"h6ln7DYpw\\\":{\\\"pattern\\\":\\\":h6ln7DYpw\\\",\\\"name\\\":\\\"services\\\"},\\\"y5ECfxsx1\\\":{\\\"pattern\\\":\\\":y5ECfxsx1\\\",\\\"name\\\":\\\"process\\\"},\\\"HoONBWwpG\\\":{\\\"pattern\\\":\\\":HoONBWwpG\\\",\\\"name\\\":\\\"suppliers\\\"},\\\"jh_AA8Mwa\\\":{\\\"pattern\\\":\\\":jh_AA8Mwa\\\",\\\"name\\\":\\\"testimonials-section\\\"},\\\"Cy1Lnlyrf\\\":{\\\"pattern\\\":\\\":Cy1Lnlyrf\\\",\\\"name\\\":\\\"footer-section\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "h", "getFonts", "Ticker", "u", "O", "R", "r", "e", "a", "Q", "X", "i", "re", "MotionConfigContext", "t", "m", "se", "p", "x", "b", "v", "k", "Y", "useLocaleInfo", "d", "c", "h", "y", "j", "D", "W", "N", "useVariantState", "u", "H", "I", "pe", "q", "ae", "LayoutGroup", "motion", "cx", "Ticker", "Image2", "w", "withCSS", "KWdT3hary_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "colorActive", "height", "id", "image", "image2", "industry", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "O4i2760fR", "eetAYFyiL", "AAlCMQWh5", "dO8LNaXW9", "J2MwXYUgU", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Image2", "css", "FramermWwTPCcgl", "withCSS", "mWwTPCcgl_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "u", "h", "v", "b", "r", "e", "t", "y", "w", "I", "a", "re", "MotionConfigContext", "n", "i", "se", "p", "j", "E", "o", "l", "f", "m", "k", "W", "Y", "useLocaleInfo", "d", "c", "x", "K", "H", "T", "S", "P", "G", "F", "R", "q", "A", "useVariantState", "h", "u", "C", "N", "pe", "D", "ae", "LayoutGroup", "motion", "cx", "Link", "Image2", "RichText2", "withCSS", "qbIMhevOh_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "iconTop", "id", "location", "name1", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "MqYQk4oqw", "XRXhRdbkw", "V5dmilz2G", "l2PRx9pCq", "t8Xu1PIRD", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "SVG", "RichText2", "x", "css", "FramerRcI3KVpws", "withCSS", "RcI3KVpws_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "NavBarFonts", "getFonts", "w_SozfxtW_default", "RichTextWithFX", "withFX", "RichText2", "ScrollButtonFonts", "r0Bktci6f_default", "ContainerWithFX", "Container", "TickerFonts", "Ticker", "SideTitleFonts", "kd_Q1oPZQ_default", "ButtonFonts", "nEDMPIJV1_default", "ClientLogosCopy2Fonts", "KWdT3hary_default", "MotionDivWithFX", "motion", "ProjectImageCopyFonts", "qbIMhevOh_default", "IndustryTextFonts", "mWwTPCcgl_default", "MotionMainWithOptimizedAppearEffect", "withOptimizedAppearEffect", "CardFonts", "RcI3KVpws_default", "Ticker1Fonts", "InstagramFonts", "TvSwvo9Q0_default", "FooterFonts", "RwxZLcIgs_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation6", "transition6", "animation7", "addImageAlt", "image", "alt", "transition7", "animation8", "animation9", "transition8", "animation10", "transition9", "animation11", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "hAQy__hhIyZ3YHyRQs", "r6pdiuCSAyZ3YHyRQs", "xEyvcTwoLyZ3YHyRQs", "idyZ3YHyRQs", "hAQy__hhID3hXRQaKB", "r6pdiuCSAD3hXRQaKB", "xEyvcTwoLD3hXRQaKB", "idD3hXRQaKB", "yKCxz2BkSiZKJWnUc6", "iBrazcUBLiZKJWnUc6", "OaibxMOGZiZKJWnUc6", "idiZKJWnUc6", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "isDisplayed", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed1", "isDisplayed2", "elementId4", "ref5", "isDisplayed3", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "Image2", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "Sj3SzQ8Lf_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks3", "getLoadingLazyAtYPosition", "resolvedLinks4", "GY0ChKIeT_default", "collection2", "paginationInfo2", "loadMore2", "index2", "Link", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
