{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/ySWZTeQlUTMamSsroYZy/FramerIcon.js", "ssg:https://framerusercontent.com/modules/cvD8DtiUrkjinfK1CLez/XM5uKN1Ly75FTd7n47xx/WPoVjMwST.js", "ssg:https://framerusercontent.com/modules/cBowTRgLrWbaff2njub1/Gf2dXKcX0fJUYSRc74hL/n3qCYUH_7.js", "ssg:https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/CvR35MeeJnSdIYAAt4ht/FramerIcon.js", "ssg:https://framerusercontent.com/modules/L3lKD597dOJD05U0aecF/ZkSVKLqGojNx98MVCWgK/QW9j_VHAt.js", "ssg:https://framerusercontent.com/modules/UJ7EPBH5uOHHtRBz9RGn/ggFMZeZ3uAHIxKRTMLoB/rJLu1ejl5.js", "ssg:https://framerusercontent.com/modules/sUjCCuZHfo1paEnoKIgr/atzSq2JiEOoWe3GQMmtx/g9iKOOb8C.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const DEFAULT_COLOR=\"#1570EF\";const DEFAULT_SVG=`<svg viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m13.076 12.21 3.098 3.098a1.25 1.25 0 0 0 1.768 0l3.424-3.424a1.25 1.25 0 0 0 0-1.768l-3.424-3.424a1.25 1.25 0 0 0-1.768 0L13.076 9.79l4.902.903c.341.063.341.552 0 .614l-4.902.903Zm-3.206.786-3.178 3.178a1.25 1.25 0 0 0 0 1.768l3.424 3.424a1.25 1.25 0 0 0 1.768 0l3.424-3.424a1.25 1.25 0 0 0 0-1.768l-3.043-3.043-.878 4.768c-.063.34-.552.34-.615 0l-.902-4.903ZM6.692 4.058a1.25 1.25 0 0 0 0 1.768l3.177 3.178.903-4.903c.063-.34.552-.34.615 0l.878 4.768 3.043-3.043a1.25 1.25 0 0 0 0-1.768L11.884.634a1.25 1.25 0 0 0-1.768 0L6.692 4.058ZM.634 10.116a1.25 1.25 0 0 0 0 1.768l3.424 3.424a1.25 1.25 0 0 0 1.768 0l3.123-3.122-4.768-.879c-.341-.063-.341-.552 0-.614l4.768-.879-3.123-3.122a1.25 1.25 0 0 0-1.768 0L.634 10.116Z\" fill=\"#1570EF\"/></svg>`;const DEFAULT_STROKE_WIDTH=1.5;/*\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n */export default function FramerIcon(props){const customizedSvg=getCustomizedSVG(props.svg,props.color,props.strokeWidth);return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",maxWidth:\"100%\",maxHeight:\"100%\",alignItems:\"center\",justifyContent:\"center\",...props.style},dangerouslySetInnerHTML:{__html:customizedSvg}});}addPropertyControls(FramerIcon,{svg:{title:\"SVG\",type:ControlType.String,defaultValue:DEFAULT_SVG},strokeWidth:{type:ControlType.Number,step:.25,min:.5,max:2,defaultValue:DEFAULT_STROKE_WIDTH,hidden:props=>hideStrokeWidth(props.svg)},color:{type:ControlType.Color,defaultValue:DEFAULT_COLOR,description:\"By [FramerIcons](https://www.framericons.com?utm=FramerIconComponent)\"}});// hide if no stroke-width or all stroke-widths are 0\nfunction hideStrokeWidth(svg){const strokeWidthMatch=svg.match(/stroke-width=\"([^\"]+)\"/g);return!strokeWidthMatch||strokeWidthMatch.every(match=>match===\"0\");}function getCustomizedSVG(svg,color=DEFAULT_COLOR,strokeWidth=DEFAULT_STROKE_WIDTH){var _svg_match,_svgAttributes_match,_svgAttributes_match1,_svgAttributes_match_,_svgAttributes_match2;let svgAttributes=(_svg_match=svg.match(/<svg[^>]*>/))===null||_svg_match===void 0?void 0:_svg_match[0];if(!svgAttributes){var _svg_match1;svg=DEFAULT_SVG;svgAttributes=(_svg_match1=svg.match(/<svg[^>]*>/))===null||_svg_match1===void 0?void 0:_svg_match1[0];}const width=(_svgAttributes_match=svgAttributes.match(/width=\"([^\"]*)\"/))===null||_svgAttributes_match===void 0?void 0:_svgAttributes_match[1];const height=(_svgAttributes_match1=svgAttributes.match(/height=\"([^\"]*)\"/))===null||_svgAttributes_match1===void 0?void 0:_svgAttributes_match1[1];const viewBox=(_svgAttributes_match2=svgAttributes.match(/viewBox=\"([^\"]*)\"/))===null||_svgAttributes_match2===void 0?void 0:(_svgAttributes_match_=_svgAttributes_match2[1])===null||_svgAttributes_match_===void 0?void 0:_svgAttributes_match_.split(\" \");const viewBoxWidth=viewBox===null||viewBox===void 0?void 0:viewBox[2];const viewBoxHeight=viewBox===null||viewBox===void 0?void 0:viewBox[3];if(width&&height){svg=svg.replace(/width=\"([^\"]*)\"/,`width=\"100%\"`);svg=svg.replace(/height=\"([^\"]*)\"/,`height=\"100%\"`);}else{svg=svg.replace(/<svg/,`<svg width=\"100%\" height=\"100%\"`);}let hasElementsWithValidColors=false;if(svg.includes('fill=\"')||svg.includes('stroke=\"')){svg=svg.replace(/(fill|stroke)=\"([^\"]+)\"/g,(match,attr,value)=>{if(value===\"none\"||value===\"transparent\"){return match;}// For iconsax -> Crypto -> Bulk\nif(value===\"white\"){return\"\";}hasElementsWithValidColors=true;return`${attr}=\"${color}\"`;});}if(!hasElementsWithValidColors){svg=svg.replace(/<(path|circle|rect|line|polygon|polyline) /g,match=>`<${match.slice(1)} fill=\"${color}\" `);}svg=svg.replace(/stroke-width=\"([^\"]+)\"/g,(match,value)=>{if(value===\"0\"){return match;}return`stroke-width=\"${strokeWidth}\"`;});return svg;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIcon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerIcon.map", "// Generated by Framer (f082bd6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"__SF-UI-Text-Regular__\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-7SBe7 .framer-styles-preset-ndxwj8:not(.rich-text-wrapper), .framer-7SBe7 .framer-styles-preset-ndxwj8.rich-text-wrapper p { --framer-font-family: \".SFNSText\", \"SFProText-Regular\", \"SFUIText-Regular\", \".SFUIText\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-de75fab0-39a5-4ac4-9acc-c2e2d5d70d6d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-7SBe7\";\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 (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WxiabQjBChSQck2vN2ZR/LCakrirdDnlOWtuejJMT/eXFksl3vB.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/cvD8DtiUrkjinfK1CLez/XM5uKN1Ly75FTd7n47xx/WPoVjMwST.js\";const cycleOrder=[\"M_7Zw09bh\",\"hwOciD9st\",\"PWem5heaq\",\"dpOtdzEeY\",\"jA_nLNPNO\",\"FzWZC9yNq\",\"RebS4mWLH\",\"TMgwB7pa1\"];const serializationHash=\"framer-EQxNX\";const variantClassNames={dpOtdzEeY:\"framer-v-1rv9b66\",FzWZC9yNq:\"framer-v-1dl4nnw\",hwOciD9st:\"framer-v-1gnyppo\",jA_nLNPNO:\"framer-v-1hpbknv\",M_7Zw09bh:\"framer-v-crajzp\",PWem5heaq:\"framer-v-q0hyko\",RebS4mWLH:\"framer-v-d9c4nv\",TMgwB7pa1:\"framer-v-ych5xs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Bathroom\":\"FzWZC9yNq\",\"Mobile General\":\"TMgwB7pa1\",\"Mobile Windows\":\"RebS4mWLH\",\"Mobiloe kitchen\":\"jA_nLNPNO\",Bathroom:\"hwOciD9st\",Genral:\"dpOtdzEeY\",Kitchen:\"M_7Zw09bh\",Windows:\"PWem5heaq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"M_7Zw09bh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M_7Zw09bh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-crajzp\",className,classNames),\"data-framer-name\":\"Kitchen\",layoutDependency:layoutDependency,layoutId:\"M_7Zw09bh\",ref:ref??ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({dpOtdzEeY:{\"data-framer-name\":\"Genral\"},FzWZC9yNq:{\"data-framer-name\":\"Mobile Bathroom\"},hwOciD9st:{\"data-framer-name\":\"Bathroom\"},jA_nLNPNO:{\"data-framer-name\":\"Mobiloe kitchen\"},PWem5heaq:{\"data-framer-name\":\"Windows\"},RebS4mWLH:{\"data-framer-name\":\"Mobile Windows\"},TMgwB7pa1:{\"data-framer-name\":\"Mobile General\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qkk071\",layoutDependency:layoutDependency,layoutId:\"AKqvuij6_\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ombnv\",\"data-framer-name\":\"text comp\",layoutDependency:layoutDependency,layoutId:\"yh4OW2MPj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ndxwj8\",\"data-styles-preset\":\"WPoVjMwST\",children:\"Cabinets and Range-hood and Range-hood filters\"})}),className:\"framer-1pk3yfw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HWJf5X8fW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dpOtdzEeY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Steam cleaning/Extraction Vacuum , Rubbish removal\"})})},FzWZC9yNq:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Shower-screen restoration Limescale & Soap scum cleaned\"})]})},hwOciD9st:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Shower-screen restoration Limescale & Soap scum cleaned\"})})},PWem5heaq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Fly screen & latch cleaning\"})})},RebS4mWLH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Fly screen & latch cleaning\"})})},TMgwB7pa1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Steam cleaning/Extraction Vacuum , Rubbish removal\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gkvh0i\",\"data-framer-name\":\"text comp\",layoutDependency:layoutDependency,layoutId:\"Z6g3GToAX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Oven Cleaning - Glass, Plates & Grills cleaned in & out\"})}),className:\"framer-ob8p8j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EQBRcUBna\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dpOtdzEeY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Laundry Cleaning - Detergent residue and hard water cleaning and polishing\"})})},FzWZC9yNq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Tiles & Grout cleaned Drainage cleaned\"})})},hwOciD9st:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ndxwj8\",\"data-styles-preset\":\"WPoVjMwST\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ndxwj8\",\"data-styles-preset\":\"WPoVjMwST\",children:\"Tiles & Grout cleaned Drainage cleaned\"})]})},PWem5heaq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Tracks and Casing Cleaning \"})})},RebS4mWLH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Tracks and Casing Cleaning \"})})},TMgwB7pa1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Laundry Cleaning - Detergent residue and hard water cleaning and polishing\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sofhld\",\"data-framer-name\":\"text comp\",layoutDependency:layoutDependency,layoutId:\"q69WdqwEz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Stove - Grates, Burners, Knobs and Surface all sides\"})}),className:\"framer-1ggcpyx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Jmh2bVwtT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dpOtdzEeY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"AC cleaning Filter Cleaning\"})})},FzWZC9yNq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Toilet Bowl cleaned Hard water/lime scale cleaned\"})})},hwOciD9st:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Toilet Bowl cleaned Hard water/lime scale cleaned\"})})},PWem5heaq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Frame and Glass Cleaning\"})})},RebS4mWLH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"Frame and Glass Cleaning\"})})},TMgwB7pa1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-d8ekab\",\"data-styles-preset\":\"eXFksl3vB\",children:\"AC cleaning Filter Cleaning\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EQxNX.framer-19vp7np, .framer-EQxNX .framer-19vp7np { display: block; }\",\".framer-EQxNX.framer-crajzp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 416px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EQxNX .framer-qkk071 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-EQxNX .framer-7ombnv, .framer-EQxNX .framer-1gkvh0i, .framer-EQxNX .framer-sofhld { flex: none; height: 128px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-EQxNX .framer-1pk3yfw, .framer-EQxNX .framer-ob8p8j, .framer-EQxNX .framer-1ggcpyx { aspect-ratio: 3.9765625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 128px); left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EQxNX.framer-crajzp, .framer-EQxNX .framer-qkk071 { gap: 0px; } .framer-EQxNX.framer-crajzp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EQxNX.framer-crajzp > :first-child { margin-left: 0px; } .framer-EQxNX.framer-crajzp > :last-child { margin-right: 0px; } .framer-EQxNX .framer-qkk071 > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-EQxNX .framer-qkk071 > :first-child { margin-top: 0px; } .framer-EQxNX .framer-qkk071 > :last-child { margin-bottom: 0px; } }\",\".framer-EQxNX.framer-v-1hpbknv.framer-crajzp, .framer-EQxNX.framer-v-1dl4nnw.framer-crajzp, .framer-EQxNX.framer-v-d9c4nv.framer-crajzp, .framer-EQxNX.framer-v-ych5xs.framer-crajzp { width: 350px; }\",\".framer-EQxNX.framer-v-1hpbknv .framer-qkk071, .framer-EQxNX.framer-v-1dl4nnw .framer-qkk071, .framer-EQxNX.framer-v-d9c4nv .framer-qkk071, .framer-EQxNX.framer-v-ych5xs .framer-qkk071 { gap: 53px; }\",\".framer-EQxNX.framer-v-1hpbknv .framer-7ombnv, .framer-EQxNX.framer-v-1hpbknv .framer-1gkvh0i, .framer-EQxNX.framer-v-1hpbknv .framer-sofhld, .framer-EQxNX.framer-v-d9c4nv .framer-1gkvh0i, .framer-EQxNX.framer-v-d9c4nv .framer-sofhld { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; padding: 0px; }\",\".framer-EQxNX.framer-v-1hpbknv .framer-1pk3yfw, .framer-EQxNX.framer-v-1hpbknv .framer-ob8p8j, .framer-EQxNX.framer-v-1hpbknv .framer-1ggcpyx, .framer-EQxNX.framer-v-ych5xs .framer-1pk3yfw, .framer-EQxNX.framer-v-ych5xs .framer-1ggcpyx { aspect-ratio: unset; flex: 1 0 0px; height: 1px; left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EQxNX.framer-v-1hpbknv .framer-qkk071, .framer-EQxNX.framer-v-1hpbknv .framer-7ombnv, .framer-EQxNX.framer-v-1hpbknv .framer-1gkvh0i, .framer-EQxNX.framer-v-1hpbknv .framer-sofhld { gap: 0px; } .framer-EQxNX.framer-v-1hpbknv .framer-qkk071 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-EQxNX.framer-v-1hpbknv .framer-qkk071 > :first-child, .framer-EQxNX.framer-v-1hpbknv .framer-7ombnv > :first-child, .framer-EQxNX.framer-v-1hpbknv .framer-1gkvh0i > :first-child, .framer-EQxNX.framer-v-1hpbknv .framer-sofhld > :first-child { margin-top: 0px; } .framer-EQxNX.framer-v-1hpbknv .framer-qkk071 > :last-child, .framer-EQxNX.framer-v-1hpbknv .framer-7ombnv > :last-child, .framer-EQxNX.framer-v-1hpbknv .framer-1gkvh0i > :last-child, .framer-EQxNX.framer-v-1hpbknv .framer-sofhld > :last-child { margin-bottom: 0px; } .framer-EQxNX.framer-v-1hpbknv .framer-7ombnv > *, .framer-EQxNX.framer-v-1hpbknv .framer-1gkvh0i > *, .framer-EQxNX.framer-v-1hpbknv .framer-sofhld > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-EQxNX.framer-v-1dl4nnw .framer-7ombnv, .framer-EQxNX.framer-v-1dl4nnw .framer-1gkvh0i, .framer-EQxNX.framer-v-1dl4nnw .framer-sofhld, .framer-EQxNX.framer-v-d9c4nv .framer-7ombnv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; }\",\".framer-EQxNX.framer-v-1dl4nnw .framer-1pk3yfw, .framer-EQxNX.framer-v-1dl4nnw .framer-ob8p8j, .framer-EQxNX.framer-v-1dl4nnw .framer-1ggcpyx, .framer-EQxNX.framer-v-d9c4nv .framer-1pk3yfw { aspect-ratio: unset; height: 80px; left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EQxNX.framer-v-1dl4nnw .framer-qkk071, .framer-EQxNX.framer-v-1dl4nnw .framer-7ombnv, .framer-EQxNX.framer-v-1dl4nnw .framer-1gkvh0i, .framer-EQxNX.framer-v-1dl4nnw .framer-sofhld { gap: 0px; } .framer-EQxNX.framer-v-1dl4nnw .framer-qkk071 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-EQxNX.framer-v-1dl4nnw .framer-qkk071 > :first-child, .framer-EQxNX.framer-v-1dl4nnw .framer-7ombnv > :first-child, .framer-EQxNX.framer-v-1dl4nnw .framer-1gkvh0i > :first-child, .framer-EQxNX.framer-v-1dl4nnw .framer-sofhld > :first-child { margin-top: 0px; } .framer-EQxNX.framer-v-1dl4nnw .framer-qkk071 > :last-child, .framer-EQxNX.framer-v-1dl4nnw .framer-7ombnv > :last-child, .framer-EQxNX.framer-v-1dl4nnw .framer-1gkvh0i > :last-child, .framer-EQxNX.framer-v-1dl4nnw .framer-sofhld > :last-child { margin-bottom: 0px; } .framer-EQxNX.framer-v-1dl4nnw .framer-7ombnv > *, .framer-EQxNX.framer-v-1dl4nnw .framer-1gkvh0i > *, .framer-EQxNX.framer-v-1dl4nnw .framer-sofhld > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-EQxNX.framer-v-d9c4nv .framer-ob8p8j, .framer-EQxNX.framer-v-d9c4nv .framer-1ggcpyx, .framer-EQxNX.framer-v-ych5xs .framer-ob8p8j { aspect-ratio: unset; height: auto; left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EQxNX.framer-v-d9c4nv .framer-qkk071, .framer-EQxNX.framer-v-d9c4nv .framer-7ombnv, .framer-EQxNX.framer-v-d9c4nv .framer-1gkvh0i, .framer-EQxNX.framer-v-d9c4nv .framer-sofhld { gap: 0px; } .framer-EQxNX.framer-v-d9c4nv .framer-qkk071 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-EQxNX.framer-v-d9c4nv .framer-qkk071 > :first-child, .framer-EQxNX.framer-v-d9c4nv .framer-7ombnv > :first-child, .framer-EQxNX.framer-v-d9c4nv .framer-1gkvh0i > :first-child, .framer-EQxNX.framer-v-d9c4nv .framer-sofhld > :first-child { margin-top: 0px; } .framer-EQxNX.framer-v-d9c4nv .framer-qkk071 > :last-child, .framer-EQxNX.framer-v-d9c4nv .framer-7ombnv > :last-child, .framer-EQxNX.framer-v-d9c4nv .framer-1gkvh0i > :last-child, .framer-EQxNX.framer-v-d9c4nv .framer-sofhld > :last-child { margin-bottom: 0px; } .framer-EQxNX.framer-v-d9c4nv .framer-7ombnv > *, .framer-EQxNX.framer-v-d9c4nv .framer-1gkvh0i > *, .framer-EQxNX.framer-v-d9c4nv .framer-sofhld > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-EQxNX.framer-v-ych5xs .framer-7ombnv, .framer-EQxNX.framer-v-ych5xs .framer-1gkvh0i, .framer-EQxNX.framer-v-ych5xs .framer-sofhld { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; padding: 0px; width: 317px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EQxNX.framer-v-ych5xs .framer-qkk071, .framer-EQxNX.framer-v-ych5xs .framer-7ombnv, .framer-EQxNX.framer-v-ych5xs .framer-1gkvh0i, .framer-EQxNX.framer-v-ych5xs .framer-sofhld { gap: 0px; } .framer-EQxNX.framer-v-ych5xs .framer-qkk071 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-EQxNX.framer-v-ych5xs .framer-qkk071 > :first-child, .framer-EQxNX.framer-v-ych5xs .framer-7ombnv > :first-child, .framer-EQxNX.framer-v-ych5xs .framer-1gkvh0i > :first-child, .framer-EQxNX.framer-v-ych5xs .framer-sofhld > :first-child { margin-top: 0px; } .framer-EQxNX.framer-v-ych5xs .framer-qkk071 > :last-child, .framer-EQxNX.framer-v-ych5xs .framer-7ombnv > :last-child, .framer-EQxNX.framer-v-ych5xs .framer-1gkvh0i > :last-child, .framer-EQxNX.framer-v-ych5xs .framer-sofhld > :last-child { margin-bottom: 0px; } .framer-EQxNX.framer-v-ych5xs .framer-7ombnv > *, .framer-EQxNX.framer-v-ych5xs .framer-1gkvh0i > *, .framer-EQxNX.framer-v-ych5xs .framer-sofhld > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 604\n * @framerIntrinsicWidth 416\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hwOciD9st\":{\"layout\":[\"fixed\",\"auto\"]},\"PWem5heaq\":{\"layout\":[\"fixed\",\"auto\"]},\"dpOtdzEeY\":{\"layout\":[\"fixed\",\"auto\"]},\"jA_nLNPNO\":{\"layout\":[\"fixed\",\"auto\"]},\"FzWZC9yNq\":{\"layout\":[\"fixed\",\"auto\"]},\"RebS4mWLH\":{\"layout\":[\"fixed\",\"auto\"]},\"TMgwB7pa1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern3qCYUH_7=withCSS(Component,css,\"framer-EQxNX\");export default Framern3qCYUH_7;Framern3qCYUH_7.displayName=\"text stack\";Framern3qCYUH_7.defaultProps={height:604,width:416};addPropertyControls(Framern3qCYUH_7,{variant:{options:[\"M_7Zw09bh\",\"hwOciD9st\",\"PWem5heaq\",\"dpOtdzEeY\",\"jA_nLNPNO\",\"FzWZC9yNq\",\"RebS4mWLH\",\"TMgwB7pa1\"],optionTitles:[\"Kitchen\",\"Bathroom\",\"Windows\",\"Genral\",\"Mobiloe kitchen\",\"Mobile Bathroom\",\"Mobile Windows\",\"Mobile General\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framern3qCYUH_7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern3qCYUH_7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"604\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"416\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hwOciD9st\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PWem5heaq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dpOtdzEeY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jA_nLNPNO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FzWZC9yNq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RebS4mWLH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TMgwB7pa1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n3qCYUH_7.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const DEFAULT_COLOR=\"#1570EF\";const DEFAULT_SVG=`<svg viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m13.076 12.21 3.098 3.098a1.25 1.25 0 0 0 1.768 0l3.424-3.424a1.25 1.25 0 0 0 0-1.768l-3.424-3.424a1.25 1.25 0 0 0-1.768 0L13.076 9.79l4.902.903c.341.063.341.552 0 .614l-4.902.903Zm-3.206.786-3.178 3.178a1.25 1.25 0 0 0 0 1.768l3.424 3.424a1.25 1.25 0 0 0 1.768 0l3.424-3.424a1.25 1.25 0 0 0 0-1.768l-3.043-3.043-.878 4.768c-.063.34-.552.34-.615 0l-.902-4.903ZM6.692 4.058a1.25 1.25 0 0 0 0 1.768l3.177 3.178.903-4.903c.063-.34.552-.34.615 0l.878 4.768 3.043-3.043a1.25 1.25 0 0 0 0-1.768L11.884.634a1.25 1.25 0 0 0-1.768 0L6.692 4.058ZM.634 10.116a1.25 1.25 0 0 0 0 1.768l3.424 3.424a1.25 1.25 0 0 0 1.768 0l3.123-3.122-4.768-.879c-.341-.063-.341-.552 0-.614l4.768-.879-3.123-3.122a1.25 1.25 0 0 0-1.768 0L.634 10.116Z\" fill=\"#1570EF\"/></svg>`;const DEFAULT_STROKE_WIDTH=1.5;/*\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n */export default function FramerIcons(props){const customizedSvg=getCustomizedSVG(props.svg,props.color,props.strokeWidth);return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",maxWidth:\"100%\",maxHeight:\"100%\",alignItems:\"center\",justifyContent:\"center\",...props.style},dangerouslySetInnerHTML:{__html:customizedSvg}});}addPropertyControls(FramerIcons,{svg:{title:\"SVG\",type:ControlType.String,defaultValue:DEFAULT_SVG},strokeWidth:{type:ControlType.Number,step:.25,min:.5,max:2,defaultValue:DEFAULT_STROKE_WIDTH,hidden:props=>hideStrokeWidth(props.svg)},color:{type:ControlType.Color,defaultValue:DEFAULT_COLOR,description:\"By [FramerIcons](https://www.framericons.com?utm=FramerIconComponent)\"}});// hide if no stroke-width or all stroke-widths are 0\nfunction hideStrokeWidth(svg){const strokeWidthMatch=svg.match(/stroke-width=\"([^\"]+)\"/g);return!strokeWidthMatch||strokeWidthMatch.every(match=>match===\"0\");}function getCustomizedSVG(svg,color=DEFAULT_COLOR,strokeWidth=DEFAULT_STROKE_WIDTH){let svgAttributes=svg.match(/<svg[^>]*>/)?.[0];if(!svgAttributes){svg=DEFAULT_SVG;svgAttributes=svg.match(/<svg[^>]*>/)?.[0];}const width=svgAttributes.match(/width=\"([^\"]*)\"/)?.[1];const height=svgAttributes.match(/height=\"([^\"]*)\"/)?.[1];const viewBox=svgAttributes.match(/viewBox=\"([^\"]*)\"/)?.[1]?.split(\" \");const viewBoxWidth=viewBox?.[2];const viewBoxHeight=viewBox?.[3];if(width&&height){svg=svg.replace(/width=\"([^\"]*)\"/,`width=\"100%\"`);svg=svg.replace(/height=\"([^\"]*)\"/,`height=\"100%\"`);}else{svg=svg.replace(/<svg/,`<svg width=\"100%\" height=\"100%\"`);}let hasElementsWithValidColors=false;if(svg.includes('fill=\"')||svg.includes('stroke=\"')){svg=svg.replace(/(fill|stroke)=\"([^\"]+)\"/g,(match,attr,value)=>{if(value===\"none\"||value===\"transparent\"){return match;}// For iconsax -> Crypto -> Bulk\nif(value===\"white\"){return\"\";}hasElementsWithValidColors=true;return`${attr}=\"${color}\"`;});}if(!hasElementsWithValidColors){svg=svg.replace(/<(path|circle|rect|line|polygon|polyline) /g,match=>`<${match.slice(1)} fill=\"${color}\" `);}svg=svg.replace(/stroke-width=\"([^\"]+)\"/g,(match,value)=>{if(value===\"0\"){return match;}return`stroke-width=\"${strokeWidth}\"`;});return svg;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIcons\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerIcon.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FramerIcons from\"https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/CvR35MeeJnSdIYAAt4ht/FramerIcon.js\";const FramerIconsFonts=getFonts(FramerIcons);const enabledGestures={J0ePivttg:{hover:true},mXd98QX_0:{hover:true}};const cycleOrder=[\"mXd98QX_0\",\"J0ePivttg\"];const serializationHash=\"framer-2gUWp\";const variantClassNames={J0ePivttg:\"framer-v-1jcoibs\",mXd98QX_0:\"framer-v-tjhdv3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={active:\"J0ePivttg\",default:\"mXd98QX_0\"};const getProps=({click,height,id,width,...props})=>{return{...props,E2BFjZLaF:click??props.E2BFjZLaF,variant:humanReadableVariantMap[props.variant]??props.variant??\"mXd98QX_0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E2BFjZLaF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mXd98QX_0\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfe8qjj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E2BFjZLaF){const res=await E2BFjZLaF(...args);if(res===false)return false;}setVariant(\"J0ePivttg\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tjhdv3\",className,classNames),\"data-framer-name\":\"default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mXd98QX_0\",onTap:onTapfe8qjj,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"J0ePivttg-hover\":{\"data-framer-name\":undefined},\"mXd98QX_0-hover\":{\"data-framer-name\":undefined},J0ePivttg:{\"data-framer-name\":\"active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1786y6g\",layoutDependency:layoutDependency,layoutId:\"BfJk0IyyH\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y534u0-container\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"p68AvpALs-container\",name:\"dot\",style:{opacity:.6},variants:{\"mXd98QX_0-hover\":{opacity:.8},J0ePivttg:{opacity:1}},children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"p68AvpALs\",layoutId:\"p68AvpALs\",name:\"dot\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-dot\" viewBox=\"0 0 16 16\">\\n  <path d=\"M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3\"/>\\n</svg>',width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2gUWp.framer-8erkx5, .framer-2gUWp .framer-8erkx5 { display: block; }\",\".framer-2gUWp.framer-tjhdv3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100px; }\",\".framer-2gUWp .framer-1786y6g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2gUWp .framer-1y534u0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2gUWp.framer-tjhdv3, .framer-2gUWp .framer-1786y6g { gap: 0px; } .framer-2gUWp.framer-tjhdv3 > *, .framer-2gUWp .framer-1786y6g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2gUWp.framer-tjhdv3 > :first-child, .framer-2gUWp .framer-1786y6g > :first-child { margin-left: 0px; } .framer-2gUWp.framer-tjhdv3 > :last-child, .framer-2gUWp .framer-1786y6g > :last-child { margin-right: 0px; } }\",\".framer-2gUWp.framer-v-1jcoibs.framer-tjhdv3 { aspect-ratio: 1 / 1; gap: 0px; height: var(--framer-aspect-ratio-supported, 100px); padding: 0px; }\",\".framer-2gUWp.framer-v-1jcoibs .framer-1786y6g { order: 0; }\",\".framer-2gUWp.framer-v-1jcoibs .framer-1y534u0-container { height: var(--framer-aspect-ratio-supported, 100px); width: 100px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2gUWp.framer-v-1jcoibs.framer-tjhdv3 { gap: 0px; } .framer-2gUWp.framer-v-1jcoibs.framer-tjhdv3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2gUWp.framer-v-1jcoibs.framer-tjhdv3 > :first-child { margin-left: 0px; } .framer-2gUWp.framer-v-1jcoibs.framer-tjhdv3 > :last-child { margin-right: 0px; } }\",\".framer-2gUWp.framer-v-tjhdv3.hover.framer-tjhdv3 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-2gUWp.framer-v-1jcoibs.hover.framer-tjhdv3 { aspect-ratio: unset; height: min-content; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"J0ePivttg\":{\"layout\":[\"fixed\",\"fixed\"]},\"IJ76_ore6\":{\"layout\":[\"fixed\",\"fixed\"]},\"oxtC71JKq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"E2BFjZLaF\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQW9j_VHAt=withCSS(Component,css,\"framer-2gUWp\");export default FramerQW9j_VHAt;FramerQW9j_VHAt.displayName=\"kitchen image tab\";FramerQW9j_VHAt.defaultProps={height:100,width:100};addPropertyControls(FramerQW9j_VHAt,{variant:{options:[\"mXd98QX_0\",\"J0ePivttg\"],optionTitles:[\"default\",\"active\"],title:\"Variant\",type:ControlType.Enum},E2BFjZLaF:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerQW9j_VHAt,[{explicitInter:true,fonts:[]},...FramerIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQW9j_VHAt\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"E2BFjZLaF\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"100\",\"framerIntrinsicHeight\":\"100\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J0ePivttg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IJ76_ore6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oxtC71JKq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QW9j_VHAt.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import IMAGES from\"https://framerusercontent.com/modules/YLdAYQCPyEAImwrjX3Io/zLHRyYmPEviaXc2uEppx/p5XqO91Eb.js\";const IMAGESFonts=getFonts(IMAGES);const cycleOrder=[\"okuhqSiiF\",\"rkjSqQ99I\",\"wcqCk4N94\",\"fq2DnbcoA\"];const serializationHash=\"framer-ttd02\";const variantClassNames={fq2DnbcoA:\"framer-v-1hfb8r5\",okuhqSiiF:\"framer-v-1j6m1ab\",rkjSqQ99I:\"framer-v-114ming\",wcqCk4N94:\"framer-v-8q40b5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={bathroom:\"rkjSqQ99I\",general:\"fq2DnbcoA\",kitchen:\"okuhqSiiF\",windows:\"wcqCk4N94\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"okuhqSiiF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"okuhqSiiF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j6m1ab\",className,classNames),\"data-framer-name\":\"kitchen\",draggable:\"true\",layoutDependency:layoutDependency,layoutId:\"okuhqSiiF\",ref:ref??ref1,style:{...style},...addPropertyOverrides({fq2DnbcoA:{\"data-framer-name\":\"general\"},rkjSqQ99I:{\"data-framer-name\":\"bathroom\"},wcqCk4N94:{\"data-framer-name\":\"windows\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1auosof\",\"data-framer-name\":\"image stack\",layoutDependency:layoutDependency,layoutId:\"J78__rIBP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+(20+((componentViewport?.height||561)-40-((componentViewport?.height||561)-40)*1)/2)+(0+(((componentViewport?.height||561)-40)*1-0-570)/2),...addPropertyOverrides({fq2DnbcoA:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-40-((componentViewport?.height||200)-40)*1)/2)+(0+(((componentViewport?.height||200)-40)*1-0-570)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m6q62w-container\",layoutDependency:layoutDependency,layoutId:\"VJ6HCVBLg-container\",children:/*#__PURE__*/_jsx(IMAGES,{height:\"100%\",id:\"VJ6HCVBLg\",layoutId:\"VJ6HCVBLg\",style:{width:\"100%\"},variant:\"BzkxiPBrw\",vWqzjU8ak:addImageAlt({src:\"https://framerusercontent.com/images/rrx9VEkfa7GgMKQ8h5CLaVdimCM.png\"},\"\"),width:\"100%\",...addPropertyOverrides({fq2DnbcoA:{variant:\"rJHKLMRAZ\"},rkjSqQ99I:{variant:\"lSrQ5ge6_\"},wcqCk4N94:{variant:\"VMoJ84EHv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+(20+((componentViewport?.height||561)-40-((componentViewport?.height||561)-40)*1)/2)+(0+(((componentViewport?.height||561)-40)*1-0-570)/2),...addPropertyOverrides({fq2DnbcoA:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-40-((componentViewport?.height||200)-40)*1)/2)+(0+(((componentViewport?.height||200)-40)*1-0-570)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oaoup8-container\",layoutDependency:layoutDependency,layoutId:\"Q0zSRAgJx-container\",children:/*#__PURE__*/_jsx(IMAGES,{height:\"100%\",id:\"Q0zSRAgJx\",layoutId:\"Q0zSRAgJx\",style:{width:\"100%\"},variant:\"tVXBquIwE\",vWqzjU8ak:addImageAlt({src:\"https://framerusercontent.com/images/3UHmZTws8Ouiq0Oe9TmdETgksk.png\"},\"\"),width:\"100%\",...addPropertyOverrides({fq2DnbcoA:{variant:\"RfwcZPKxA\"},rkjSqQ99I:{variant:\"S6SeBHyKp\"},wcqCk4N94:{variant:\"Pg_dFB6gk\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11v8dkk\",\"data-framer-name\":\"image stack\",layoutDependency:layoutDependency,layoutId:\"zmUKz8n3F\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+(20+((componentViewport?.height||561)-40-570)/2)+0,...addPropertyOverrides({fq2DnbcoA:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-40-570)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-szq15l-container\",layoutDependency:layoutDependency,layoutId:\"QI5KuJRjV-container\",children:/*#__PURE__*/_jsx(IMAGES,{height:\"100%\",id:\"QI5KuJRjV\",layoutId:\"QI5KuJRjV\",style:{width:\"100%\"},variant:\"NJca9mPLt\",vWqzjU8ak:addImageAlt({src:\"https://framerusercontent.com/images/uQV29VsTx3uTq3EK1v2yVwgelbE.png\"},\"\"),width:\"100%\",...addPropertyOverrides({fq2DnbcoA:{variant:\"BvrKeB9M8\"},rkjSqQ99I:{variant:\"M4X4nfds2\"},wcqCk4N94:{variant:\"Kwxu6lUiX\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+(20+((componentViewport?.height||561)-40-570)/2)+0,...addPropertyOverrides({fq2DnbcoA:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-40-570)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14hi390-container\",layoutDependency:layoutDependency,layoutId:\"zcRMwgFm7-container\",children:/*#__PURE__*/_jsx(IMAGES,{height:\"100%\",id:\"zcRMwgFm7\",layoutId:\"zcRMwgFm7\",style:{width:\"100%\"},variant:\"gX4RlK2yT\",vWqzjU8ak:addImageAlt({src:\"https://framerusercontent.com/images/XAlP0THUUeJrxyTC3grUY7d9Sk.png\"},\"\"),width:\"100%\",...addPropertyOverrides({fq2DnbcoA:{variant:\"mijoLlzGO\"},rkjSqQ99I:{variant:\"wSqDzDR4I\"},wcqCk4N94:{variant:\"oL0xqTkak\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xtt4gu\",\"data-framer-name\":\"image stack\",layoutDependency:layoutDependency,layoutId:\"z9fAwbbSF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+(20+((componentViewport?.height||561)-40-570)/2)+0,...addPropertyOverrides({fq2DnbcoA:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-40-570)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ueizgt-container\",layoutDependency:layoutDependency,layoutId:\"VGH7fHSVZ-container\",children:/*#__PURE__*/_jsx(IMAGES,{height:\"100%\",id:\"VGH7fHSVZ\",layoutId:\"VGH7fHSVZ\",style:{width:\"100%\"},variant:\"OfLzkEN4i\",vWqzjU8ak:addImageAlt({src:\"https://framerusercontent.com/images/i0f51aptzNmXLqKh0SW39zuHs.png\"},\"\"),width:\"100%\",...addPropertyOverrides({fq2DnbcoA:{variant:\"ZrLNwWjav\"},rkjSqQ99I:{variant:\"mseyGXOF_\"},wcqCk4N94:{variant:\"sKzOjr2v1\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+(20+((componentViewport?.height||561)-40-570)/2)+0,...addPropertyOverrides({fq2DnbcoA:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-40-570)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1325det-container\",layoutDependency:layoutDependency,layoutId:\"e4AtVATIc-container\",children:/*#__PURE__*/_jsx(IMAGES,{height:\"100%\",id:\"e4AtVATIc\",layoutId:\"e4AtVATIc\",style:{width:\"100%\"},variant:\"ePUu3yF55\",vWqzjU8ak:addImageAlt({src:\"https://framerusercontent.com/images/1NW0OTi9jHN4wZdg9IMGyM7nWOk.png\"},\"\"),width:\"100%\",...addPropertyOverrides({fq2DnbcoA:{variant:\"SPyGbLALE\"},rkjSqQ99I:{variant:\"yxEcDF2iU\"},wcqCk4N94:{variant:\"bCh42oNsX\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ttd02.framer-17dlcaz, .framer-ttd02 .framer-17dlcaz { display: block; }\",\".framer-ttd02.framer-1j6m1ab { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 3260px; }\",\".framer-ttd02 .framer-1auosof { align-content: center; align-items: center; aspect-ratio: 2.0350877192982457 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 521px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ttd02 .framer-1m6q62w-container, .framer-ttd02 .framer-oaoup8-container, .framer-ttd02 .framer-szq15l-container, .framer-ttd02 .framer-14hi390-container, .framer-ttd02 .framer-1ueizgt-container, .framer-ttd02 .framer-1325det-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ttd02 .framer-11v8dkk, .framer-ttd02 .framer-xtt4gu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ttd02.framer-1j6m1ab, .framer-ttd02 .framer-1auosof, .framer-ttd02 .framer-11v8dkk, .framer-ttd02 .framer-xtt4gu { gap: 0px; } .framer-ttd02.framer-1j6m1ab > *, .framer-ttd02 .framer-1auosof > *, .framer-ttd02 .framer-11v8dkk > *, .framer-ttd02 .framer-xtt4gu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ttd02.framer-1j6m1ab > :first-child, .framer-ttd02 .framer-1auosof > :first-child, .framer-ttd02 .framer-11v8dkk > :first-child, .framer-ttd02 .framer-xtt4gu > :first-child { margin-left: 0px; } .framer-ttd02.framer-1j6m1ab > :last-child, .framer-ttd02 .framer-1auosof > :last-child, .framer-ttd02 .framer-11v8dkk > :last-child, .framer-ttd02 .framer-xtt4gu > :last-child { margin-right: 0px; } }\",\".framer-ttd02.framer-v-1hfb8r5 .framer-1auosof { height: var(--framer-aspect-ratio-supported, 98px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 561\n * @framerIntrinsicWidth 3260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rkjSqQ99I\":{\"layout\":[\"fixed\",\"auto\"]},\"wcqCk4N94\":{\"layout\":[\"fixed\",\"auto\"]},\"fq2DnbcoA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrJLu1ejl5=withCSS(Component,css,\"framer-ttd02\");export default FramerrJLu1ejl5;FramerrJLu1ejl5.displayName=\"image slide\";FramerrJLu1ejl5.defaultProps={height:561,width:3260};addPropertyControls(FramerrJLu1ejl5,{variant:{options:[\"okuhqSiiF\",\"rkjSqQ99I\",\"wcqCk4N94\",\"fq2DnbcoA\"],optionTitles:[\"kitchen\",\"bathroom\",\"windows\",\"general\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrJLu1ejl5,[{explicitInter:true,fonts:[]},...IMAGESFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrJLu1ejl5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"3260\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rkjSqQ99I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wcqCk4N94\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fq2DnbcoA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"561\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FramerIcon from\"https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/ySWZTeQlUTMamSsroYZy/FramerIcon.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/SaU2FsVube6a3mOcbndc/n9XKltJnLeLauTjunlf0/qw2R4EqW7.js\";import TextStack from\"https://framerusercontent.com/modules/cBowTRgLrWbaff2njub1/Gf2dXKcX0fJUYSRc74hL/n3qCYUH_7.js\";import KitchenImageTab from\"https://framerusercontent.com/modules/L3lKD597dOJD05U0aecF/ZkSVKLqGojNx98MVCWgK/QW9j_VHAt.js\";import ImageSlide from\"https://framerusercontent.com/modules/UJ7EPBH5uOHHtRBz9RGn/ggFMZeZ3uAHIxKRTMLoB/rJLu1ejl5.js\";const ImageSlideFonts=getFonts(ImageSlide);const KitchenImageTabFonts=getFonts(KitchenImageTab);const TextStackFonts=getFonts(TextStack);const FramerIconFonts=getFonts(FramerIcon);const cycleOrder=[\"DcceCATzP\",\"L1gVV99ty\",\"oNyS63agG\",\"N_h3yOFEB\",\"Jy8pOWBMg\",\"dpFU9W8EL\",\"satdvo7ge\",\"CRZRtloFs\",\"xKsbOWFQC\",\"HwAHpHAAZ\",\"lUHeUse3l\",\"cqrRWXSYp\",\"yawwWfpgW\",\"L14sHn0WT\",\"p04lnYA1N\",\"hkaxA0_iT\",\"e8Dbd4QdV\",\"LtxsuNB9O\",\"DKOmVFOqH\",\"S5_wjracB\",\"tM3npFddf\",\"KvwOTxLw9\",\"FMObyEfE3\",\"hKd0w38qz\"];const serializationHash=\"framer-lvXLq\";const variantClassNames={cqrRWXSYp:\"framer-v-17ism8r\",CRZRtloFs:\"framer-v-br2oum\",DcceCATzP:\"framer-v-1xcjp65\",DKOmVFOqH:\"framer-v-17zuq2p\",dpFU9W8EL:\"framer-v-tyzjin\",e8Dbd4QdV:\"framer-v-55fy1o\",FMObyEfE3:\"framer-v-1728hwa\",hkaxA0_iT:\"framer-v-1vkctjx\",hKd0w38qz:\"framer-v-15vzpi9\",HwAHpHAAZ:\"framer-v-1xd41fg\",Jy8pOWBMg:\"framer-v-evtpie\",KvwOTxLw9:\"framer-v-15xhjcp\",L14sHn0WT:\"framer-v-1e8zrng\",L1gVV99ty:\"framer-v-t4mytc\",LtxsuNB9O:\"framer-v-od02o4\",lUHeUse3l:\"framer-v-10chbxn\",N_h3yOFEB:\"framer-v-12pm3u0\",oNyS63agG:\"framer-v-39wodh\",p04lnYA1N:\"framer-v-1jbqf1w\",S5_wjracB:\"framer-v-160erc5\",satdvo7ge:\"framer-v-cj1e14\",tM3npFddf:\"framer-v-ltyt33\",xKsbOWFQC:\"framer-v-1ff8aht\",yawwWfpgW:\"framer-v-yv3m7g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1/3 Bathroom\":\"N_h3yOFEB\",\"1/3 General\":\"HwAHpHAAZ\",\"1/3 Kitchen\":\"DcceCATzP\",\"1/3 mobile bathroom\":\"hkaxA0_iT\",\"1/3 mobile general\":\"DKOmVFOqH\",\"1/3 mobile kitchen\":\"yawwWfpgW\",\"1/3 mobile windows\":\"KvwOTxLw9\",\"1/3 Windows\":\"satdvo7ge\",\"2/3 Bathroom\":\"Jy8pOWBMg\",\"2/3 General\":\"lUHeUse3l\",\"2/3 kitchen\":\"L1gVV99ty\",\"2/3 mobile bathroom\":\"e8Dbd4QdV\",\"2/3 mobile general\":\"S5_wjracB\",\"2/3 mobile kitchen\":\"L14sHn0WT\",\"2/3 mobile windows\":\"FMObyEfE3\",\"2/3 Windows\":\"CRZRtloFs\",\"3/3 Bathroom\":\"dpFU9W8EL\",\"3/3 General\":\"cqrRWXSYp\",\"3/3 kitchen\":\"oNyS63agG\",\"3/3 mobile bathroom\":\"LtxsuNB9O\",\"3/3 mobile general\":\"tM3npFddf\",\"3/3 mobile kitchen\":\"p04lnYA1N\",\"3/3 mobile windows \":\"hKd0w38qz\",\"3/3 Windows\":\"xKsbOWFQC\"};const getProps=({click,height,id,width,...props})=>{return{...props,A2RsSTb9p:click??props.A2RsSTb9p,variant:humanReadableVariantMap[props.variant]??props.variant??\"DcceCATzP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,A2RsSTb9p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DcceCATzP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const E2BFjZLaFlne8si=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"DcceCATzP\");});const E2BFjZLaF75mu74=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"N_h3yOFEB\");});const E2BFjZLaF1rxrgev=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"satdvo7ge\");});const E2BFjZLaFrw5enn=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"HwAHpHAAZ\");});const E2BFjZLaF1hjitzv=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"yawwWfpgW\");});const E2BFjZLaF1cljmjr=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"hkaxA0_iT\");});const E2BFjZLaFjem49g=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"DKOmVFOqH\");});const E2BFjZLaF25kovg=activeVariantCallback(async(...args)=>{if(A2RsSTb9p){const res=await A2RsSTb9p(...args);if(res===false)return false;}setVariant(\"KvwOTxLw9\");});const E2BFjZLaF1fw6fwr=activeVariantCallback(async(...args)=>{setVariant(\"L1gVV99ty\");});const E2BFjZLaFko7i8v=activeVariantCallback(async(...args)=>{setVariant(\"Jy8pOWBMg\");});const E2BFjZLaF1qqapee=activeVariantCallback(async(...args)=>{setVariant(\"CRZRtloFs\");});const E2BFjZLaFegevvz=activeVariantCallback(async(...args)=>{setVariant(\"cqrRWXSYp\");});const E2BFjZLaF1akyaco=activeVariantCallback(async(...args)=>{setVariant(\"L14sHn0WT\");});const E2BFjZLaFkd289x=activeVariantCallback(async(...args)=>{setVariant(\"e8Dbd4QdV\");});const E2BFjZLaF1i61uzr=activeVariantCallback(async(...args)=>{setVariant(\"S5_wjracB\");});const E2BFjZLaF10k17fo=activeVariantCallback(async(...args)=>{setVariant(\"FMObyEfE3\");});const E2BFjZLaF1dafd2j=activeVariantCallback(async(...args)=>{setVariant(\"oNyS63agG\");});const E2BFjZLaF1k6itie=activeVariantCallback(async(...args)=>{setVariant(\"dpFU9W8EL\");});const E2BFjZLaF9aqia0=activeVariantCallback(async(...args)=>{setVariant(\"xKsbOWFQC\");});const E2BFjZLaFg7kggi=activeVariantCallback(async(...args)=>{setVariant(\"lUHeUse3l\");});const E2BFjZLaFm9yatx=activeVariantCallback(async(...args)=>{setVariant(\"p04lnYA1N\");});const E2BFjZLaF7yqyjh=activeVariantCallback(async(...args)=>{setVariant(\"LtxsuNB9O\");});const E2BFjZLaFgsex98=activeVariantCallback(async(...args)=>{setVariant(\"tM3npFddf\");});const E2BFjZLaFbreypg=activeVariantCallback(async(...args)=>{setVariant(\"hKd0w38qz\");});const onTap1dafd2j=activeVariantCallback(async(...args)=>{setVariant(\"oNyS63agG\");});const onTap29p2lc=activeVariantCallback(async(...args)=>{setVariant(\"DcceCATzP\");});const onTap1fw6fwr=activeVariantCallback(async(...args)=>{setVariant(\"L1gVV99ty\");});const onTap1k6itie=activeVariantCallback(async(...args)=>{setVariant(\"dpFU9W8EL\");});const onTap31mfxg=activeVariantCallback(async(...args)=>{setVariant(\"N_h3yOFEB\");});const onTapko7i8v=activeVariantCallback(async(...args)=>{setVariant(\"Jy8pOWBMg\");});const onTap9aqia0=activeVariantCallback(async(...args)=>{setVariant(\"xKsbOWFQC\");});const onTap1mcl799=activeVariantCallback(async(...args)=>{setVariant(\"satdvo7ge\");});const onTap1qqapee=activeVariantCallback(async(...args)=>{setVariant(\"CRZRtloFs\");});const onTapg7kggi=activeVariantCallback(async(...args)=>{setVariant(\"lUHeUse3l\");});const onTapegevvz=activeVariantCallback(async(...args)=>{setVariant(\"cqrRWXSYp\");});const onTap1pm7ugf=activeVariantCallback(async(...args)=>{setVariant(\"HwAHpHAAZ\");});const onTapm9yatx=activeVariantCallback(async(...args)=>{setVariant(\"p04lnYA1N\");});const onTapqj657u=activeVariantCallback(async(...args)=>{setVariant(\"yawwWfpgW\");});const onTap1akyaco=activeVariantCallback(async(...args)=>{setVariant(\"L14sHn0WT\");});const onTap7yqyjh=activeVariantCallback(async(...args)=>{setVariant(\"LtxsuNB9O\");});const onTap1h10g0h=activeVariantCallback(async(...args)=>{setVariant(\"hkaxA0_iT\");});const onTapkd289x=activeVariantCallback(async(...args)=>{setVariant(\"e8Dbd4QdV\");});const onTapgsex98=activeVariantCallback(async(...args)=>{setVariant(\"tM3npFddf\");});const onTap1aep2aq=activeVariantCallback(async(...args)=>{setVariant(\"DKOmVFOqH\");});const onTap1i61uzr=activeVariantCallback(async(...args)=>{setVariant(\"S5_wjracB\");});const onTapbreypg=activeVariantCallback(async(...args)=>{setVariant(\"hKd0w38qz\");});const onTap5z62xk=activeVariantCallback(async(...args)=>{setVariant(\"KvwOTxLw9\");});const onTap10k17fo=activeVariantCallback(async(...args)=>{setVariant(\"FMObyEfE3\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"yawwWfpgW\",\"L14sHn0WT\",\"p04lnYA1N\",\"hkaxA0_iT\",\"e8Dbd4QdV\",\"LtxsuNB9O\",\"DKOmVFOqH\",\"S5_wjracB\",\"tM3npFddf\",\"KvwOTxLw9\",\"FMObyEfE3\",\"hKd0w38qz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"yawwWfpgW\",\"L14sHn0WT\",\"p04lnYA1N\",\"hkaxA0_iT\",\"e8Dbd4QdV\",\"LtxsuNB9O\",\"DKOmVFOqH\",\"S5_wjracB\",\"tM3npFddf\",\"KvwOTxLw9\",\"FMObyEfE3\",\"hKd0w38qz\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xcjp65\",className,classNames),\"data-framer-name\":\"1/3 Kitchen\",layoutDependency:layoutDependency,layoutId:\"DcceCATzP\",ref:ref??ref1,style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({cqrRWXSYp:{\"data-framer-name\":\"3/3 General\"},CRZRtloFs:{\"data-framer-name\":\"2/3 Windows\"},DKOmVFOqH:{\"data-framer-name\":\"1/3 mobile general\"},dpFU9W8EL:{\"data-framer-name\":\"3/3 Bathroom\"},e8Dbd4QdV:{\"data-framer-name\":\"2/3 mobile bathroom\"},FMObyEfE3:{\"data-framer-name\":\"2/3 mobile windows\"},hkaxA0_iT:{\"data-framer-name\":\"1/3 mobile bathroom\"},hKd0w38qz:{\"data-framer-name\":\"3/3 mobile windows \"},HwAHpHAAZ:{\"data-framer-name\":\"1/3 General\"},Jy8pOWBMg:{\"data-framer-name\":\"2/3 Bathroom\"},KvwOTxLw9:{\"data-framer-name\":\"1/3 mobile windows\"},L14sHn0WT:{\"data-framer-name\":\"2/3 mobile kitchen\"},L1gVV99ty:{\"data-framer-name\":\"2/3 kitchen\"},LtxsuNB9O:{\"data-framer-name\":\"3/3 mobile bathroom\"},lUHeUse3l:{\"data-framer-name\":\"2/3 General\"},N_h3yOFEB:{\"data-framer-name\":\"1/3 Bathroom\"},oNyS63agG:{\"data-framer-name\":\"3/3 kitchen\"},p04lnYA1N:{\"data-framer-name\":\"3/3 mobile kitchen\"},S5_wjracB:{\"data-framer-name\":\"2/3 mobile general\"},satdvo7ge:{\"data-framer-name\":\"1/3 Windows\"},tM3npFddf:{\"data-framer-name\":\"3/3 mobile general\"},xKsbOWFQC:{\"data-framer-name\":\"3/3 Windows\"},yawwWfpgW:{\"data-framer-name\":\"1/3 mobile kitchen\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ewoqa2\",\"data-framer-name\":\"Image stack\",layoutDependency:layoutDependency,layoutId:\"baoPLhJSV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t3i9mk\",draggable:\"true\",layoutDependency:layoutDependency,layoutId:\"eI4be26qv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jhtr8l\",\"data-framer-name\":\"Image stack\",draggable:\"false\",layoutDependency:layoutDependency,layoutId:\"peUIKQqEf\",style:{backgroundColor:\"rgb(31, 31, 31)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:561,width:\"2002px\",y:(componentViewport?.y||0)+0+0+0+0+0+-80.49999999999991,...addPropertyOverrides({cqrRWXSYp:{y:(componentViewport?.y||0)+0+0+0+0+0+-80.13436928702004},CRZRtloFs:{y:(componentViewport?.y||0)+0+0+0+0+0+-80.13436928702004},DKOmVFOqH:{height:140,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+25.000000000000043},dpFU9W8EL:{y:(componentViewport?.y||0)+0+0+0+0+0+22},e8Dbd4QdV:{height:153,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+18.500000000000043},FMObyEfE3:{height:153,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+18.500000000000043},hkaxA0_iT:{height:140,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+25.000000000000043},hKd0w38qz:{height:150,width:\"940.3846px\",y:(componentViewport?.y||0)+0+0+0+0+0+20.000000000000043},Jy8pOWBMg:{y:(componentViewport?.y||0)+0+0+0+0+0+-80.13436928702004},KvwOTxLw9:{height:140,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+25.000000000000043},L14sHn0WT:{height:153,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+18.500000000000043},L1gVV99ty:{y:(componentViewport?.y||0)+0+0+0+0+0+-80.13436928702004},LtxsuNB9O:{height:150,width:\"940.3846px\",y:(componentViewport?.y||0)+0+0+0+0+0+20.000000000000043},lUHeUse3l:{y:(componentViewport?.y||0)+0+0+0+0+0+22},oNyS63agG:{y:(componentViewport?.y||0)+0+0+0+0+0+22},p04lnYA1N:{height:150,width:\"940.3846px\",y:(componentViewport?.y||0)+0+0+0+0+0+20.000000000000043},S5_wjracB:{height:153,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) + 640px)`,y:(componentViewport?.y||0)+0+0+0+0+0+18.500000000000043},tM3npFddf:{height:150,width:\"940.3846px\",y:(componentViewport?.y||0)+0+0+0+0+0+20.000000000000043},xKsbOWFQC:{y:(componentViewport?.y||0)+0+0+0+0+0+22},yawwWfpgW:{height:153,width:\"940px\",y:(componentViewport?.y||0)+0+0+0+0+0+17.500000000000043}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxbp8s-container\",draggable:\"true\",layoutDependency:layoutDependency,layoutId:\"xYPAXCIU5-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({cqrRWXSYp:{transformTemplate:transformTemplate2},CRZRtloFs:{transformTemplate:transformTemplate2},dpFU9W8EL:{transformTemplate:undefined},Jy8pOWBMg:{transformTemplate:transformTemplate2},L1gVV99ty:{transformTemplate:transformTemplate2},lUHeUse3l:{transformTemplate:undefined},oNyS63agG:{transformTemplate:undefined},xKsbOWFQC:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ImageSlide,{height:\"100%\",id:\"xYPAXCIU5\",layoutId:\"xYPAXCIU5\",style:{width:\"100%\"},variant:\"okuhqSiiF\",width:\"100%\",...addPropertyOverrides({cqrRWXSYp:{variant:\"fq2DnbcoA\"},CRZRtloFs:{variant:\"wcqCk4N94\"},DKOmVFOqH:{style:{height:\"100%\",width:\"100%\"},variant:\"fq2DnbcoA\"},dpFU9W8EL:{variant:\"rkjSqQ99I\"},e8Dbd4QdV:{style:{height:\"100%\",width:\"100%\"},variant:\"rkjSqQ99I\"},FMObyEfE3:{style:{height:\"100%\",width:\"100%\"},variant:\"wcqCk4N94\"},hkaxA0_iT:{style:{height:\"100%\",width:\"100%\"},variant:\"rkjSqQ99I\"},hKd0w38qz:{style:{height:\"100%\",width:\"100%\"},variant:\"wcqCk4N94\"},HwAHpHAAZ:{variant:\"fq2DnbcoA\"},Jy8pOWBMg:{variant:\"rkjSqQ99I\"},KvwOTxLw9:{style:{height:\"100%\",width:\"100%\"},variant:\"wcqCk4N94\"},L14sHn0WT:{style:{height:\"100%\",width:\"100%\"}},LtxsuNB9O:{style:{height:\"100%\",width:\"100%\"},variant:\"rkjSqQ99I\"},lUHeUse3l:{variant:\"fq2DnbcoA\"},N_h3yOFEB:{variant:\"rkjSqQ99I\"},p04lnYA1N:{style:{height:\"100%\",width:\"100%\"}},S5_wjracB:{style:{height:\"100%\",width:\"100%\"},variant:\"fq2DnbcoA\"},satdvo7ge:{variant:\"wcqCk4N94\"},tM3npFddf:{style:{height:\"100%\",width:\"100%\"},variant:\"fq2DnbcoA\"},xKsbOWFQC:{variant:\"wcqCk4N94\"},yawwWfpgW:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1drc0m3\",\"data-framer-name\":\"description and navigation \",layoutDependency:layoutDependency,layoutId:\"p2i5cQoM_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m4bimj\",\"data-framer-name\":\"image tab stack\",layoutDependency:layoutDependency,layoutId:\"pZc_hoWmy\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,y:(componentViewport?.y||0)+0+0+0+0+400+0+0+-3,...addPropertyOverrides({DKOmVFOqH:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},e8Dbd4QdV:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},FMObyEfE3:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},hkaxA0_iT:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},hKd0w38qz:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},KvwOTxLw9:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},L14sHn0WT:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},LtxsuNB9O:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},p04lnYA1N:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},S5_wjracB:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},tM3npFddf:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},yawwWfpgW:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dos7p2-container\",\"data-framer-name\":\"image 1\",layoutDependency:layoutDependency,layoutId:\"eGBhT5F1K-container\",name:\"image 1\",children:/*#__PURE__*/_jsx(KitchenImageTab,{E2BFjZLaF:E2BFjZLaFlne8si,height:\"100%\",id:\"eGBhT5F1K\",layoutId:\"eGBhT5F1K\",name:\"image 1\",variant:\"J0ePivttg\",width:\"100%\",...addPropertyOverrides({cqrRWXSYp:{E2BFjZLaF:E2BFjZLaFrw5enn,variant:\"mXd98QX_0\"},CRZRtloFs:{E2BFjZLaF:E2BFjZLaF1rxrgev,variant:\"mXd98QX_0\"},DKOmVFOqH:{E2BFjZLaF:E2BFjZLaFjem49g},dpFU9W8EL:{E2BFjZLaF:E2BFjZLaF75mu74,variant:\"mXd98QX_0\"},e8Dbd4QdV:{E2BFjZLaF:E2BFjZLaF1cljmjr,variant:\"mXd98QX_0\"},FMObyEfE3:{E2BFjZLaF:E2BFjZLaF25kovg,variant:\"mXd98QX_0\"},hkaxA0_iT:{E2BFjZLaF:E2BFjZLaF1cljmjr},hKd0w38qz:{E2BFjZLaF:E2BFjZLaF25kovg,variant:\"mXd98QX_0\"},HwAHpHAAZ:{E2BFjZLaF:E2BFjZLaFrw5enn},Jy8pOWBMg:{E2BFjZLaF:E2BFjZLaF75mu74,variant:\"mXd98QX_0\"},KvwOTxLw9:{E2BFjZLaF:E2BFjZLaF25kovg},L14sHn0WT:{E2BFjZLaF:E2BFjZLaF1hjitzv,variant:\"mXd98QX_0\"},L1gVV99ty:{variant:\"mXd98QX_0\"},LtxsuNB9O:{E2BFjZLaF:E2BFjZLaF1cljmjr,variant:\"mXd98QX_0\"},lUHeUse3l:{E2BFjZLaF:E2BFjZLaFrw5enn,variant:\"mXd98QX_0\"},N_h3yOFEB:{E2BFjZLaF:E2BFjZLaF75mu74},oNyS63agG:{variant:\"mXd98QX_0\"},p04lnYA1N:{E2BFjZLaF:E2BFjZLaF1hjitzv,variant:\"mXd98QX_0\"},S5_wjracB:{E2BFjZLaF:E2BFjZLaFjem49g,variant:\"mXd98QX_0\"},satdvo7ge:{E2BFjZLaF:E2BFjZLaF1rxrgev},tM3npFddf:{E2BFjZLaF:E2BFjZLaFjem49g,variant:\"mXd98QX_0\"},xKsbOWFQC:{E2BFjZLaF:E2BFjZLaF1rxrgev,variant:\"mXd98QX_0\"},yawwWfpgW:{E2BFjZLaF:E2BFjZLaF1hjitzv}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,y:(componentViewport?.y||0)+0+0+0+0+400+0+0+-3,...addPropertyOverrides({DKOmVFOqH:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},e8Dbd4QdV:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},FMObyEfE3:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},hkaxA0_iT:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},hKd0w38qz:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},KvwOTxLw9:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},L14sHn0WT:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},LtxsuNB9O:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},p04lnYA1N:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},S5_wjracB:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},tM3npFddf:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},yawwWfpgW:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oa6e1c-container\",\"data-framer-name\":\"image2\",layoutDependency:layoutDependency,layoutId:\"WhZmp10kQ-container\",name:\"image2\",children:/*#__PURE__*/_jsx(KitchenImageTab,{E2BFjZLaF:E2BFjZLaF1fw6fwr,height:\"100%\",id:\"WhZmp10kQ\",layoutId:\"WhZmp10kQ\",name:\"image2\",variant:\"mXd98QX_0\",width:\"100%\",...addPropertyOverrides({cqrRWXSYp:{E2BFjZLaF:E2BFjZLaFegevvz,variant:\"J0ePivttg\"},CRZRtloFs:{E2BFjZLaF:E2BFjZLaF1qqapee,variant:\"J0ePivttg\"},DKOmVFOqH:{E2BFjZLaF:E2BFjZLaF1i61uzr},dpFU9W8EL:{E2BFjZLaF:E2BFjZLaFko7i8v},e8Dbd4QdV:{E2BFjZLaF:E2BFjZLaFkd289x,variant:\"J0ePivttg\"},FMObyEfE3:{E2BFjZLaF:E2BFjZLaF10k17fo,variant:\"J0ePivttg\"},hkaxA0_iT:{E2BFjZLaF:E2BFjZLaFkd289x},hKd0w38qz:{E2BFjZLaF:E2BFjZLaF10k17fo},HwAHpHAAZ:{E2BFjZLaF:E2BFjZLaFegevvz},Jy8pOWBMg:{E2BFjZLaF:E2BFjZLaFko7i8v,variant:\"J0ePivttg\"},KvwOTxLw9:{E2BFjZLaF:E2BFjZLaF10k17fo},L14sHn0WT:{E2BFjZLaF:E2BFjZLaF1akyaco,variant:\"J0ePivttg\"},L1gVV99ty:{variant:\"J0ePivttg\"},LtxsuNB9O:{E2BFjZLaF:E2BFjZLaFkd289x},lUHeUse3l:{E2BFjZLaF:E2BFjZLaFegevvz},N_h3yOFEB:{E2BFjZLaF:E2BFjZLaFko7i8v},p04lnYA1N:{E2BFjZLaF:E2BFjZLaF1akyaco},S5_wjracB:{E2BFjZLaF:E2BFjZLaF1i61uzr,variant:\"J0ePivttg\"},satdvo7ge:{E2BFjZLaF:E2BFjZLaF1qqapee},tM3npFddf:{E2BFjZLaF:E2BFjZLaF1i61uzr},xKsbOWFQC:{E2BFjZLaF:E2BFjZLaF1qqapee},yawwWfpgW:{E2BFjZLaF:E2BFjZLaF1akyaco}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,y:(componentViewport?.y||0)+0+0+0+0+400+0+0+-3,...addPropertyOverrides({DKOmVFOqH:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},e8Dbd4QdV:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},FMObyEfE3:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},hkaxA0_iT:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},hKd0w38qz:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},KvwOTxLw9:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},L14sHn0WT:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},LtxsuNB9O:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},p04lnYA1N:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},S5_wjracB:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},tM3npFddf:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5},yawwWfpgW:{y:(componentViewport?.y||0)+0+0+0+0+240+0+0+-15.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ws6lrk-container\",\"data-framer-name\":\"image 3\",layoutDependency:layoutDependency,layoutId:\"etFeuNoed-container\",name:\"image 3\",children:/*#__PURE__*/_jsx(KitchenImageTab,{E2BFjZLaF:E2BFjZLaF1dafd2j,height:\"100%\",id:\"etFeuNoed\",layoutId:\"etFeuNoed\",name:\"image 3\",variant:\"mXd98QX_0\",width:\"100%\",...addPropertyOverrides({cqrRWXSYp:{E2BFjZLaF:E2BFjZLaFg7kggi},CRZRtloFs:{E2BFjZLaF:E2BFjZLaF9aqia0},DKOmVFOqH:{E2BFjZLaF:E2BFjZLaF1i61uzr},dpFU9W8EL:{E2BFjZLaF:E2BFjZLaF1k6itie,variant:\"J0ePivttg\"},e8Dbd4QdV:{E2BFjZLaF:E2BFjZLaF7yqyjh},FMObyEfE3:{E2BFjZLaF:E2BFjZLaFbreypg},hkaxA0_iT:{E2BFjZLaF:E2BFjZLaF7yqyjh},hKd0w38qz:{E2BFjZLaF:E2BFjZLaFbreypg,variant:\"J0ePivttg\"},HwAHpHAAZ:{E2BFjZLaF:E2BFjZLaFg7kggi},Jy8pOWBMg:{E2BFjZLaF:E2BFjZLaF1k6itie},KvwOTxLw9:{E2BFjZLaF:E2BFjZLaFbreypg},L14sHn0WT:{E2BFjZLaF:E2BFjZLaFm9yatx},LtxsuNB9O:{E2BFjZLaF:E2BFjZLaF7yqyjh,variant:\"J0ePivttg\"},lUHeUse3l:{E2BFjZLaF:E2BFjZLaFg7kggi,variant:\"J0ePivttg\"},N_h3yOFEB:{E2BFjZLaF:E2BFjZLaF1k6itie},oNyS63agG:{variant:\"J0ePivttg\"},p04lnYA1N:{E2BFjZLaF:E2BFjZLaFm9yatx,variant:\"J0ePivttg\"},S5_wjracB:{E2BFjZLaF:E2BFjZLaFgsex98},satdvo7ge:{E2BFjZLaF:E2BFjZLaF9aqia0},tM3npFddf:{E2BFjZLaF:E2BFjZLaFgsex98,variant:\"J0ePivttg\"},xKsbOWFQC:{E2BFjZLaF:E2BFjZLaF9aqia0,variant:\"J0ePivttg\"},yawwWfpgW:{E2BFjZLaF:E2BFjZLaFm9yatx}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vyxbb1\",layoutDependency:layoutDependency,layoutId:\"cb7FeykPl\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"KITCHEN CLEANING\"})}),className:\"framer-18yjzjp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lrQqyJ6BC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cqrRWXSYp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"GENERAL CLEANING\"})})},CRZRtloFs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"WINDOW CLEANING\"})})},dpFU9W8EL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"BATHROOM CLEANING\"})})},HwAHpHAAZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"GENERAL CLEANING\"})})},Jy8pOWBMg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"BATHROOM CLEANING\"})})},lUHeUse3l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"GENERAL CLEANING\"})})},N_h3yOFEB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"BATHROOM CLEANING\"})})},satdvo7ge:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"WINDOW CLEANING\"})})},xKsbOWFQC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-wxolq1\",\"data-styles-preset\":\"qw2R4EqW7\",children:\"WINDOW CLEANING\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v3ybyp\",layoutDependency:layoutDependency,layoutId:\"AogMKohJ1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+0-134,...addPropertyOverrides({cqrRWXSYp:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-282},CRZRtloFs:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-282},DKOmVFOqH:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+0-318},dpFU9W8EL:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-411},e8Dbd4QdV:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-302},FMObyEfE3:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-302},hkaxA0_iT:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+84-332},hKd0w38qz:{height:346,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-266},Jy8pOWBMg:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-223},KvwOTxLw9:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+0-318},L14sHn0WT:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-302},L1gVV99ty:{height:411,y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-200},LtxsuNB9O:{height:346,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-266},lUHeUse3l:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-411},oNyS63agG:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-411},p04lnYA1N:{height:346,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-266},S5_wjracB:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-302},tM3npFddf:{height:346,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+-266},xKsbOWFQC:{y:(componentViewport?.y||0)+0+0+0+0+400+0+104+8+-411},yawwWfpgW:{height:604,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), max(${componentViewport?.width||\"100vw\"}, 1px) * 11.4) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+240+0+69+0+0-318}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wrzobw-container\",layoutDependency:layoutDependency,layoutId:\"FXwJSjW06-container\",...addPropertyOverrides({e8Dbd4QdV:{transformTemplate:transformTemplate1},FMObyEfE3:{transformTemplate:transformTemplate1},hkaxA0_iT:{transformTemplate:transformTemplate3},L14sHn0WT:{transformTemplate:transformTemplate1},S5_wjracB:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TextStack,{height:\"100%\",id:\"FXwJSjW06\",layoutId:\"FXwJSjW06\",style:{height:\"100%\",width:\"100%\"},variant:\"M_7Zw09bh\",width:\"100%\",...addPropertyOverrides({cqrRWXSYp:{variant:\"dpOtdzEeY\"},CRZRtloFs:{variant:\"PWem5heaq\"},DKOmVFOqH:{style:{width:\"100%\"},variant:\"TMgwB7pa1\"},dpFU9W8EL:{variant:\"hwOciD9st\"},e8Dbd4QdV:{style:{width:\"100%\"},variant:\"FzWZC9yNq\"},FMObyEfE3:{style:{width:\"100%\"},variant:\"RebS4mWLH\"},hkaxA0_iT:{style:{width:\"100%\"},variant:\"FzWZC9yNq\"},hKd0w38qz:{variant:\"RebS4mWLH\"},HwAHpHAAZ:{variant:\"dpOtdzEeY\"},Jy8pOWBMg:{variant:\"hwOciD9st\"},KvwOTxLw9:{style:{width:\"100%\"},variant:\"RebS4mWLH\"},L14sHn0WT:{style:{width:\"100%\"},variant:\"jA_nLNPNO\"},LtxsuNB9O:{variant:\"FzWZC9yNq\"},lUHeUse3l:{variant:\"dpOtdzEeY\"},N_h3yOFEB:{variant:\"hwOciD9st\"},p04lnYA1N:{variant:\"jA_nLNPNO\"},S5_wjracB:{style:{width:\"100%\"},variant:\"TMgwB7pa1\"},satdvo7ge:{variant:\"PWem5heaq\"},tM3npFddf:{variant:\"TMgwB7pa1\"},xKsbOWFQC:{variant:\"PWem5heaq\"},yawwWfpgW:{style:{width:\"100%\"},variant:\"jA_nLNPNO\"}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13hld3\",\"data-framer-name\":\"navigation buttons\",layoutDependency:layoutDependency,layoutId:\"m7f7hO_yY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ro90ez\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JNJhihLQy\",onTap:onTap1dafd2j,...addPropertyOverrides({cqrRWXSYp:{onTap:onTap1pm7ugf},CRZRtloFs:{onTap:onTap1mcl799},DKOmVFOqH:{onTap:onTapgsex98},dpFU9W8EL:{onTap:onTapko7i8v},e8Dbd4QdV:{onTap:onTap1h10g0h},FMObyEfE3:{onTap:onTap5z62xk},hkaxA0_iT:{onTap:onTap7yqyjh},hKd0w38qz:{onTap:onTap10k17fo},HwAHpHAAZ:{onTap:onTapg7kggi},Jy8pOWBMg:{onTap:onTap31mfxg},KvwOTxLw9:{onTap:onTapbreypg},L14sHn0WT:{onTap:onTapqj657u},L1gVV99ty:{onTap:onTap29p2lc},LtxsuNB9O:{onTap:onTapkd289x},lUHeUse3l:{onTap:onTapegevvz},N_h3yOFEB:{onTap:onTap1k6itie},oNyS63agG:{onTap:onTap1fw6fwr},p04lnYA1N:{onTap:onTap1akyaco},S5_wjracB:{onTap:onTap1aep2aq},satdvo7ge:{onTap:onTap9aqia0},tM3npFddf:{onTap:onTap1i61uzr},xKsbOWFQC:{onTap:onTap1qqapee},yawwWfpgW:{onTap:onTapm9yatx}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3w1onz-container\",\"data-framer-name\":\"image left\",layoutDependency:layoutDependency,layoutId:\"BhkndB1N9-container\",name:\"image left\",style:{rotate:-180},children:/*#__PURE__*/_jsx(FramerIcon,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"BhkndB1N9\",layoutId:\"BhkndB1N9\",name:\"image left\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-arrow-right-circle-fill\" viewBox=\"0 0 16 16\">\\n  <path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lnoupd\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CAk74Plnu\",onTap:onTap1fw6fwr,...addPropertyOverrides({cqrRWXSYp:{onTap:onTapg7kggi},CRZRtloFs:{onTap:onTap9aqia0},DKOmVFOqH:{onTap:onTap1i61uzr},dpFU9W8EL:{onTap:onTap31mfxg},e8Dbd4QdV:{onTap:onTap7yqyjh},FMObyEfE3:{onTap:onTapbreypg},hkaxA0_iT:{onTap:onTapkd289x},hKd0w38qz:{onTap:onTap5z62xk},HwAHpHAAZ:{onTap:onTapegevvz},Jy8pOWBMg:{onTap:onTap1k6itie},KvwOTxLw9:{onTap:onTap10k17fo},L14sHn0WT:{onTap:onTapm9yatx},L1gVV99ty:{onTap:onTap1dafd2j},LtxsuNB9O:{onTap:onTap1h10g0h},lUHeUse3l:{onTap:onTap1pm7ugf},N_h3yOFEB:{onTap:onTapko7i8v},oNyS63agG:{onTap:onTap29p2lc},p04lnYA1N:{onTap:onTapqj657u},S5_wjracB:{onTap:onTapgsex98},satdvo7ge:{onTap:onTap1qqapee},tM3npFddf:{onTap:onTap1aep2aq},xKsbOWFQC:{onTap:onTap1mcl799},yawwWfpgW:{onTap:onTap1akyaco}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x1f8ao-container\",\"data-framer-name\":\"image right\",layoutDependency:layoutDependency,layoutId:\"El8n61r7S-container\",name:\"image right\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"El8n61r7S\",layoutId:\"El8n61r7S\",name:\"image right\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-arrow-right-circle-fill\" viewBox=\"0 0 16 16\">\\n  <path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z\"/>\\n</svg>',width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"KITCHEN CLEANING\"})}),className:\"framer-1kzxior\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"OdPQizS1e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DKOmVFOqH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"GENERAL CLEANING\"})})},e8Dbd4QdV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BATHROOM CLEANING\"})})},FMObyEfE3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"WINDOW CLEANING\"})})},hkaxA0_iT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BATHROOM CLEANING\"})})},hKd0w38qz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"WINDOW CLEANING\"})})},KvwOTxLw9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"WINDOW CLEANING\"})})},L14sHn0WT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"KITCHEN CLEANING\"})})},LtxsuNB9O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BATHROOM CLEANING\"})})},p04lnYA1N:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"KITCHEN CLEANING\"})})},S5_wjracB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"GENERAL CLEANING\"})})},tM3npFddf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"GENERAL CLEANING\"})})},yawwWfpgW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"KITCHEN CLEANING\"})})}},baseVariant,gestureVariant)})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lvXLq.framer-cl5jgi, .framer-lvXLq .framer-cl5jgi { display: block; }\",\".framer-lvXLq.framer-1xcjp65 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lvXLq .framer-1ewoqa2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lvXLq .framer-t3i9mk { 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; max-width: 1140%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lvXLq .framer-jhtr8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lvXLq .framer-zxbp8s-container { flex: none; height: auto; left: 20px; pointer-events: auto; position: absolute; top: 50%; width: 2002px; z-index: 1; }\",\".framer-lvXLq .framer-1drc0m3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-lvXLq .framer-1m4bimj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 94px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-lvXLq .framer-1dos7p2-container, .framer-lvXLq .framer-oa6e1c-container, .framer-lvXLq .framer-ws6lrk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lvXLq .framer-vyxbb1 { 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-lvXLq .framer-18yjzjp { flex: none; height: auto; max-width: 33%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-lvXLq .framer-v3ybyp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 153px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lvXLq .framer-1wrzobw-container { bottom: -430px; flex: none; height: 564px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-lvXLq .framer-13hld3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(45.27112232030267% - 50px / 2); width: 100%; z-index: 1; }\",\".framer-lvXLq .framer-1ro90ez, .framer-lvXLq .framer-lnoupd { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lvXLq .framer-3w1onz-container, .framer-lvXLq .framer-x1f8ao-container { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-lvXLq .framer-1kzxior { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-1xcjp65, .framer-lvXLq .framer-1ewoqa2, .framer-lvXLq .framer-t3i9mk, .framer-lvXLq .framer-jhtr8l, .framer-lvXLq .framer-1drc0m3, .framer-lvXLq .framer-1m4bimj, .framer-lvXLq .framer-vyxbb1, .framer-lvXLq .framer-v3ybyp, .framer-lvXLq .framer-1ro90ez, .framer-lvXLq .framer-lnoupd { gap: 0px; } .framer-lvXLq.framer-1xcjp65 > *, .framer-lvXLq .framer-jhtr8l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lvXLq.framer-1xcjp65 > :first-child, .framer-lvXLq .framer-jhtr8l > :first-child, .framer-lvXLq .framer-1m4bimj > :first-child, .framer-lvXLq .framer-vyxbb1 > :first-child, .framer-lvXLq .framer-v3ybyp > :first-child, .framer-lvXLq .framer-1ro90ez > :first-child, .framer-lvXLq .framer-lnoupd > :first-child { margin-left: 0px; } .framer-lvXLq.framer-1xcjp65 > :last-child, .framer-lvXLq .framer-jhtr8l > :last-child, .framer-lvXLq .framer-1m4bimj > :last-child, .framer-lvXLq .framer-vyxbb1 > :last-child, .framer-lvXLq .framer-v3ybyp > :last-child, .framer-lvXLq .framer-1ro90ez > :last-child, .framer-lvXLq .framer-lnoupd > :last-child { margin-right: 0px; } .framer-lvXLq .framer-1ewoqa2 > *, .framer-lvXLq .framer-t3i9mk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq .framer-1ewoqa2 > :first-child, .framer-lvXLq .framer-t3i9mk > :first-child, .framer-lvXLq .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq .framer-1ewoqa2 > :last-child, .framer-lvXLq .framer-t3i9mk > :last-child, .framer-lvXLq .framer-1drc0m3 > :last-child { margin-bottom: 0px; } .framer-lvXLq .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lvXLq .framer-1m4bimj > *, .framer-lvXLq .framer-vyxbb1 > *, .framer-lvXLq .framer-v3ybyp > *, .framer-lvXLq .framer-1ro90ez > *, .framer-lvXLq .framer-lnoupd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-lvXLq.framer-v-t4mytc .framer-zxbp8s-container, .framer-lvXLq.framer-v-evtpie .framer-zxbp8s-container, .framer-lvXLq.framer-v-br2oum .framer-zxbp8s-container, .framer-lvXLq.framer-v-17ism8r .framer-zxbp8s-container { left: 50%; order: 0; top: 50%; }\",\".framer-lvXLq.framer-v-t4mytc .framer-1wrzobw-container { bottom: -211px; height: unset; top: -200px; }\",\".framer-lvXLq.framer-v-39wodh .framer-zxbp8s-container, .framer-lvXLq.framer-v-1ff8aht .framer-zxbp8s-container, .framer-lvXLq.framer-v-10chbxn .framer-zxbp8s-container { left: -1302px; top: 22px; }\",\".framer-lvXLq.framer-v-39wodh .framer-1wrzobw-container, .framer-lvXLq.framer-v-tyzjin .framer-1wrzobw-container, .framer-lvXLq.framer-v-1ff8aht .framer-1wrzobw-container, .framer-lvXLq.framer-v-10chbxn .framer-1wrzobw-container { bottom: unset; top: -411px; }\",\".framer-lvXLq.framer-v-39wodh .framer-13hld3, .framer-lvXLq.framer-v-tyzjin .framer-13hld3, .framer-lvXLq.framer-v-1ff8aht .framer-13hld3, .framer-lvXLq.framer-v-10chbxn .framer-13hld3 { left: 0px; }\",\".framer-lvXLq.framer-v-evtpie .framer-1wrzobw-container { bottom: unset; top: -223px; }\",\".framer-lvXLq.framer-v-tyzjin .framer-zxbp8s-container { left: -1293px; top: 22px; }\",\".framer-lvXLq.framer-v-br2oum .framer-1wrzobw-container, .framer-lvXLq.framer-v-17ism8r .framer-1wrzobw-container { bottom: unset; top: calc(50.326797385620935% - 564px / 2); }\",\".framer-lvXLq.framer-v-br2oum .framer-13hld3 { top: calc(46.62162162162164% - 50px / 2); }\",\".framer-lvXLq.framer-v-yv3m7g.framer-1xcjp65, .framer-lvXLq.framer-v-1e8zrng.framer-1xcjp65, .framer-lvXLq.framer-v-1jbqf1w.framer-1xcjp65, .framer-lvXLq.framer-v-1vkctjx.framer-1xcjp65, .framer-lvXLq.framer-v-55fy1o.framer-1xcjp65, .framer-lvXLq.framer-v-od02o4.framer-1xcjp65, .framer-lvXLq.framer-v-17zuq2p.framer-1xcjp65, .framer-lvXLq.framer-v-160erc5.framer-1xcjp65, .framer-lvXLq.framer-v-ltyt33.framer-1xcjp65, .framer-lvXLq.framer-v-15xhjcp.framer-1xcjp65, .framer-lvXLq.framer-v-1728hwa.framer-1xcjp65, .framer-lvXLq.framer-v-15vzpi9.framer-1xcjp65 { width: 300px; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-t3i9mk, .framer-lvXLq.framer-v-1e8zrng .framer-t3i9mk, .framer-lvXLq.framer-v-1e8zrng .framer-1ro90ez, .framer-lvXLq.framer-v-1jbqf1w .framer-t3i9mk, .framer-lvXLq.framer-v-1jbqf1w .framer-1ro90ez, .framer-lvXLq.framer-v-1vkctjx .framer-t3i9mk, .framer-lvXLq.framer-v-1vkctjx .framer-1ro90ez, .framer-lvXLq.framer-v-55fy1o .framer-t3i9mk, .framer-lvXLq.framer-v-55fy1o .framer-1ro90ez, .framer-lvXLq.framer-v-od02o4 .framer-t3i9mk, .framer-lvXLq.framer-v-od02o4 .framer-1ro90ez, .framer-lvXLq.framer-v-17zuq2p .framer-t3i9mk, .framer-lvXLq.framer-v-17zuq2p .framer-1ro90ez, .framer-lvXLq.framer-v-160erc5 .framer-t3i9mk, .framer-lvXLq.framer-v-160erc5 .framer-1ro90ez, .framer-lvXLq.framer-v-ltyt33 .framer-t3i9mk, .framer-lvXLq.framer-v-ltyt33 .framer-1ro90ez, .framer-lvXLq.framer-v-15xhjcp .framer-t3i9mk, .framer-lvXLq.framer-v-15xhjcp .framer-1ro90ez, .framer-lvXLq.framer-v-1728hwa .framer-t3i9mk, .framer-lvXLq.framer-v-1728hwa .framer-1ro90ez, .framer-lvXLq.framer-v-15vzpi9 .framer-t3i9mk, .framer-lvXLq.framer-v-15vzpi9 .framer-1ro90ez { order: 0; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-jhtr8l, .framer-lvXLq.framer-v-1e8zrng .framer-jhtr8l, .framer-lvXLq.framer-v-1jbqf1w .framer-jhtr8l, .framer-lvXLq.framer-v-1vkctjx .framer-jhtr8l, .framer-lvXLq.framer-v-55fy1o .framer-jhtr8l, .framer-lvXLq.framer-v-od02o4 .framer-jhtr8l, .framer-lvXLq.framer-v-17zuq2p .framer-jhtr8l, .framer-lvXLq.framer-v-160erc5 .framer-jhtr8l, .framer-lvXLq.framer-v-ltyt33 .framer-jhtr8l, .framer-lvXLq.framer-v-15xhjcp .framer-jhtr8l, .framer-lvXLq.framer-v-1728hwa .framer-jhtr8l, .framer-lvXLq.framer-v-15vzpi9 .framer-jhtr8l { height: 190px; justify-content: flex-start; order: 0; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-zxbp8s-container { aspect-ratio: 6.157894736842105 / 1; height: var(--framer-aspect-ratio-supported, 153px); left: -15px; top: 49%; width: 940px; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-1drc0m3, .framer-lvXLq.framer-v-1e8zrng .framer-1drc0m3, .framer-lvXLq.framer-v-1jbqf1w .framer-1drc0m3, .framer-lvXLq.framer-v-1vkctjx .framer-1drc0m3, .framer-lvXLq.framer-v-55fy1o .framer-1drc0m3, .framer-lvXLq.framer-v-od02o4 .framer-1drc0m3, .framer-lvXLq.framer-v-17zuq2p .framer-1drc0m3, .framer-lvXLq.framer-v-160erc5 .framer-1drc0m3, .framer-lvXLq.framer-v-ltyt33 .framer-1drc0m3, .framer-lvXLq.framer-v-15xhjcp .framer-1drc0m3, .framer-lvXLq.framer-v-1728hwa .framer-1drc0m3, .framer-lvXLq.framer-v-15vzpi9 .framer-1drc0m3 { gap: 0px; order: 2; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-1m4bimj, .framer-lvXLq.framer-v-1vkctjx .framer-1m4bimj, .framer-lvXLq.framer-v-17zuq2p .framer-1m4bimj { gap: 0px; height: 69px; order: 0; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-vyxbb1, .framer-lvXLq.framer-v-yv3m7g .framer-1kzxior, .framer-lvXLq.framer-v-1e8zrng .framer-vyxbb1, .framer-lvXLq.framer-v-1e8zrng .framer-1kzxior, .framer-lvXLq.framer-v-1jbqf1w .framer-1kzxior, .framer-lvXLq.framer-v-1vkctjx .framer-vyxbb1, .framer-lvXLq.framer-v-1vkctjx .framer-1kzxior, .framer-lvXLq.framer-v-55fy1o .framer-vyxbb1, .framer-lvXLq.framer-v-55fy1o .framer-1kzxior, .framer-lvXLq.framer-v-od02o4 .framer-1kzxior, .framer-lvXLq.framer-v-17zuq2p .framer-vyxbb1, .framer-lvXLq.framer-v-17zuq2p .framer-1kzxior, .framer-lvXLq.framer-v-160erc5 .framer-vyxbb1, .framer-lvXLq.framer-v-160erc5 .framer-1kzxior, .framer-lvXLq.framer-v-ltyt33 .framer-1kzxior, .framer-lvXLq.framer-v-15xhjcp .framer-vyxbb1, .framer-lvXLq.framer-v-15xhjcp .framer-1kzxior, .framer-lvXLq.framer-v-1728hwa .framer-vyxbb1, .framer-lvXLq.framer-v-1728hwa .framer-1kzxior, .framer-lvXLq.framer-v-15vzpi9 .framer-1kzxior { order: 1; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-v3ybyp, .framer-lvXLq.framer-v-1e8zrng .framer-v3ybyp, .framer-lvXLq.framer-v-55fy1o .framer-v3ybyp, .framer-lvXLq.framer-v-17zuq2p .framer-v3ybyp, .framer-lvXLq.framer-v-160erc5 .framer-v3ybyp, .framer-lvXLq.framer-v-15xhjcp .framer-v3ybyp, .framer-lvXLq.framer-v-1728hwa .framer-v3ybyp { min-height: 80px; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-1wrzobw-container, .framer-lvXLq.framer-v-15xhjcp .framer-1wrzobw-container { bottom: -286px; height: auto; left: unset; width: 100%; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-13hld3, .framer-lvXLq.framer-v-1e8zrng .framer-13hld3, .framer-lvXLq.framer-v-1jbqf1w .framer-13hld3, .framer-lvXLq.framer-v-1vkctjx .framer-13hld3, .framer-lvXLq.framer-v-55fy1o .framer-13hld3, .framer-lvXLq.framer-v-od02o4 .framer-13hld3, .framer-lvXLq.framer-v-17zuq2p .framer-13hld3, .framer-lvXLq.framer-v-160erc5 .framer-13hld3, .framer-lvXLq.framer-v-ltyt33 .framer-13hld3, .framer-lvXLq.framer-v-15xhjcp .framer-13hld3, .framer-lvXLq.framer-v-1728hwa .framer-13hld3, .framer-lvXLq.framer-v-15vzpi9 .framer-13hld3 { left: unset; order: 1; position: relative; top: unset; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-1ro90ez { order: 0; z-index: 3; }\",\".framer-lvXLq.framer-v-yv3m7g .framer-lnoupd, .framer-lvXLq.framer-v-1e8zrng .framer-lnoupd, .framer-lvXLq.framer-v-1jbqf1w .framer-lnoupd, .framer-lvXLq.framer-v-1vkctjx .framer-lnoupd, .framer-lvXLq.framer-v-55fy1o .framer-lnoupd, .framer-lvXLq.framer-v-od02o4 .framer-lnoupd, .framer-lvXLq.framer-v-17zuq2p .framer-lnoupd, .framer-lvXLq.framer-v-160erc5 .framer-lnoupd, .framer-lvXLq.framer-v-ltyt33 .framer-lnoupd, .framer-lvXLq.framer-v-15xhjcp .framer-lnoupd, .framer-lvXLq.framer-v-1728hwa .framer-lnoupd, .framer-lvXLq.framer-v-15vzpi9 .framer-lnoupd { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-yv3m7g .framer-1drc0m3, .framer-lvXLq.framer-v-yv3m7g .framer-1m4bimj { gap: 0px; } .framer-lvXLq.framer-v-yv3m7g .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-yv3m7g .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-yv3m7g .framer-1drc0m3 > :last-child { margin-bottom: 0px; } .framer-lvXLq.framer-v-yv3m7g .framer-1m4bimj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lvXLq.framer-v-yv3m7g .framer-1m4bimj > :first-child { margin-left: 0px; } .framer-lvXLq.framer-v-yv3m7g .framer-1m4bimj > :last-child { margin-right: 0px; } }\",\".framer-lvXLq.framer-v-1e8zrng .framer-zxbp8s-container { aspect-ratio: 6.157894736842105 / 1; height: var(--framer-aspect-ratio-supported, 153px); left: -475px; right: -165px; width: unset; }\",\".framer-lvXLq.framer-v-1e8zrng .framer-1m4bimj, .framer-lvXLq.framer-v-55fy1o .framer-1m4bimj, .framer-lvXLq.framer-v-160erc5 .framer-1m4bimj, .framer-lvXLq.framer-v-15xhjcp .framer-1m4bimj, .framer-lvXLq.framer-v-1728hwa .framer-1m4bimj { height: 69px; order: 0; }\",\".framer-lvXLq.framer-v-1e8zrng .framer-1wrzobw-container, .framer-lvXLq.framer-v-55fy1o .framer-1wrzobw-container, .framer-lvXLq.framer-v-160erc5 .framer-1wrzobw-container, .framer-lvXLq.framer-v-1728hwa .framer-1wrzobw-container { bottom: unset; height: auto; left: unset; top: 50%; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-1e8zrng .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-1e8zrng .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-1e8zrng .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-1e8zrng .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\".framer-lvXLq.framer-v-1jbqf1w .framer-zxbp8s-container, .framer-lvXLq.framer-v-od02o4 .framer-zxbp8s-container, .framer-lvXLq.framer-v-ltyt33 .framer-zxbp8s-container, .framer-lvXLq.framer-v-15vzpi9 .framer-zxbp8s-container { aspect-ratio: 6.269230769230769 / 1; height: 79%; left: unset; right: -11px; width: var(--framer-aspect-ratio-supported, 940px); }\",\".framer-lvXLq.framer-v-1jbqf1w .framer-1m4bimj, .framer-lvXLq.framer-v-od02o4 .framer-1m4bimj, .framer-lvXLq.framer-v-ltyt33 .framer-1m4bimj, .framer-lvXLq.framer-v-15vzpi9 .framer-1m4bimj { height: 69px; }\",\".framer-lvXLq.framer-v-1jbqf1w .framer-v3ybyp, .framer-lvXLq.framer-v-od02o4 .framer-v3ybyp, .framer-lvXLq.framer-v-ltyt33 .framer-v3ybyp, .framer-lvXLq.framer-v-15vzpi9 .framer-v3ybyp { height: 80px; min-height: unset; }\",\".framer-lvXLq.framer-v-1jbqf1w .framer-1wrzobw-container, .framer-lvXLq.framer-v-ltyt33 .framer-1wrzobw-container { bottom: 0px; height: unset; left: calc(50.00000000000002% - 100% / 2); order: 0; right: unset; top: -266px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-1jbqf1w .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-1jbqf1w .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-1jbqf1w .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-1jbqf1w .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\".framer-lvXLq.framer-v-1vkctjx .framer-zxbp8s-container, .framer-lvXLq.framer-v-17zuq2p .framer-zxbp8s-container, .framer-lvXLq.framer-v-15xhjcp .framer-zxbp8s-container { aspect-ratio: 6.157894736842105 / 1; height: var(--framer-aspect-ratio-supported, 153px); left: -11px; right: -629px; width: unset; }\",\".framer-lvXLq.framer-v-1vkctjx .framer-v3ybyp { height: 84px; min-height: unset; order: 0; }\",\".framer-lvXLq.framer-v-1vkctjx .framer-1wrzobw-container { bottom: -272px; height: auto; left: 50%; right: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-1vkctjx .framer-1drc0m3, .framer-lvXLq.framer-v-1vkctjx .framer-1m4bimj { gap: 0px; } .framer-lvXLq.framer-v-1vkctjx .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-1vkctjx .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-1vkctjx .framer-1drc0m3 > :last-child { margin-bottom: 0px; } .framer-lvXLq.framer-v-1vkctjx .framer-1m4bimj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lvXLq.framer-v-1vkctjx .framer-1m4bimj > :first-child { margin-left: 0px; } .framer-lvXLq.framer-v-1vkctjx .framer-1m4bimj > :last-child { margin-right: 0px; } }\",\".framer-lvXLq.framer-v-55fy1o .framer-zxbp8s-container, .framer-lvXLq.framer-v-160erc5 .framer-zxbp8s-container, .framer-lvXLq.framer-v-1728hwa .framer-zxbp8s-container { aspect-ratio: 6.157894736842105 / 1; height: var(--framer-aspect-ratio-supported, 153px); left: -320px; right: -320px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-55fy1o .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-55fy1o .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-55fy1o .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-55fy1o .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\".framer-lvXLq.framer-v-od02o4 .framer-1wrzobw-container, .framer-lvXLq.framer-v-15vzpi9 .framer-1wrzobw-container { bottom: 0px; height: unset; left: calc(49.7058823529412% - 100% / 2); order: 0; right: unset; top: -266px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-od02o4 .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-od02o4 .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-od02o4 .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-od02o4 .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\".framer-lvXLq.framer-v-17zuq2p .framer-1wrzobw-container { bottom: -286px; height: auto; left: -15px; right: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-17zuq2p .framer-1drc0m3, .framer-lvXLq.framer-v-17zuq2p .framer-1m4bimj { gap: 0px; } .framer-lvXLq.framer-v-17zuq2p .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-17zuq2p .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-17zuq2p .framer-1drc0m3 > :last-child { margin-bottom: 0px; } .framer-lvXLq.framer-v-17zuq2p .framer-1m4bimj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lvXLq.framer-v-17zuq2p .framer-1m4bimj > :first-child { margin-left: 0px; } .framer-lvXLq.framer-v-17zuq2p .framer-1m4bimj > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-160erc5 .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-160erc5 .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-160erc5 .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-160erc5 .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-ltyt33 .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-ltyt33 .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-ltyt33 .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-ltyt33 .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-15xhjcp .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-15xhjcp .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-15xhjcp .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-15xhjcp .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-1728hwa .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-1728hwa .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-1728hwa .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-1728hwa .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lvXLq.framer-v-15vzpi9 .framer-1drc0m3 { gap: 0px; } .framer-lvXLq.framer-v-15vzpi9 .framer-1drc0m3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lvXLq.framer-v-15vzpi9 .framer-1drc0m3 > :first-child { margin-top: 0px; } .framer-lvXLq.framer-v-15vzpi9 .framer-1drc0m3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 657\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"L1gVV99ty\":{\"layout\":[\"fixed\",\"auto\"]},\"oNyS63agG\":{\"layout\":[\"fixed\",\"auto\"]},\"N_h3yOFEB\":{\"layout\":[\"fixed\",\"auto\"]},\"Jy8pOWBMg\":{\"layout\":[\"fixed\",\"auto\"]},\"dpFU9W8EL\":{\"layout\":[\"fixed\",\"auto\"]},\"satdvo7ge\":{\"layout\":[\"fixed\",\"auto\"]},\"CRZRtloFs\":{\"layout\":[\"fixed\",\"auto\"]},\"xKsbOWFQC\":{\"layout\":[\"fixed\",\"auto\"]},\"HwAHpHAAZ\":{\"layout\":[\"fixed\",\"auto\"]},\"lUHeUse3l\":{\"layout\":[\"fixed\",\"auto\"]},\"cqrRWXSYp\":{\"layout\":[\"fixed\",\"auto\"]},\"yawwWfpgW\":{\"layout\":[\"fixed\",\"auto\"]},\"L14sHn0WT\":{\"layout\":[\"fixed\",\"auto\"]},\"p04lnYA1N\":{\"layout\":[\"fixed\",\"auto\"]},\"hkaxA0_iT\":{\"layout\":[\"fixed\",\"auto\"]},\"e8Dbd4QdV\":{\"layout\":[\"fixed\",\"auto\"]},\"LtxsuNB9O\":{\"layout\":[\"fixed\",\"auto\"]},\"DKOmVFOqH\":{\"layout\":[\"fixed\",\"auto\"]},\"S5_wjracB\":{\"layout\":[\"fixed\",\"auto\"]},\"tM3npFddf\":{\"layout\":[\"fixed\",\"auto\"]},\"KvwOTxLw9\":{\"layout\":[\"fixed\",\"auto\"]},\"FMObyEfE3\":{\"layout\":[\"fixed\",\"auto\"]},\"hKd0w38qz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"A2RsSTb9p\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg9iKOOb8C=withCSS(Component,css,\"framer-lvXLq\");export default Framerg9iKOOb8C;Framerg9iKOOb8C.displayName=\"Kitchen stack\";Framerg9iKOOb8C.defaultProps={height:657,width:720};addPropertyControls(Framerg9iKOOb8C,{variant:{options:[\"DcceCATzP\",\"L1gVV99ty\",\"oNyS63agG\",\"N_h3yOFEB\",\"Jy8pOWBMg\",\"dpFU9W8EL\",\"satdvo7ge\",\"CRZRtloFs\",\"xKsbOWFQC\",\"HwAHpHAAZ\",\"lUHeUse3l\",\"cqrRWXSYp\",\"yawwWfpgW\",\"L14sHn0WT\",\"p04lnYA1N\",\"hkaxA0_iT\",\"e8Dbd4QdV\",\"LtxsuNB9O\",\"DKOmVFOqH\",\"S5_wjracB\",\"tM3npFddf\",\"KvwOTxLw9\",\"FMObyEfE3\",\"hKd0w38qz\"],optionTitles:[\"1/3 Kitchen\",\"2/3 kitchen\",\"3/3 kitchen\",\"1/3 Bathroom\",\"2/3 Bathroom\",\"3/3 Bathroom\",\"1/3 Windows\",\"2/3 Windows\",\"3/3 Windows\",\"1/3 General\",\"2/3 General\",\"3/3 General\",\"1/3 mobile kitchen\",\"2/3 mobile kitchen\",\"3/3 mobile kitchen\",\"1/3 mobile bathroom\",\"2/3 mobile bathroom\",\"3/3 mobile bathroom\",\"1/3 mobile general\",\"2/3 mobile general\",\"3/3 mobile general\",\"1/3 mobile windows\",\"2/3 mobile windows\",\"3/3 mobile windows \"],title:\"Variant\",type:ControlType.Enum},A2RsSTb9p:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerg9iKOOb8C,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ImageSlideFonts,...KitchenImageTabFonts,...TextStackFonts,...FramerIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg9iKOOb8C\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"A2RsSTb9p\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"657\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L1gVV99ty\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oNyS63agG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N_h3yOFEB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jy8pOWBMg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dpFU9W8EL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"satdvo7ge\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CRZRtloFs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xKsbOWFQC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HwAHpHAAZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lUHeUse3l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cqrRWXSYp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yawwWfpgW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L14sHn0WT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p04lnYA1N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hkaxA0_iT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e8Dbd4QdV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LtxsuNB9O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DKOmVFOqH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S5_wjracB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tM3npFddf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KvwOTxLw9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FMObyEfE3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hKd0w38qz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"720\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_COLOR", "DEFAULT_SVG", "DEFAULT_STROKE_WIDTH", "FramerIcon", "props", "customizedSvg", "getCustomizedSVG", "p", "addPropertyControls", "ControlType", "hideStrokeWidth", "svg", "strokeWidthMatch", "match", "color", "strokeWidth", "_svg_match", "_svgAttributes_match", "_svgAttributes_match1", "_svgAttributes_match_", "_svgAttributes_match2", "svgAttributes", "_svg_match1", "width", "height", "viewBox", "viewBoxWidth", "viewBoxHeight", "hasElementsWithValidColors", "attr", "value", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "Framern3qCYUH_7", "withCSS", "n3qCYUH_7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DEFAULT_COLOR", "DEFAULT_SVG", "DEFAULT_STROKE_WIDTH", "FramerIcons", "props", "customizedSvg", "getCustomizedSVG", "p", "addPropertyControls", "ControlType", "hideStrokeWidth", "svg", "strokeWidthMatch", "match", "color", "strokeWidth", "svgAttributes", "width", "height", "viewBox", "viewBoxWidth", "viewBoxHeight", "hasElementsWithValidColors", "attr", "value", "FramerIconsFonts", "getFonts", "FramerIcons", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E2BFjZLaF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfe8qjj", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "css", "FramerQW9j_VHAt", "withCSS", "QW9j_VHAt_default", "addPropertyControls", "ControlType", "addFonts", "IMAGESFonts", "getFonts", "p5XqO91Eb_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerrJLu1ejl5", "withCSS", "rJLu1ejl5_default", "addPropertyControls", "ControlType", "addFonts", "ImageSlideFonts", "getFonts", "rJLu1ejl5_default", "KitchenImageTabFonts", "QW9j_VHAt_default", "TextStackFonts", "n3qCYUH_7_default", "FramerIconFonts", "FramerIcon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "A2RsSTb9p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "E2BFjZLaFlne8si", "args", "E2BFjZLaF75mu74", "E2BFjZLaF1rxrgev", "E2BFjZLaFrw5enn", "E2BFjZLaF1hjitzv", "E2BFjZLaF1cljmjr", "E2BFjZLaFjem49g", "E2BFjZLaF25kovg", "E2BFjZLaF1fw6fwr", "E2BFjZLaFko7i8v", "E2BFjZLaF1qqapee", "E2BFjZLaFegevvz", "E2BFjZLaF1akyaco", "E2BFjZLaFkd289x", "E2BFjZLaF1i61uzr", "E2BFjZLaF10k17fo", "E2BFjZLaF1dafd2j", "E2BFjZLaF1k6itie", "E2BFjZLaF9aqia0", "E2BFjZLaFg7kggi", "E2BFjZLaFm9yatx", "E2BFjZLaF7yqyjh", "E2BFjZLaFgsex98", "E2BFjZLaFbreypg", "onTap1dafd2j", "onTap29p2lc", "onTap1fw6fwr", "onTap1k6itie", "onTap31mfxg", "onTapko7i8v", "onTap9aqia0", "onTap1mcl799", "onTap1qqapee", "onTapg7kggi", "onTapegevvz", "onTap1pm7ugf", "onTapm9yatx", "onTapqj657u", "onTap1akyaco", "onTap7yqyjh", "onTap1h10g0h", "onTapkd289x", "onTapgsex98", "onTap1aep2aq", "onTap1i61uzr", "onTapbreypg", "onTap5z62xk", "onTap10k17fo", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "css", "Framerg9iKOOb8C", "withCSS", "g9iKOOb8C_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
