{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/UW9rO36Npczb3QldB2N7/O6IYApY2SJpuz4zRc5LH/UENBKf6ZB.js", "ssg:https://framerusercontent.com/modules/sJPBlRiMOiMjHRi04L27/riAo75A9hSfSSMUf6zOy/e34HAv1UX.js", "ssg:https://framerusercontent.com/modules/DFlYPibLckpIMGYgQcO3/yvmWbHNtrhkM8CKKjNxG/Examples_2.js", "ssg:https://framerusercontent.com/modules/HCcXO9vnP60dsP9VFCWc/ri6vvcY8d3dcPDHvpbQt/ot4SRHRhN.js", "ssg:https://framerusercontent.com/modules/mrHjBAYO6Q4Wf7d5qepw/4gCJWMYhmDVa1J8Cv3lx/R5Ci6J4SI.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-oF3Xu .framer-styles-preset-1bj1fff:not(.rich-text-wrapper), .framer-oF3Xu .framer-styles-preset-1bj1fff.rich-text-wrapper a { --framer-link-current-text-color: var(--token-5d54f5bc-8c4e-4310-86da-e4bb3dd0ddbd, #4775e1) /* {\"name\":\"DEX Blue\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-5d54f5bc-8c4e-4310-86da-e4bb3dd0ddbd, #4775e1) /* {\"name\":\"DEX Blue\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-09104d29-c146-4a77-850d-6163ab6d3f23, #303030); --framer-link-text-decoration: none; }'];export const className=\"framer-oF3Xu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/UW9rO36Npczb3QldB2N7/O6IYApY2SJpuz4zRc5LH/UENBKf6ZB.js\";const DownloadFonts=getFonts(Download);const cycleOrder=[\"sVcy_Hcx2\",\"biS1hXlKM\",\"Gdf3CYUPn\"];const serializationHash=\"framer-lMWXb\";const variantClassNames={biS1hXlKM:\"framer-v-190cr2w\",Gdf3CYUPn:\"framer-v-1tnavhw\",sVcy_Hcx2:\"framer-v-1pegbq7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"sVcy_Hcx2\",Phone:\"Gdf3CYUPn\",Tablet:\"biS1hXlKM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sVcy_Hcx2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sVcy_Hcx2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pegbq7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sVcy_Hcx2\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({biS1hXlKM:{\"data-framer-name\":\"Tablet\"},Gdf3CYUPn:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cc5sof\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"Ve3bgL0Os\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-krdlr1\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"q2ghGB32q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Solution\"})}),className:\"framer-1vlxlpf\",fonts:[\"FS;Switzer-bold\"],layoutDependency:layoutDependency,layoutId:\"r0epVONJc\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11w5gy5\",layoutDependency:layoutDependency,layoutId:\"mjNeZ3TP1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yXSjZcBZ9\"},motionChild:true,nodeId:\"EqfPuxhPb\",openInNewTab:false,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"Air Duct Cleaning & Sanitation\"})})})}),className:\"framer-lccq1r\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"EqfPuxhPb\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"M9wVC_1_T\"},motionChild:true,nodeId:\"chyCA1XLc\",openInNewTab:false,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"Mold Remediation\"})})})}),className:\"framer-190ctj8\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"chyCA1XLc\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j_jNDNpfO\"},motionChild:true,nodeId:\"JbP72B7v1\",openInNewTab:false,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"Carpet & Upholstery Treatment\"})})})}),className:\"framer-ipocw6\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"JbP72B7v1\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1an44g9\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"d6fkio5eP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"About Us\"})}),className:\"framer-1nlnxyo\",fonts:[\"FS;Switzer-bold\"],layoutDependency:layoutDependency,layoutId:\"O788fG3QI\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f88hwu\",layoutDependency:layoutDependency,layoutId:\"lf4aRe5As\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d_rSENeDz\"},motionChild:true,nodeId:\"am8eXpiq1\",openInNewTab:false,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"Blog\"})})})}),className:\"framer-7hx1la\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"am8eXpiq1\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CNDopB4JT\"},motionChild:true,nodeId:\"IXjcUPUiH\",openInNewTab:false,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"Contact Us\"})})})}),className:\"framer-1wrrh1i\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"IXjcUPUiH\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oxj24n\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"XDxaYJ7xC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Decon Experts Pte Ltd\"})}),className:\"framer-yhkms4\",fonts:[\"FS;Switzer-bold\"],layoutDependency:layoutDependency,layoutId:\"oYfch4lho\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14d6x06\",layoutDependency:layoutDependency,layoutId:\"FSNK173aX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-179sgnd\",layoutDependency:layoutDependency,layoutId:\"vAw7eW6JG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5empxf\",layoutDependency:layoutDependency,layoutId:\"UQVhbTOjH\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g4ftk4\",\"data-framer-name\":\"location_dot_duotone\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:384,layoutDependency:layoutDependency,layoutId:\"RZoyENAe8\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path class=\"fa-secondary\" opacity=\".4\" d=\"M215.7 499.2C267 435 384 279.4 384 192 384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2 12.3 15.3 35.1 15.3 47.4 0zM192 112a80 80 0 1 1 0 160 80 80 0 1 1 0-160z\"/><path class=\"fa-primary\" d=\"M192 144a48 48 0 1 0 0 96 48 48 0 1 0 0-96z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m2zp4u\",layoutDependency:layoutDependency,layoutId:\"xJok2vO73\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"20 Cecil Street\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(102, 102, 102))\"},children:\"#08-06 PLUS,\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(102, 102, 102))\"},children:\"Singapore 049705\"})]}),className:\"framer-1yclac2\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"UvBzPnXXm\",style:{\"--extracted-1iakedh\":\"rgb(102, 102, 102)\",\"--extracted-2gxw0f\":\"rgb(102, 102, 102)\",\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i0bip3\",layoutDependency:layoutDependency,layoutId:\"GLg3bulU4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-89ex1g\",layoutDependency:layoutDependency,layoutId:\"LHW8Cy6t7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oblxm7\",\"data-framer-name\":\"whatsapp_1_\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:448,layoutDependency:layoutDependency,layoutId:\"cy_0rfq7v\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc.--><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfl7gq\",layoutDependency:layoutDependency,layoutId:\"hzoBBUDnQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"htps://wa.me/6588588485\",motionChild:true,nodeId:\"WgE_XR0te\",openInNewTab:true,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"+65 8858 8485\"})})})}),className:\"framer-1kwy3ci\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"WgE_XR0te\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ioqore\",layoutDependency:layoutDependency,layoutId:\"o5LP2nmsr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ejnwc8\",layoutDependency:layoutDependency,layoutId:\"NdpI7j2Bw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bvtgxm\",\"data-framer-name\":\"envelope_duotone_copy\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"HoLxU97bz\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512\" xml:space=\"preserve\"><path d=\"M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4l217.6 163.2c11.4 8.5 27 8.5 38.4 0l217.6-163.2c12.1-9.1 19.2-23.3 19.2-38.4 0-26.5-21.5-48-48-48H48z\"/><path d=\"M0 112v272c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V112c0 15.1-7.1 29.3-19.2 38.4L275.2 313.6a32.1 32.1 0 0 1-38.4 0L19.2 150.4C7.1 141.3 0 127.1 0 112z\" style=\"opacity:.4;enable-background:new\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vpru7b\",layoutDependency:layoutDependency,layoutId:\"YL6l8bi5U\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@\",motionChild:true,nodeId:\"KwI07Xj0f\",openInNewTab:true,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"info@deconexperts.com.sg\"})})})}),className:\"framer-1o1au2y\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"KwI07Xj0f\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biS1hXlKM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@\",motionChild:true,nodeId:\"KwI07Xj0f\",openInNewTab:true,scopeId:\"e34HAv1UX\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bj1fff\",\"data-styles-preset\":\"UENBKf6ZB\",children:\"info@deconexperts.com.sg\"})})})})}},baseVariant,gestureVariant)})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-boyhca\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"gCZwTND7b\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ux0hly\",layoutDependency:layoutDependency,layoutId:\"jIundjYYU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"\\xa9 2024 Decon Experts Pte. Ltd. All rights reserved\"})}),className:\"framer-1mi6f1k\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"D3LKI2q86\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gdf3CYUPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"\\xa9 2023 Decon Experts Pte. Ltd.\"})}),fonts:[\"GF;Inter-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"\u2022\"})}),className:\"framer-70mal7\",\"data-framer-name\":\"\u2022\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"ie38jB2EK\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gdf3CYUPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"\u2022\"})}),fonts:[\"GF;Inter-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1icgw47-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KbyZR4Dn5-container\",nodeId:\"KbyZR4Dn5\",rendersWithMotion:true,scopeId:\"e34HAv1UX\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Switzer\", \"Switzer Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"KbyZR4Dn5\",layoutId:\"KbyZR4Dn5\",srcFile:\"https://framerusercontent.com/assets/gW0JPwDIgdgURx47oIUMG90c39I.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:50,color:\"rgb(102, 102, 102)\",gap:5,padding:2,paddingBottom:2,paddingLeft:2,paddingPerSide:false,paddingRight:2,paddingTop:2},text:\"PDPA\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7ifcy\",layoutDependency:layoutDependency,layoutId:\"RoWT1WzYm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kzjtx\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"FDeqL2K8q\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/profile.php?id=61554405655539&mibextid=ZbWKwL\",motionChild:true,nodeId:\"PiP0pD4pg\",openInNewTab:true,scopeId:\"e34HAv1UX\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-25gczj framer-1jxrwa\",\"data-framer-name\":\"facebook\",fill:\"black\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"PiP0pD4pg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"16\" width=\"16\" viewBox=\"0 0 512 512\"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d=\"M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256c0 120 82.7 220.8 194.2 248.5V334.2h-52.8V256h52.8v-33.7c0-87.1 39.4-127.5 125-127.5 16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287v175.9C413.8 494.8 512 386.9 512 256z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/deconexperts101/\",motionChild:true,nodeId:\"IY6LeWUr3\",openInNewTab:true,scopeId:\"e34HAv1UX\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-7sjzi9 framer-1jxrwa\",\"data-framer-name\":\"Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IY6LeWUr3\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 20 0 L 20 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 7.5 10 C 7.5 8.619 8.619 7.5 10 7.5 C 11.381 7.5 12.5 8.619 12.5 10 C 12.5 11.381 11.381 12.5 10 12.5 C 8.619 12.5 7.5 11.381 7.5 10 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.438 2.188 L 6.563 2.188 C 4.146 2.188 2.188 4.146 2.188 6.563 L 2.188 13.438 C 2.188 15.854 4.146 17.813 6.563 17.813 L 13.438 17.813 C 15.854 17.813 17.813 15.854 17.813 13.438 L 17.813 6.563 C 17.813 4.146 15.854 2.188 13.438 2.188 Z M 10 13.75 C 7.929 13.75 6.25 12.071 6.25 10 C 6.25 7.929 7.929 6.25 10 6.25 C 12.071 6.25 13.75 7.929 13.75 10 C 13.75 12.071 12.071 13.75 10 13.75 Z M 14.063 6.875 C 13.545 6.875 13.125 6.455 13.125 5.938 C 13.125 5.42 13.545 5 14.063 5 C 14.58 5 15 5.42 15 5.938 C 15 6.455 14.58 6.875 14.063 6.875 Z\" fill=\"#222\"></path></svg>',svgContentId:10911609688,withExternalLayout:true})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lMWXb.framer-1jxrwa, .framer-lMWXb .framer-1jxrwa { display: block; }\",\".framer-lMWXb.framer-1pegbq7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 30px 0px; position: relative; width: 1200px; }\",\".framer-lMWXb .framer-1cc5sof { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lMWXb .framer-krdlr1, .framer-lMWXb .framer-1an44g9, .framer-lMWXb .framer-1oxj24n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-lMWXb .framer-1vlxlpf, .framer-lMWXb .framer-1nlnxyo, .framer-lMWXb .framer-yhkms4, .framer-lMWXb .framer-1mi6f1k, .framer-lMWXb .framer-70mal7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-lMWXb .framer-11w5gy5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 247px; }\",\".framer-lMWXb .framer-lccq1r, .framer-lMWXb .framer-190ctj8, .framer-lMWXb .framer-ipocw6, .framer-lMWXb .framer-7hx1la, .framer-lMWXb .framer-1wrrh1i, .framer-lMWXb .framer-1yclac2, .framer-lMWXb .framer-1kwy3ci, .framer-lMWXb .framer-1o1au2y { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lMWXb .framer-f88hwu, .framer-lMWXb .framer-14d6x06 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lMWXb .framer-179sgnd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lMWXb .framer-5empxf, .framer-lMWXb .framer-89ex1g, .framer-lMWXb .framer-ejnwc8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-lMWXb .framer-1g4ftk4 { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 16px; }\",\".framer-lMWXb .framer-1m2zp4u, .framer-lMWXb .framer-1dfl7gq, .framer-lMWXb .framer-1vpru7b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lMWXb .framer-1i0bip3, .framer-lMWXb .framer-ioqore { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lMWXb .framer-1oblxm7 { aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 16px; }\",\".framer-lMWXb .framer-1bvtgxm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-lMWXb .framer-boyhca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1000px; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lMWXb .framer-ux0hly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 21px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 319px; }\",\".framer-lMWXb .framer-1icgw47-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lMWXb .framer-s7ifcy { flex: none; height: 21px; overflow: visible; position: relative; width: 46px; }\",\".framer-lMWXb .framer-1kzjtx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 48%; width: min-content; }\",\".framer-lMWXb .framer-25gczj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; text-decoration: none; width: 16px; }\",\".framer-lMWXb .framer-7sjzi9 { flex: none; height: 20px; position: relative; text-decoration: none; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lMWXb.framer-1pegbq7, .framer-lMWXb .framer-1cc5sof, .framer-lMWXb .framer-krdlr1, .framer-lMWXb .framer-11w5gy5, .framer-lMWXb .framer-1an44g9, .framer-lMWXb .framer-f88hwu, .framer-lMWXb .framer-1oxj24n, .framer-lMWXb .framer-14d6x06, .framer-lMWXb .framer-179sgnd, .framer-lMWXb .framer-5empxf, .framer-lMWXb .framer-1m2zp4u, .framer-lMWXb .framer-1i0bip3, .framer-lMWXb .framer-89ex1g, .framer-lMWXb .framer-1dfl7gq, .framer-lMWXb .framer-ioqore, .framer-lMWXb .framer-ejnwc8, .framer-lMWXb .framer-1vpru7b, .framer-lMWXb .framer-ux0hly, .framer-lMWXb .framer-1kzjtx { gap: 0px; } .framer-lMWXb.framer-1pegbq7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-lMWXb.framer-1pegbq7 > :first-child, .framer-lMWXb .framer-krdlr1 > :first-child, .framer-lMWXb .framer-11w5gy5 > :first-child, .framer-lMWXb .framer-1an44g9 > :first-child, .framer-lMWXb .framer-f88hwu > :first-child, .framer-lMWXb .framer-1oxj24n > :first-child, .framer-lMWXb .framer-14d6x06 > :first-child, .framer-lMWXb .framer-1m2zp4u > :first-child, .framer-lMWXb .framer-1dfl7gq > :first-child, .framer-lMWXb .framer-1vpru7b > :first-child { margin-top: 0px; } .framer-lMWXb.framer-1pegbq7 > :last-child, .framer-lMWXb .framer-krdlr1 > :last-child, .framer-lMWXb .framer-11w5gy5 > :last-child, .framer-lMWXb .framer-1an44g9 > :last-child, .framer-lMWXb .framer-f88hwu > :last-child, .framer-lMWXb .framer-1oxj24n > :last-child, .framer-lMWXb .framer-14d6x06 > :last-child, .framer-lMWXb .framer-1m2zp4u > :last-child, .framer-lMWXb .framer-1dfl7gq > :last-child, .framer-lMWXb .framer-1vpru7b > :last-child { margin-bottom: 0px; } .framer-lMWXb .framer-1cc5sof > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-lMWXb .framer-1cc5sof > :first-child, .framer-lMWXb .framer-179sgnd > :first-child, .framer-lMWXb .framer-5empxf > :first-child, .framer-lMWXb .framer-1i0bip3 > :first-child, .framer-lMWXb .framer-89ex1g > :first-child, .framer-lMWXb .framer-ioqore > :first-child, .framer-lMWXb .framer-ejnwc8 > :first-child, .framer-lMWXb .framer-ux0hly > :first-child, .framer-lMWXb .framer-1kzjtx > :first-child { margin-left: 0px; } .framer-lMWXb .framer-1cc5sof > :last-child, .framer-lMWXb .framer-179sgnd > :last-child, .framer-lMWXb .framer-5empxf > :last-child, .framer-lMWXb .framer-1i0bip3 > :last-child, .framer-lMWXb .framer-89ex1g > :last-child, .framer-lMWXb .framer-ioqore > :last-child, .framer-lMWXb .framer-ejnwc8 > :last-child, .framer-lMWXb .framer-ux0hly > :last-child, .framer-lMWXb .framer-1kzjtx > :last-child { margin-right: 0px; } .framer-lMWXb .framer-krdlr1 > *, .framer-lMWXb .framer-1an44g9 > *, .framer-lMWXb .framer-1oxj24n > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-lMWXb .framer-11w5gy5 > *, .framer-lMWXb .framer-f88hwu > *, .framer-lMWXb .framer-14d6x06 > *, .framer-lMWXb .framer-1m2zp4u > *, .framer-lMWXb .framer-1dfl7gq > *, .framer-lMWXb .framer-1vpru7b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lMWXb .framer-179sgnd > *, .framer-lMWXb .framer-1i0bip3 > *, .framer-lMWXb .framer-ioqore > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-lMWXb .framer-5empxf > *, .framer-lMWXb .framer-89ex1g > *, .framer-lMWXb .framer-ejnwc8 > *, .framer-lMWXb .framer-1kzjtx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lMWXb .framer-ux0hly > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-lMWXb.framer-v-190cr2w.framer-1pegbq7 { width: 810px; }\",\".framer-lMWXb.framer-v-190cr2w .framer-1cc5sof, .framer-lMWXb.framer-v-190cr2w .framer-boyhca { padding: 36px; }\",\".framer-lMWXb.framer-v-190cr2w .framer-krdlr1 { flex: 1 0 0px; flex-wrap: wrap; width: 1px; }\",\".framer-lMWXb.framer-v-190cr2w .framer-11w5gy5, .framer-lMWXb.framer-v-1tnavhw .framer-krdlr1, .framer-lMWXb.framer-v-1tnavhw .framer-1an44g9, .framer-lMWXb.framer-v-1tnavhw .framer-1oxj24n { width: 100%; }\",\".framer-lMWXb.framer-v-190cr2w .framer-1an44g9, .framer-lMWXb.framer-v-190cr2w .framer-1oxj24n { flex: 1 0 0px; width: 1px; }\",\".framer-lMWXb.framer-v-1tnavhw.framer-1pegbq7 { padding: 60px 40px 30px 40px; width: 390px; }\",\".framer-lMWXb.framer-v-1tnavhw .framer-1cc5sof { flex-direction: column; }\",\".framer-lMWXb.framer-v-1tnavhw .framer-boyhca { flex-direction: column; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: unset; padding: 16px 0px 0px 0px; }\",\".framer-lMWXb.framer-v-1tnavhw .framer-1kzjtx { justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lMWXb.framer-v-1tnavhw .framer-1cc5sof, .framer-lMWXb.framer-v-1tnavhw .framer-boyhca { gap: 0px; } .framer-lMWXb.framer-v-1tnavhw .framer-1cc5sof > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lMWXb.framer-v-1tnavhw .framer-1cc5sof > :first-child, .framer-lMWXb.framer-v-1tnavhw .framer-boyhca > :first-child { margin-top: 0px; } .framer-lMWXb.framer-v-1tnavhw .framer-1cc5sof > :last-child, .framer-lMWXb.framer-v-1tnavhw .framer-boyhca > :last-child { margin-bottom: 0px; } .framer-lMWXb.framer-v-1tnavhw .framer-boyhca > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,'.framer-lMWXb[data-border=\"true\"]::after, .framer-lMWXb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 380\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"biS1hXlKM\":{\"layout\":[\"fixed\",\"auto\"]},\"Gdf3CYUPn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framere34HAv1UX=withCSS(Component,css,\"framer-lMWXb\");export default Framere34HAv1UX;Framere34HAv1UX.displayName=\"Footer Copy\";Framere34HAv1UX.defaultProps={height:380,width:1200};addPropertyControls(Framere34HAv1UX,{variant:{options:[\"sVcy_Hcx2\",\"biS1hXlKM\",\"Gdf3CYUPn\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framere34HAv1UX,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5SZVFDB7V52TI6ULVC6J3WQZQCIZVDV5/ODYPSTCUDMKSTYIPTV4CLQ7URIK7XYBJ/YS3VPNVO4B3TOJMEXDGFZQ4TLZGGSRZC.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...DownloadFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere34HAv1UX\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"380\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"biS1hXlKM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gdf3CYUPn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./e34HAv1UX.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withClass(Component){return props=>{const handleClick=event=>{event.preventDefault()// Prevent default link behavior\n;// Implement gtag_report_conversion here\n// Open link in a new tab\nwindow.open(\"https://wa.me/6588588485\",\"_blank\");};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick,id:\"whatsapp-btn\",href:\"https://wa.me/6588588485\"});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples_2.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={Oz6kT5OCe:{hover:true,pressed:true}};const serializationHash=\"framer-HFcwO\";const variantClassNames={Oz6kT5OCe:\"framer-v-1p8e8ug\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{return{...props,ENuBvMhoW:link??props.ENuBvMhoW,YQmRlcyVc:title??props.YQmRlcyVc??\"Home\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ENuBvMhoW,YQmRlcyVc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Oz6kT5OCe\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ENuBvMhoW,motionChild:true,nodeId:\"Oz6kT5OCe\",scopeId:\"ot4SRHRhN\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1p8e8ug\",className,classNames)} framer-9rtkz7`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Oz6kT5OCe\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,...style},variants:{\"Oz6kT5OCe-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.15)\"},\"Oz6kT5OCe-pressed\":{backgroundColor:\"rgba(0, 0, 0, 0.3)\"}},...addPropertyOverrides({\"Oz6kT5OCe-hover\":{\"data-framer-name\":undefined},\"Oz6kT5OCe-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09104d29-c146-4a77-850d-6163ab6d3f23, rgb(48, 48, 48)))\"},children:\"Home\"})}),className:\"framer-n6qgu4\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"YHxF4IvkZ\",style:{\"--extracted-r6o4lv\":\"var(--token-09104d29-c146-4a77-850d-6163ab6d3f23, rgb(48, 48, 48))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YQmRlcyVc,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HFcwO.framer-9rtkz7, .framer-HFcwO .framer-9rtkz7 { display: block; }\",\".framer-HFcwO.framer-1p8e8ug { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HFcwO .framer-n6qgu4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HFcwO.framer-1p8e8ug { gap: 0px; } .framer-HFcwO.framer-1p8e8ug > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HFcwO.framer-1p8e8ug > :first-child { margin-top: 0px; } .framer-HFcwO.framer-1p8e8ug > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 35\n * @framerIntrinsicWidth 75.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pmlP1ZGZd\":{\"layout\":[\"auto\",\"auto\"]},\"qNgTMWz8R\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ENuBvMhoW\":\"link\",\"YQmRlcyVc\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerot4SRHRhN=withCSS(Component,css,\"framer-HFcwO\");export default Framerot4SRHRhN;Framerot4SRHRhN.displayName=\"Nav Menu Item\";Framerot4SRHRhN.defaultProps={height:35,width:75.5};addPropertyControls(Framerot4SRHRhN,{ENuBvMhoW:{title:\"Link\",type:ControlType.Link},YQmRlcyVc:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerot4SRHRhN,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerot4SRHRhN\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ENuBvMhoW\\\":\\\"link\\\",\\\"YQmRlcyVc\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"75.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pmlP1ZGZd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qNgTMWz8R\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"35\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ot4SRHRhN.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withClass}from\"https://framerusercontent.com/modules/DFlYPibLckpIMGYgQcO3/yvmWbHNtrhkM8CKKjNxG/Examples_2.js\";import NavMenuItem from\"https://framerusercontent.com/modules/HCcXO9vnP60dsP9VFCWc/ri6vvcY8d3dcPDHvpbQt/ot4SRHRhN.js\";const NavMenuItemFonts=getFonts(NavMenuItem);const MotionAWithClassdtjt28=withCodeBoundaryForOverrides(motion.a,{nodeId:\"asK83rttK\",override:withClass,scopeId:\"R5Ci6J4SI\"});const cycleOrder=[\"vbM0HpnTH\",\"TRfxQoq1M\",\"pPbwgXKIA\",\"ioA5aH1mh\",\"UxDUPyQQv\",\"FrAChKSFd\"];const serializationHash=\"framer-XJUOv\";const variantClassNames={FrAChKSFd:\"framer-v-1wb6l9c\",ioA5aH1mh:\"framer-v-b73enf\",pPbwgXKIA:\"framer-v-1fc36z8\",TRfxQoq1M:\"framer-v-vxffzf\",UxDUPyQQv:\"framer-v-17yx72u\",vbM0HpnTH:\"framer-v-3j4lhs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Active\":\"ioA5aH1mh\",\"Phone Open\":\"FrAChKSFd\",\"Tablet Active\":\"UxDUPyQQv\",Desktop:\"vbM0HpnTH\",Phone:\"pPbwgXKIA\",Tablet:\"TRfxQoq1M\"};const getProps=({height,id,image,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vbM0HpnTH\",ZIyah1QUb:image??props.ZIyah1QUb??{src:\"https://framerusercontent.com/images/CzplUV5YSCEp1FaDQGqo9TzS44.svg\",srcSet:\"https://framerusercontent.com/images/CzplUV5YSCEp1FaDQGqo9TzS44.svg?scale-down-to=512 512w,https://framerusercontent.com/images/CzplUV5YSCEp1FaDQGqo9TzS44.svg 1000w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ZIyah1QUb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vbM0HpnTH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter17l3nz3=activeVariantCallback(async(...args)=>{setVariant(\"ioA5aH1mh\");});const onMouseEnterx122hy=activeVariantCallback(async(...args)=>{setVariant(\"UxDUPyQQv\");});const onTap7nl2i2=activeVariantCallback(async(...args)=>{setVariant(\"KVcE0XC3t\");});const onTap3mqm0o=activeVariantCallback(async(...args)=>{setVariant(\"FrAChKSFd\");});const onTapiflhmv=activeVariantCallback(async(...args)=>{setVariant(\"pPbwgXKIA\");});const onMouseLeavevkce2q=activeVariantCallback(async(...args)=>{setVariant(\"vbM0HpnTH\");});const onMouseLeavedgu0e1=activeVariantCallback(async(...args)=>{setVariant(\"TRfxQoq1M\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"pPbwgXKIA\",\"FrAChKSFd\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"pPbwgXKIA\",\"FrAChKSFd\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"ioA5aH1mh\",\"UxDUPyQQv\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"FrAChKSFd\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3j4lhs\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"vbM0HpnTH\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(245, 245, 245)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{FrAChKSFd:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({FrAChKSFd:{\"data-framer-name\":\"Phone Open\"},ioA5aH1mh:{\"data-framer-name\":\"Desktop Active\"},pPbwgXKIA:{\"data-framer-name\":\"Phone\"},TRfxQoq1M:{\"data-framer-name\":\"Tablet\"},UxDUPyQQv:{\"data-framer-name\":\"Tablet Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h3j8yr\",\"data-framer-name\":\"Site Title\",layoutDependency:layoutDependency,layoutId:\"FJ1h6tydF\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},variants:{FrAChKSFd:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},ioA5aH1mh:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(245, 245, 245)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},UxDUPyQQv:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({ioA5aH1mh:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"uodj8ot57\",scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-17qov2k framer-5fyeya\",\"data-framer-name\":\"Logo + Slogan\",layoutDependency:layoutDependency,layoutId:\"uodj8ot57\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6i63if\",layoutDependency:layoutDependency,layoutId:\"znTBg4wNa\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:165,pixelHeight:150,pixelWidth:165,sizes:\"80px\",...toResponsiveImage(ZIyah1QUb),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1179vke\",\"data-framer-name\":\"Logo Frame\",layoutDependency:layoutDependency,layoutId:\"OOFpKBFfo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vqpqht\",\"data-framer-name\":\"Logotype\",layoutDependency:layoutDependency,layoutId:\"iKJgvw9x4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18k92v2\",\"data-framer-name\":\"decon_experts_logo_type\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:240,layoutDependency:layoutDependency,layoutId:\"WFbVXFKzh\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 240 36\" style=\"enable-background:new 0 0 240 36\" xml:space=\"preserve\"><path d=\"M11.4 27.7H4V8.2h7.4c12.7 0 12.7 19.5 0 19.5zM9 23.2h2.4c6.2 0 6.2-10.5 0-10.5H9v10.5zm28-10.5h-7.3v2.8h6.7V20h-6.6v3.4h7.5v4.5H24.8V8.3H37v4.4zM50.4 8c4 0 8.5 2.2 9.2 7.4h-4.9c-.7-2-2.2-2.9-4.3-2.9-2.9 0-4.9 2.2-4.9 5.4 0 2.9 1.9 5.4 4.9 5.4 2.1 0 3.8-1.1 4.4-3.2h4.9c-.7 5.5-5.1 7.7-9.3 7.7-5 0-10-3.3-10-10 0-6.5 5-9.8 10-9.8zm11.9 10c0-13.5 20.1-13.5 20.1 0s-20.1 13.5-20.1 0zm15 0c0-7.1-9.8-7.1-9.8 0s9.8 7.1 9.8 0zm14.1.1v9.6h-5.2V8.1H88l9.9 9.7V8.2h5.1v19.6h-1.8l-9.8-9.7zm36.5-5.4h-7.3v2.8h6.6V20h-6.6v3.4h7.5v4.5h-12.5V8.3h12.2c.1 1.3.1 2.8.1 4.4zm11.4 8.9-3.8 6.1h-5.2V27l6.3-9.6-5.6-8.5v-.7h5.1l3.2 5.1h.1l3.3-5.1h5v.7l-5.6 8.5 6.3 9.6v.7h-5.3l-3.7-6.1h-.1zm12 6.1V8.1h8.6c9.4 0 9.4 14.6 0 14.6h-3.6v5h-5zm8.5-15h-3.6v5.6h3.6c2.8 0 2.9-5.6 0-5.6zm23.1 0h-7.3v2.8h6.6V20h-6.6v3.4h7.5v4.5h-12.5V8.3h12.2c.1 1.3.1 2.8.1 4.4zM204 27v.7h-5.6L195 22h-2.6v5.8h-5V8.2h8.6c7.7 0 9.1 9.3 4.1 12.6L204 27zm-8-14.3h-3.6v4.9h3.6c2.7 0 2.9-4.9 0-4.9zm9 0V8.2h14.5v4.5h-4.8v15.1h-4.9V12.7H205zm27.3 9.3c0-1.4-1.6-1.7-3.6-1.8-4.2-.3-7-1.8-7.1-6-.2-8.5 15-8.5 14.9 0h-4.7c0-2.6-5.3-2.4-5.4 0-.1 1.5 1.3 1.8 3.1 2 3.9.4 7.7 1 7.7 5.9 0 8.2-15.9 8.4-15.8-.2h4.8c0 2.3 6.1 2.4 6.1.1z\" style=\"fill:#787d8c\"/></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nhqaqk\",\"data-framer-name\":\"Nav Menu + CTA\",layoutDependency:layoutDependency,layoutId:\"hOFvoQLai\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jyhiv\",layoutDependency:layoutDependency,layoutId:\"koB1UuFsW\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12dyrns-container\",layoutDependency:layoutDependency,layoutId:\"f8xINhLIR-container\",nodeId:\"f8xINhLIR\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks[0],height:\"100%\",id:\"f8xINhLIR\",layoutId:\"f8xINhLIR\",width:\"100%\",YQmRlcyVc:\"Home\",...addPropertyOverrides({ioA5aH1mh:{ENuBvMhoW:resolvedLinks[2]},TRfxQoq1M:{ENuBvMhoW:resolvedLinks[1]},UxDUPyQQv:{ENuBvMhoW:resolvedLinks[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"pnTvZVcJy\",scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18bfv5x framer-5fyeya\",\"data-framer-name\":\"Nav Menu Item - Dropdown\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pnTvZVcJy\",onMouseEnter:onMouseEnter17l3nz3,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500},variants:{ioA5aH1mh:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"},UxDUPyQQv:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({ioA5aH1mh:{\"data-highlight\":undefined,onMouseEnter:undefined},TRfxQoq1M:{onMouseEnter:onMouseEnterx122hy},UxDUPyQQv:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09104d29-c146-4a77-850d-6163ab6d3f23, rgb(48, 48, 48)))\"},children:\"Services\"})}),className:\"framer-1x70a7c\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"B9XpHPRdf\",style:{\"--extracted-r6o4lv\":\"var(--token-09104d29-c146-4a77-850d-6163ab6d3f23, rgb(48, 48, 48))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d_rSENeDz\"},implicitPathVariables:undefined},{href:{webPageId:\"d_rSENeDz\"},implicitPathVariables:undefined},{href:{webPageId:\"d_rSENeDz\"},implicitPathVariables:undefined},{href:{webPageId:\"d_rSENeDz\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ch9ndm-container\",layoutDependency:layoutDependency,layoutId:\"hgYkeM4E3-container\",nodeId:\"hgYkeM4E3\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks1[0],height:\"100%\",id:\"hgYkeM4E3\",layoutId:\"hgYkeM4E3\",width:\"100%\",YQmRlcyVc:\"Blog\",...addPropertyOverrides({ioA5aH1mh:{ENuBvMhoW:resolvedLinks1[2]},TRfxQoq1M:{ENuBvMhoW:resolvedLinks1[1]},UxDUPyQQv:{ENuBvMhoW:resolvedLinks1[3]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CNDopB4JT\"},implicitPathVariables:undefined},{href:{webPageId:\"CNDopB4JT\"},implicitPathVariables:undefined},{href:{webPageId:\"CNDopB4JT\"},implicitPathVariables:undefined},{href:{webPageId:\"CNDopB4JT\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8646t-container\",layoutDependency:layoutDependency,layoutId:\"cXrlIolfC-container\",nodeId:\"cXrlIolfC\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks2[0],height:\"100%\",id:\"cXrlIolfC\",layoutId:\"cXrlIolfC\",width:\"100%\",YQmRlcyVc:\"Contact Us\",...addPropertyOverrides({ioA5aH1mh:{ENuBvMhoW:resolvedLinks2[2]},TRfxQoq1M:{ENuBvMhoW:resolvedLinks2[1]},UxDUPyQQv:{ENuBvMhoW:resolvedLinks2[3]}},baseVariant,gestureVariant)})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/6588588485\",motionChild:true,nodeId:\"asK83rttK\",openInNewTab:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsxs(MotionAWithClassdtjt28,{className:\"framer-dtjt28 framer-5fyeya\",layoutDependency:layoutDependency,layoutId:\"asK83rttK\",style:{backgroundColor:\"rgb(118, 204, 62)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xtb43t\",\"data-framer-name\":\"whatsapp\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:448,layoutDependency:layoutDependency,layoutId:\"xlr7tRchZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\" style=\"enable-background:new 0 0 448 512\" xml:space=\"preserve\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1s56.2 81.2 56.1 130.5c0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7s-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4s4.6-24.1 3.2-26.4c-1.3-2.5-5-3.9-10.5-6.6z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.025em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"8858 8485\"})}),className:\"framer-1vdnpts\",fonts:[\"FS;Switzer-bold\"],layoutDependency:layoutDependency,layoutId:\"nfSMAJP01\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6vh8e4\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"M12SpfOBs\",onTap:onTap7nl2i2,...addPropertyOverrides({FrAChKSFd:{onTap:onTapiflhmv},pPbwgXKIA:{onTap:onTap3mqm0o}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b8nhil\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"uKkEkGRvS\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{FrAChKSFd:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13e72p4\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"zGmMzk5eU\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ybv5g\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"pNV9i4KrK\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{FrAChKSFd:{rotate:45}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15ajdqu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tBWrOpcKv\",onMouseLeave:onMouseLeavevkce2q,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},variants:{ioA5aH1mh:{boxShadow:\"0px 1px 2px 1px rgba(0, 0, 0, 0.1)\"},UxDUPyQQv:{boxShadow:\"none\"}},...addPropertyOverrides({UxDUPyQQv:{onMouseLeave:onMouseLeavedgu0e1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yXSjZcBZ9\"},implicitPathVariables:undefined},{href:{webPageId:\"yXSjZcBZ9\"},implicitPathVariables:undefined},{href:{webPageId:\"yXSjZcBZ9\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2hv9vz-container\",layoutDependency:layoutDependency,layoutId:\"EWR3fRMgN-container\",nodeId:\"EWR3fRMgN\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks3[0],height:\"100%\",id:\"EWR3fRMgN\",layoutId:\"EWR3fRMgN\",width:\"100%\",YQmRlcyVc:\"Air Duct Cleaning and Sanitation\",...addPropertyOverrides({ioA5aH1mh:{ENuBvMhoW:resolvedLinks3[1],YQmRlcyVc:\"Air Duct Cleaning & Sanitation\"},UxDUPyQQv:{ENuBvMhoW:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M9wVC_1_T\"},implicitPathVariables:undefined},{href:{webPageId:\"M9wVC_1_T\"},implicitPathVariables:undefined},{href:{webPageId:\"M9wVC_1_T\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sy9qz-container\",layoutDependency:layoutDependency,layoutId:\"PBMMMFapf-container\",nodeId:\"PBMMMFapf\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks4[0],height:\"100%\",id:\"PBMMMFapf\",layoutId:\"PBMMMFapf\",width:\"100%\",YQmRlcyVc:\"Mold Remediation\",...addPropertyOverrides({ioA5aH1mh:{ENuBvMhoW:resolvedLinks4[1]},UxDUPyQQv:{ENuBvMhoW:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_jNDNpfO\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rhi8z3-container\",layoutDependency:layoutDependency,layoutId:\"Pwz8MoMFB-container\",nodeId:\"Pwz8MoMFB\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{height:\"100%\",id:\"Pwz8MoMFB\",layoutId:\"Pwz8MoMFB\",width:\"100%\",YQmRlcyVc:\"Carpet and Upholstery Maintenance\",...addPropertyOverrides({ioA5aH1mh:{ENuBvMhoW:resolvedLinks5[0],YQmRlcyVc:\"Carpet & Upholstery Maintenance\"}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n53l69\",layoutDependency:layoutDependency,layoutId:\"ptaTs2pmv\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vqngc5-container\",layoutDependency:layoutDependency,layoutId:\"LhUguWNYV-container\",nodeId:\"LhUguWNYV\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks6[0],height:\"100%\",id:\"LhUguWNYV\",layoutId:\"LhUguWNYV\",width:\"100%\",YQmRlcyVc:\"Home\",...addPropertyOverrides({FrAChKSFd:{ENuBvMhoW:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d_rSENeDz\"},implicitPathVariables:undefined},{href:{webPageId:\"d_rSENeDz\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12oq1mz-container\",layoutDependency:layoutDependency,layoutId:\"utA1OTYR3-container\",nodeId:\"utA1OTYR3\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks7[0],height:\"100%\",id:\"utA1OTYR3\",layoutId:\"utA1OTYR3\",width:\"100%\",YQmRlcyVc:\"Blog\",...addPropertyOverrides({FrAChKSFd:{ENuBvMhoW:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yXSjZcBZ9\"},implicitPathVariables:undefined},{href:{webPageId:\"yXSjZcBZ9\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vznjax-container\",layoutDependency:layoutDependency,layoutId:\"iiiVeRiex-container\",nodeId:\"iiiVeRiex\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks8[0],height:\"100%\",id:\"iiiVeRiex\",layoutId:\"iiiVeRiex\",width:\"100%\",YQmRlcyVc:\"Air Duct Cleaning & Sanitation\",...addPropertyOverrides({FrAChKSFd:{ENuBvMhoW:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M9wVC_1_T\"},implicitPathVariables:undefined},{href:{webPageId:\"M9wVC_1_T\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ogd05e-container\",layoutDependency:layoutDependency,layoutId:\"PtH0nOfO9-container\",nodeId:\"PtH0nOfO9\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks9[0],height:\"100%\",id:\"PtH0nOfO9\",layoutId:\"PtH0nOfO9\",width:\"100%\",YQmRlcyVc:\"Mold Remediation\",...addPropertyOverrides({FrAChKSFd:{ENuBvMhoW:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j_jNDNpfO\"},implicitPathVariables:undefined},{href:{webPageId:\"j_jNDNpfO\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j7gzps-container\",layoutDependency:layoutDependency,layoutId:\"PifKasMC_-container\",nodeId:\"PifKasMC_\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks10[0],height:\"100%\",id:\"PifKasMC_\",layoutId:\"PifKasMC_\",width:\"100%\",YQmRlcyVc:\"Carpet & Upholstery Maintenance\",...addPropertyOverrides({FrAChKSFd:{ENuBvMhoW:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CNDopB4JT\"},implicitPathVariables:undefined},{href:{webPageId:\"CNDopB4JT\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vm6cib-container\",layoutDependency:layoutDependency,layoutId:\"QWuKB2nQ6-container\",nodeId:\"QWuKB2nQ6\",rendersWithMotion:true,scopeId:\"R5Ci6J4SI\",children:/*#__PURE__*/_jsx(NavMenuItem,{ENuBvMhoW:resolvedLinks11[0],height:\"100%\",id:\"QWuKB2nQ6\",layoutId:\"QWuKB2nQ6\",width:\"100%\",YQmRlcyVc:\"Contact Us\",...addPropertyOverrides({FrAChKSFd:{ENuBvMhoW:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XJUOv.framer-5fyeya, .framer-XJUOv .framer-5fyeya { display: block; }\",\".framer-XJUOv.framer-3j4lhs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-XJUOv .framer-h3j8yr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: 100%; }\",\".framer-XJUOv .framer-17qov2k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-XJUOv .framer-6i63if { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 95px; }\",\".framer-XJUOv .framer-1179vke { aspect-ratio: 1.1875 / 1; flex: none; height: 67px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 80px); }\",\".framer-XJUOv .framer-1vqpqht { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XJUOv .framer-18k92v2 { aspect-ratio: 6.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 213px; }\",\".framer-XJUOv .framer-1nhqaqk { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XJUOv .framer-jyhiv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XJUOv .framer-12dyrns-container, .framer-XJUOv .framer-ch9ndm-container, .framer-XJUOv .framer-1a8646t-container, .framer-XJUOv .framer-2hv9vz-container, .framer-XJUOv .framer-sy9qz-container, .framer-XJUOv .framer-rhi8z3-container, .framer-XJUOv .framer-1vqngc5-container, .framer-XJUOv .framer-12oq1mz-container, .framer-XJUOv .framer-vznjax-container, .framer-XJUOv .framer-1ogd05e-container, .framer-XJUOv .framer-1j7gzps-container, .framer-XJUOv .framer-vm6cib-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XJUOv .framer-18bfv5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-XJUOv .framer-1x70a7c, .framer-XJUOv .framer-1vdnpts { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XJUOv .framer-dtjt28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-XJUOv .framer-xtb43t { aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 24px; }\",\".framer-XJUOv .framer-6vh8e4 { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-XJUOv .framer-1b8nhil { bottom: 7px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XJUOv .framer-13e72p4 { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XJUOv .framer-18ybv5g { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XJUOv .framer-15ajdqu { align-content: center; align-items: center; bottom: -153px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: absolute; right: -2343px; width: 320px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-XJUOv .framer-1n53l69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 24px 16px 24px 16px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XJUOv.framer-3j4lhs, .framer-XJUOv .framer-h3j8yr, .framer-XJUOv .framer-17qov2k, .framer-XJUOv .framer-6i63if, .framer-XJUOv .framer-1vqpqht, .framer-XJUOv .framer-1nhqaqk, .framer-XJUOv .framer-jyhiv, .framer-XJUOv .framer-18bfv5x, .framer-XJUOv .framer-dtjt28, .framer-XJUOv .framer-15ajdqu, .framer-XJUOv .framer-1n53l69 { gap: 0px; } .framer-XJUOv.framer-3j4lhs > *, .framer-XJUOv .framer-18bfv5x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XJUOv.framer-3j4lhs > :first-child, .framer-XJUOv .framer-1vqpqht > :first-child, .framer-XJUOv .framer-18bfv5x > :first-child, .framer-XJUOv .framer-15ajdqu > :first-child, .framer-XJUOv .framer-1n53l69 > :first-child { margin-top: 0px; } .framer-XJUOv.framer-3j4lhs > :last-child, .framer-XJUOv .framer-1vqpqht > :last-child, .framer-XJUOv .framer-18bfv5x > :last-child, .framer-XJUOv .framer-15ajdqu > :last-child, .framer-XJUOv .framer-1n53l69 > :last-child { margin-bottom: 0px; } .framer-XJUOv .framer-h3j8yr > *, .framer-XJUOv .framer-6i63if > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XJUOv .framer-h3j8yr > :first-child, .framer-XJUOv .framer-17qov2k > :first-child, .framer-XJUOv .framer-6i63if > :first-child, .framer-XJUOv .framer-1nhqaqk > :first-child, .framer-XJUOv .framer-jyhiv > :first-child, .framer-XJUOv .framer-dtjt28 > :first-child { margin-left: 0px; } .framer-XJUOv .framer-h3j8yr > :last-child, .framer-XJUOv .framer-17qov2k > :last-child, .framer-XJUOv .framer-6i63if > :last-child, .framer-XJUOv .framer-1nhqaqk > :last-child, .framer-XJUOv .framer-jyhiv > :last-child, .framer-XJUOv .framer-dtjt28 > :last-child { margin-right: 0px; } .framer-XJUOv .framer-17qov2k > *, .framer-XJUOv .framer-1nhqaqk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-XJUOv .framer-1vqpqht > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XJUOv .framer-jyhiv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XJUOv .framer-dtjt28 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XJUOv .framer-15ajdqu > *, .framer-XJUOv .framer-1n53l69 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-XJUOv.framer-v-vxffzf.framer-3j4lhs { width: 810px; }\",\".framer-XJUOv.framer-v-vxffzf .framer-17qov2k, .framer-XJUOv.framer-v-1fc36z8 .framer-17qov2k, .framer-XJUOv.framer-v-17yx72u .framer-17qov2k, .framer-XJUOv.framer-v-1wb6l9c .framer-17qov2k { gap: 8px; }\",\".framer-XJUOv.framer-v-vxffzf .framer-18k92v2, .framer-XJUOv.framer-v-1fc36z8 .framer-18k92v2, .framer-XJUOv.framer-v-17yx72u .framer-18k92v2, .framer-XJUOv.framer-v-1wb6l9c .framer-18k92v2 { height: var(--framer-aspect-ratio-supported, 24px); width: 160px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XJUOv.framer-v-vxffzf .framer-17qov2k { gap: 0px; } .framer-XJUOv.framer-v-vxffzf .framer-17qov2k > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XJUOv.framer-v-vxffzf .framer-17qov2k > :first-child { margin-left: 0px; } .framer-XJUOv.framer-v-vxffzf .framer-17qov2k > :last-child { margin-right: 0px; } }\",\".framer-XJUOv.framer-v-1fc36z8.framer-3j4lhs { width: 390px; }\",\".framer-XJUOv.framer-v-1fc36z8 .framer-h3j8yr, .framer-XJUOv.framer-v-1wb6l9c .framer-h3j8yr { justify-content: flex-start; }\",\".framer-XJUOv.framer-v-1fc36z8 .framer-6i63if, .framer-XJUOv.framer-v-1wb6l9c .framer-6i63if { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XJUOv.framer-v-1fc36z8 .framer-17qov2k, .framer-XJUOv.framer-v-1fc36z8 .framer-6i63if { gap: 0px; } .framer-XJUOv.framer-v-1fc36z8 .framer-17qov2k > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XJUOv.framer-v-1fc36z8 .framer-17qov2k > :first-child { margin-left: 0px; } .framer-XJUOv.framer-v-1fc36z8 .framer-17qov2k > :last-child { margin-right: 0px; } .framer-XJUOv.framer-v-1fc36z8 .framer-6i63if > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XJUOv.framer-v-1fc36z8 .framer-6i63if > :first-child { margin-top: 0px; } .framer-XJUOv.framer-v-1fc36z8 .framer-6i63if > :last-child { margin-bottom: 0px; } }\",\".framer-XJUOv.framer-v-b73enf.framer-3j4lhs { overflow: visible; }\",\".framer-XJUOv.framer-v-b73enf .framer-h3j8yr { order: 1; overflow: visible; }\",\".framer-XJUOv.framer-v-b73enf .framer-15ajdqu { align-content: flex-start; align-items: flex-start; bottom: -133px; right: 144px; z-index: 2; }\",\".framer-XJUOv.framer-v-17yx72u.framer-3j4lhs { overflow: visible; width: 810px; }\",\".framer-XJUOv.framer-v-17yx72u .framer-15ajdqu { left: 307px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XJUOv.framer-v-17yx72u .framer-17qov2k { gap: 0px; } .framer-XJUOv.framer-v-17yx72u .framer-17qov2k > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XJUOv.framer-v-17yx72u .framer-17qov2k > :first-child { margin-left: 0px; } .framer-XJUOv.framer-v-17yx72u .framer-17qov2k > :last-child { margin-right: 0px; } }\",\".framer-XJUOv.framer-v-1wb6l9c.framer-3j4lhs { justify-content: flex-start; width: 390px; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-6vh8e4, .framer-XJUOv.framer-v-1wb6l9c .framer-1vqngc5-container { order: 0; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-1b8nhil { bottom: 15px; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-13e72p4 { height: 1px; left: calc(50.00000000000002% - 1px / 2); top: calc(50.00000000000002% - 1px / 2); width: 1px; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-18ybv5g { top: 15px; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-12oq1mz-container { order: 4; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-vznjax-container { order: 1; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-1ogd05e-container { order: 2; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-1j7gzps-container { order: 3; }\",\".framer-XJUOv.framer-v-1wb6l9c .framer-vm6cib-container { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XJUOv.framer-v-1wb6l9c .framer-17qov2k, .framer-XJUOv.framer-v-1wb6l9c .framer-6i63if { gap: 0px; } .framer-XJUOv.framer-v-1wb6l9c .framer-17qov2k > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XJUOv.framer-v-1wb6l9c .framer-17qov2k > :first-child { margin-left: 0px; } .framer-XJUOv.framer-v-1wb6l9c .framer-17qov2k > :last-child { margin-right: 0px; } .framer-XJUOv.framer-v-1wb6l9c .framer-6i63if > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XJUOv.framer-v-1wb6l9c .framer-6i63if > :first-child { margin-top: 0px; } .framer-XJUOv.framer-v-1wb6l9c .framer-6i63if > :last-child { margin-bottom: 0px; } }\",'.framer-XJUOv[data-border=\"true\"]::after, .framer-XJUOv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TRfxQoq1M\":{\"layout\":[\"fixed\",\"auto\"]},\"pPbwgXKIA\":{\"layout\":[\"fixed\",\"auto\"]},\"ioA5aH1mh\":{\"layout\":[\"fixed\",\"auto\"]},\"UxDUPyQQv\":{\"layout\":[\"fixed\",\"auto\"]},\"FrAChKSFd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZIyah1QUb\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerR5Ci6J4SI=withCSS(Component,css,\"framer-XJUOv\");export default FramerR5Ci6J4SI;FramerR5Ci6J4SI.displayName=\"Nav\";FramerR5Ci6J4SI.defaultProps={height:88,width:1200};addPropertyControls(FramerR5Ci6J4SI,{variant:{options:[\"vbM0HpnTH\",\"TRfxQoq1M\",\"pPbwgXKIA\",\"ioA5aH1mh\",\"UxDUPyQQv\",\"FrAChKSFd\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Desktop Active\",\"Tablet Active\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},ZIyah1QUb:{__defaultAssetReference:\"data:framer/asset-reference,CzplUV5YSCEp1FaDQGqo9TzS44.svg?originalFilename=decon-experts-logo.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerR5Ci6J4SI,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"}]},...NavMenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR5Ci6J4SI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ZIyah1QUb\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"88\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TRfxQoq1M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pPbwgXKIA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ioA5aH1mh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UxDUPyQQv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FrAChKSFd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "fontStore", "fonts", "css", "className", "DownloadFonts", "getFonts", "Download", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framere34HAv1UX", "withCSS", "e34HAv1UX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "withClass", "Component", "props", "p", "event", "window", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ENuBvMhoW", "YQmRlcyVc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "Framerot4SRHRhN", "withCSS", "ot4SRHRhN_default", "addPropertyControls", "ControlType", "addFonts", "NavMenuItemFonts", "getFonts", "ot4SRHRhN_default", "MotionAWithClassdtjt28", "withCodeBoundaryForOverrides", "motion", "withClass", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ZIyah1QUb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter17l3nz3", "args", "onMouseEnterx122hy", "onTap7nl2i2", "onTap3mqm0o", "onTapiflhmv", "onMouseLeavevkce2q", "onMouseLeavedgu0e1", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "Image2", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "css", "FramerR5Ci6J4SI", "withCSS", "R5Ci6J4SI_default", "addPropertyControls", "ControlType", "addFonts"]
}
