{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/8MAc4UAeQzWXgDyL7fhk/IHCRoTq0optXvCqVbKpo/shPUWbsE_.js", "ssg:https://framerusercontent.com/modules/yoiVKmkigIQgynKGZK7B/MYYbf2laweF0EBQmVoEc/hJ3jwY9Jl.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as componentPresets from\"https://framerusercontent.com/modules/uYfgtNXOyjYMZuq45Kld/do76DeDsYZFTbxhszoHG/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/eMhy069CXJ7yF15Z7MXt/6sTP5pXg5hXAylXt3T3s/BGwU3SL_M.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/l77b75KcmnfVrGw5Vs9h/x6e1YbZLGgfiGaoZdhjx/L8WWm0vZ8.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/r0rjpMI0zeylm3nuG2Ug/8vfd9o7d9A0IFv04thd6/mho5ljjfm.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/70OIXj84FwdRoet6A9F2/o6t9plv7YOMrLedOTauM/nhvzWKX7U.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/ajcNbSqbYLOuP7uFFMCt/zD3ApDtrGTTrD11LuvIH/OC1WFZCGM.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/idV7zbGc3IFPLAHdSH3D/DzMclRq4E4ccxSM8aL8f/oVXVeLRgJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xAupyg9P0MDTyllLtv5M/Dpt3tZqioxoWDv0EU0bl/pltMPk_su.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/m8Ycl42krL0dflAJSUHI/NBUUSuz1yNl4YkygDEmJ/qoSsHRLMN.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/wVEOAfowZwmBYOIiUPFx/04bKWjSdsYuFLUI2SYg9/rns3n8C_t.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/BNJosifDwjwBu16XXLha/bXYhItRhtSjaslTVHyih/u3kSM9mMg.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/8eeLV0vi2eROqye1G7l0/igqEz33YvRTC5UTxxz0V/uzYBUs6FV.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={jCC_7Oalb:{hover:true}};const cycleOrder=[\"jCC_7Oalb\",\"nPZOHauoK\"];const serializationHash=\"framer-2o7rb\";const variantClassNames={jCC_7Oalb:\"framer-v-e2l7eh\",nPZOHauoK:\"framer-v-gkxk7o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Closed Single Column\":\"jCC_7Oalb\",\"Open Single Column\":\"nPZOHauoK\"};const getProps=({answer,color,height,id,question,width,...props})=>{return{...props,AWSjGYVqE:question??props.AWSjGYVqE??\"Question Title\",LkqmyFFrQ:color??props.LkqmyFFrQ??\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"jCC_7Oalb\",y1pMpCSSw:answer??props.y1pMpCSSw??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.ul,{children:/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Flat Deck Tiny House Trailer\"})})}),/*#__PURE__*/_jsxs(motion.ul,{style:{\"--framer-font-size\":\"16.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Fender Style Tiny House Trailer\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Gooseneck Tiny House Trailer\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"+ Foundation for removable Tiny Homes & Cabins\"})})]})]})};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AWSjGYVqE,LkqmyFFrQ,y1pMpCSSw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jCC_7Oalb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1fkgyu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"nPZOHauoK\");});const onTap1qr0qrw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"jCC_7Oalb\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"nPZOHauoK\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-e2l7eh\",className,classNames),\"data-framer-name\":\"Closed Single Column\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jCC_7Oalb\",onTap:onTap1fkgyu,ref:ref??ref1,style:{backgroundColor:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",...style},variants:{\"jCC_7Oalb-hover\":{backgroundColor:\"var(--token-4d9f5977-62c4-4fc8-9ac9-8e44115892c8, rgb(250, 250, 250))\",boxShadow:\"0px 0px 12px 0px rgba(0,0,0,0.25)\"},nPZOHauoK:{backgroundColor:\"var(--token-4d9f5977-62c4-4fc8-9ac9-8e44115892c8, rgb(250, 250, 250))\"}},...addPropertyOverrides({\"jCC_7Oalb-hover\":{\"data-framer-name\":undefined},nPZOHauoK:{\"data-framer-name\":\"Open Single Column\",onTap:onTap1qr0qrw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14yrc5x\",layoutDependency:layoutDependency,layoutId:\"NqBpY9nwL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6a498dd2-32cd-4929-9ba2-df02fe315602, rgb(34, 34, 34)))\"},children:\"Question Title\"})}),className:\"framer-14v6ler\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"lVq07YjEd\",style:{\"--extracted-r6o4lv\":\"var(--token-6a498dd2-32cd-4929-9ba2-df02fe315602, rgb(34, 34, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-LkqmyFFrQ-shPUWbsE_\":LkqmyFFrQ},text:AWSjGYVqE,variants:{nPZOHauoK:{\"--extracted-r6o4lv\":\"var(--variable-reference-LkqmyFFrQ-shPUWbsE_)\",\"--variable-reference-LkqmyFFrQ-shPUWbsE_\":LkqmyFFrQ}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"jCC_7Oalb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6a498dd2-32cd-4929-9ba2-df02fe315602, rgb(34, 34, 34)))\"},children:\"Question Title\"})}),fonts:[\"GF;Outfit-500\"]},nPZOHauoK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LkqmyFFrQ-shPUWbsE_))\"},children:\"Question Title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yx7qpe-container\",layoutDependency:layoutDependency,layoutId:\"MDDGqDVOv-container\",style:{opacity:.5,rotate:0},variants:{\"jCC_7Oalb-hover\":{opacity:1,rotate:0},nPZOHauoK:{rotate:180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6cd9cfb7-0483-41c2-b188-fa8fd28492c9, rgb(102, 102, 102))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"MDDGqDVOv\",layoutId:\"MDDGqDVOv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({nPZOHauoK:{color:LkqmyFFrQ}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bmiyou\",layoutDependency:layoutDependency,layoutId:\"NWrmF5EZQ\",style:{opacity:0},variants:{nPZOHauoK:{opacity:1}},children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"nKUmq07vr\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"bUhP4J27f\"],\"module:pVk4QsoHxASnVtUBp6jr/VRQHcjrUbz44BGN94kVX/CodeBlock.js:default\":componentPresets.props[\"UgV2VYp6B\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:y1pMpCSSw,className:\"framer-1od168d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I_5b81qJq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1djpmbi\",blockquote:\"framer-styles-preset-lfstxy\",code:\"framer-styles-preset-o4d87d\",h1:\"framer-styles-preset-byo2k2\",h2:\"framer-styles-preset-edlyc3\",h3:\"framer-styles-preset-1i1o4n8\",h4:\"framer-styles-preset-u7xr3c\",h5:\"framer-styles-preset-eng9x4\",h6:\"framer-styles-preset-xkh7vv\",img:\"framer-styles-preset-16hbgkr\",p:\"framer-styles-preset-1ezl1gd\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2o7rb.framer-a37hbp, .framer-2o7rb .framer-a37hbp { display: block; }\",\".framer-2o7rb.framer-e2l7eh { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 600px; }\",\".framer-2o7rb .framer-14yrc5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2o7rb .framer-14v6ler { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2o7rb .framer-1yx7qpe-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-2o7rb .framer-bmiyou { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-2o7rb .framer-1od168d { flex: 1 0 0px; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2o7rb.framer-e2l7eh, .framer-2o7rb .framer-bmiyou { gap: 0px; } .framer-2o7rb.framer-e2l7eh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2o7rb.framer-e2l7eh > :first-child { margin-top: 0px; } .framer-2o7rb.framer-e2l7eh > :last-child { margin-bottom: 0px; } .framer-2o7rb .framer-bmiyou > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2o7rb .framer-bmiyou > :first-child { margin-left: 0px; } .framer-2o7rb .framer-bmiyou > :last-child { margin-right: 0px; } }\",\".framer-2o7rb.framer-v-gkxk7o .framer-bmiyou { height: min-content; padding: 20px 0px 10px 0px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nPZOHauoK\":{\"layout\":[\"fixed\",\"auto\"]},\"LgKeYkKyq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AWSjGYVqE\":\"question\",\"LkqmyFFrQ\":\"color\",\"y1pMpCSSw\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramershPUWbsE_=withCSS(Component,css,\"framer-2o7rb\");export default FramershPUWbsE_;FramershPUWbsE_.displayName=\"Accordion for sketchup comp\";FramershPUWbsE_.defaultProps={height:64,width:600};addPropertyControls(FramershPUWbsE_,{variant:{options:[\"jCC_7Oalb\",\"nPZOHauoK\"],optionTitles:[\"Closed Single Column\",\"Open Single Column\"],title:\"Variant\",type:ControlType.Enum},AWSjGYVqE:{defaultValue:\"Question Title\",displayTextArea:false,title:\"Question\",type:ControlType.String},LkqmyFFrQ:{defaultValue:'var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88)) /* {\"name\":\"Peach\"} */',title:\"Color\",type:ControlType.Color},y1pMpCSSw:{defaultValue:'<ul><li data-preset-tag=\"p\"><p>Flat Deck Tiny House Trailer</p></li></ul><ul style=\"--framer-text-color: rgb(102, 102, 102); --framer-font-size: 16.5px; --framer-text-transform: none; --framer-text-alignment: left;\"><li data-preset-tag=\"p\"><p>Fender Style Tiny House Trailer</p></li><li data-preset-tag=\"p\"><p>Gooseneck Tiny House Trailer</p></li><li data-preset-tag=\"p\"><p>+ Foundation for removable Tiny Homes &amp; Cabins</p></li></ul>',title:\"Answer\",type:ControlType.RichText}});addFonts(FramershPUWbsE_,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"UgV2VYp6B\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"UgV2VYp6B\"]):[],...componentPresets.fonts?.[\"nKUmq07vr\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"nKUmq07vr\"]):[],...componentPresets.fonts?.[\"bUhP4J27f\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"bUhP4J27f\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramershPUWbsE_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerVariables\":\"{\\\"AWSjGYVqE\\\":\\\"question\\\",\\\"LkqmyFFrQ\\\":\\\"color\\\",\\\"y1pMpCSSw\\\":\\\"answer\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nPZOHauoK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LgKeYkKyq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import NavigationBarHome from\"#framer/local/canvasComponent/M9ba2Xc1X/M9ba2Xc1X.js\";import BTextLink from\"#framer/local/canvasComponent/nPDkOPDCd/nPDkOPDCd.js\";import ElementsAccordion from\"#framer/local/canvasComponent/shPUWbsE_/shPUWbsE_.js\";import GeneralFooter from\"#framer/local/canvasComponent/THxHuXp1T/THxHuXp1T.js\";import CCTATryForFree from\"#framer/local/canvasComponent/TY0FMcfig/TY0FMcfig.js\";import*as sharedStyle6 from\"#framer/local/css/BGwU3SL_M/BGwU3SL_M.js\";import*as sharedStyle7 from\"#framer/local/css/EfxUGHAAg/EfxUGHAAg.js\";import*as sharedStyle from\"#framer/local/css/L8WWm0vZ8/L8WWm0vZ8.js\";import*as sharedStyle1 from\"#framer/local/css/mho5ljjfm/mho5ljjfm.js\";import*as sharedStyle4 from\"#framer/local/css/pltMPk_su/pltMPk_su.js\";import*as sharedStyle5 from\"#framer/local/css/qoSsHRLMN/qoSsHRLMN.js\";import*as sharedStyle3 from\"#framer/local/css/rns3n8C_t/rns3n8C_t.js\";import*as sharedStyle2 from\"#framer/local/css/tSpa5EORs/tSpa5EORs.js\";import metadataProvider from\"#framer/local/webPageMetadata/hJ3jwY9Jl/hJ3jwY9Jl.js\";const NavigationBarHomeFonts=getFonts(NavigationBarHome);const MaterialFonts=getFonts(Material);const BTextLinkFonts=getFonts(BTextLink);const PhosphorFonts=getFonts(Phosphor);const ElementsAccordionFonts=getFonts(ElementsAccordion);const CCTATryForFreeFonts=getFonts(CCTATryForFree);const VideoFonts=getFonts(Video);const GeneralFooterFonts=getFonts(GeneralFooter);const breakpoints={HzoCn65zP:\"(max-width: 809px)\",okSxMI_Fj:\"(min-width: 1920px)\",xOD6nCGqo:\"(min-width: 1200px) and (max-width: 1919px)\",Z1r068mLL:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NSBP1\";const variantClassNames={HzoCn65zP:\"framer-v-1ibycv6\",okSxMI_Fj:\"framer-v-f1b2aa\",xOD6nCGqo:\"framer-v-hqiids\",Z1r068mLL:\"framer-v-1nf3m0\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop 1200\":\"xOD6nCGqo\",Desktop:\"okSxMI_Fj\",Phone:\"HzoCn65zP\",Tablet:\"Z1r068mLL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"okSxMI_Fj\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"HzoCn65zP\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"OFdA2ifqh\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"H7TjTMVZ5\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"R6bXDP3dZ\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"YWEm5Fl8h\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"gTRBxVv15\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"dfLiYr7XZ\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"ihqRLH3o4\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"GeBKoiDyX\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"tH4B0feYg\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"rMfyADhzR\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"IG0Np_aGI\");const ref12=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"okSxMI_Fj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-f1b2aa\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rm1zq2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"N3v3eB3ON\"},Z1r068mLL:{variant:\"SrAb1P98y\"}},children:/*#__PURE__*/_jsx(NavigationBarHome,{height:\"100%\",id:\"PWGt6MOqh\",layoutId:\"PWGt6MOqh\",PD41XwbX7:\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\",style:{width:\"100%\"},variant:\"Zl8pHl3u2\",width:\"100%\",XtTsU_J1y:\"n69zIK2Zy\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jls600\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vqkth8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e6aqpy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--token-ce647992-e2ef-49fb-ae25-59a74757abe2, rgb(239, 116, 38))\"},children:\"3D Tiny House Design Software | Compare\"})})},Z1r068mLL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-ce647992-e2ef-49fb-ae25-59a74757abe2, rgb(239, 116, 38))\"},children:\"3D Tiny House Design Software | Compare\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-ce647992-e2ef-49fb-ae25-59a74757abe2, rgb(239, 116, 38))\"},children:\"3D Tiny House Design Software | Compare\"})}),className:\"framer-cu85po\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.77px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-cdb074d3-61cb-4011-aaa2-f2b946434d0d, rgb(39, 44, 47))\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD vs SketchUp |\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),\"Which Software is best for tiny house design?\"]})}),fonts:[\"GF;Outfit-700\",\"GF;Outfit-900\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-byo2k2\",\"data-styles-preset\":\"L8WWm0vZ8\",children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-cdb074d3-61cb-4011-aaa2-f2b946434d0d, rgb(39, 44, 47))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD vs SketchUp |\"}),\" \"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cdb074d3-61cb-4011-aaa2-f2b946434d0d, rgb(39, 44, 47))\"},children:\"Which Software is best for tiny house design?\"})]})}),className:\"framer-1c1s917\",\"data-framer-name\":\"Marlo\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-degwdi\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ivs2w4\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+102+48+0+0+72+0+0),sizes:\"12px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+102+80+0+0+123.19999999999999+3+0),sizes:\"28px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+102+80+0+0+128+3+0),sizes:\"28px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"},className:\"framer-10prk6g\",\"data-border\":true,\"data-framer-name\":\"Eujenne\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:\"Eujenne Claxton\"})}),fonts:[\"GF;Outfit-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",style:{\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:\"Eujenne Claxton\"})}),className:\"framer-gdh4vy\",\"data-framer-name\":\"Eujenne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rr1sgx\",\"data-framer-name\":\"Estimated Time\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o5k91u-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Timer\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"j7VOT3U7g\",layoutId:\"j7VOT3U7g\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:\"Approx 15 min read\"})}),fonts:[\"GF;Outfit-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",style:{\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:\"Approx 15 min read\"})}),className:\"framer-fiea80\",\"data-framer-name\":\"Marlo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19az7cz\",\"data-framer-name\":\"Estimated Time\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fvig2b-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CalendarToday\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"PURXdfwj_\",layoutId:\"PURXdfwj_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:\"April 04 2023\"})}),fonts:[\"GF;Outfit-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",style:{\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:\"April 04 2023\"})}),className:\"framer-rzn3py\",\"data-framer-name\":\"Marlo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6d8aqj\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ln0dsw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sgm9wj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+274+40+0+10+0+0+0),pixelHeight:964,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png\",srcSet:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+384+40+0+10+0+0+0),pixelHeight:964,pixelWidth:1600,sizes:\"800px\",src:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png\",srcSet:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+379.2+40+0+10+0+0+0),pixelHeight:964,pixelWidth:1600,sizes:\"600px\",src:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png\",srcSet:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+384+40+0+10+0+0+0),pixelHeight:964,pixelWidth:1600,sizes:\"1080px\",src:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png\",srcSet:\"https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KRNvCLzKL0rHMI2x8HacKwOPyLM.png 1600w\"},className:\"framer-1rmwebl\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:\"Enter 3D Tiny House Designer and Sketch Up, two design software options that offer builders an efficient and cost-effective way to create and modify tiny house designs.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Both tools provide designers with the ability to create detailed 3D models of their designs and make adjustments as needed.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[\"To continue our review of the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MGqhkC0wW\"},nodeId:\"MSfkLz2C_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1djpmbi\",\"data-styles-preset\":\"rns3n8C_t\",children:\"5 Best Tiny House Design Software Platforms\"})}),\", this comparison article will take a closer look at the specific capabilities of each software when it comes to designing tiny homes on wheels, including their availability of tiny house-specific components and models, advanced cabinetry tools, ease of use, communication and collaboration features, and exporting capabilities. By the end of this article, you'll have a better understanding of which software is better suited to your needs as a tiny home builder. \"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"So let\u2019s get into it!\"})]}),className:\"framer-1oa5xtc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9hqw2 hidden-1ibycv6\",\"data-border\":true,\"data-framer-name\":\"Table Of Contents\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",\"--framer-text-transform\":\"uppercase\"},children:\"Table of contents\"})}),className:\"framer-k9tun4\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uui1c3\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":OFdA2ifqh\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":OFdA2ifqh\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":OFdA2ifqh\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+78.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+78.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u66mz0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks[0],height:\"100%\",id:\"ufV0M8g82\",kAMaK4hX0:\"regular\",layoutId:\"ufV0M8g82\",qJnhfpQmH:\"What is 3D Tiny House Designer?\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":H7TjTMVZ5\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":H7TjTMVZ5\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":H7TjTMVZ5\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+107.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+107.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ubuu70-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks1[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks1[0],height:\"100%\",id:\"kHA9Dq7NP\",kAMaK4hX0:\"regular\",layoutId:\"kHA9Dq7NP\",qJnhfpQmH:\"What is Sketch Up?\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":R6bXDP3dZ\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":R6bXDP3dZ\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":R6bXDP3dZ\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+136.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+136.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bfrg31-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks2[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks2[0],height:\"100%\",id:\"evhWnK_CF\",kAMaK4hX0:\"regular\",layoutId:\"evhWnK_CF\",qJnhfpQmH:\"Tiny House Design Capabilities\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":YWEm5Fl8h\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":YWEm5Fl8h\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":YWEm5Fl8h\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+165.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+165.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zdakyx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks3[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks3[0],height:\"100%\",id:\"RoGnUOJvA\",kAMaK4hX0:\"regular\",layoutId:\"RoGnUOJvA\",qJnhfpQmH:\"Ease of Use + Learning Capabilities\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":gTRBxVv15\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":gTRBxVv15\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":gTRBxVv15\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+194.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+194.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12bqb41-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks4[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks4[0],height:\"100%\",id:\"HSwJa2sp2\",kAMaK4hX0:\"regular\",layoutId:\"HSwJa2sp2\",qJnhfpQmH:\"Communication with Clients + Revisions\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":dfLiYr7XZ\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":dfLiYr7XZ\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":dfLiYr7XZ\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+223.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+223.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-btww7y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks5[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks5[0],height:\"100%\",id:\"GvhpBbZiM\",kAMaK4hX0:\"regular\",layoutId:\"GvhpBbZiM\",qJnhfpQmH:\"Plan Exporting Capabilties\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ihqRLH3o4\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":ihqRLH3o4\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":ihqRLH3o4\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+252.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+252.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lue4oa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks6[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks6[0],height:\"100%\",id:\"piIRiZK2D\",kAMaK4hX0:\"regular\",layoutId:\"piIRiZK2D\",qJnhfpQmH:\"Pricing\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":GeBKoiDyX\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":GeBKoiDyX\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":GeBKoiDyX\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+281.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+281.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lkkv22-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks7[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks7[0],height:\"100%\",id:\"l2oPsEMMd\",kAMaK4hX0:\"regular\",layoutId:\"l2oPsEMMd\",qJnhfpQmH:\"Summary\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":tH4B0feYg\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":tH4B0feYg\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":tH4B0feYg\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+310.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+310.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ldl687-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks8[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks8[0],height:\"100%\",id:\"BxdZukj1U\",kAMaK4hX0:\"regular\",layoutId:\"BxdZukj1U\",qJnhfpQmH:\"Authors Thoughts On The Softwares\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IG0Np_aGI\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":IG0Np_aGI\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined},{href:{hash:\":IG0Np_aGI\",webPageId:\"hJ3jwY9Jl\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z1r068mLL:{y:(componentViewport?.y||0)+0+379.2+40+0+10+1334+40+339.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+0+384+40+0+10+1334+40+339.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-103t9h5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOD6nCGqo:{bGd0oDds1:resolvedLinks9[1]},Z1r068mLL:{bGd0oDds1:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(BTextLink,{bGd0oDds1:resolvedLinks9[0],height:\"100%\",id:\"LdpEaaNKv\",kAMaK4hX0:\"regular\",layoutId:\"LdpEaaNKv\",qJnhfpQmH:\"About The Author\",Sbv5uZLhv:\"rgb(82, 81, 87)\",Sz8xkbsUv:16,variant:\"DyUd4eRev\",width:\"100%\",YEXL0P2xm:\"0px\",ZeGAN8otS:\"caretdown\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-43qb8g\",\"data-framer-name\":\"What is 3DTHD\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2x5g4\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sa7jd1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:\"What is 3D Tiny House Designer?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3D Tiny House Designer, or 3DTHD for short, is an online software purpose-built for tiny homes on wheels. Its focus on tiny homes makes it an attractive option for tiny house builders and designers looking for a design software tailored towards tiny homes and the specific requirements attached.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It is designed to help users quickly create and modify tiny home designs, with pre-set tiny house-specific components, models, and advanced tools to add cabinetry, electrical items and materials.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"These features alone can save builders and designers a significant amount of time as they do not have to model each component of the tiny home from scratch manually. Plus, with just one click, the software can generate full construction plans, making the design process more efficient and cost-friendly.\"})]}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-edlyc3\",\"data-styles-preset\":\"pltMPk_su\",children:\"What is 3D Tiny House Designer?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3D Tiny House Designer, or 3DTHD for short, is an online software purpose-built for tiny homes on wheels. Its focus on tiny homes makes it an attractive option for tiny house builders and designers looking for a design software tailored towards tiny homes and the specific requirements attached.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It is designed to help users quickly create and modify tiny home designs, with pre-set tiny house-specific components, models, and advanced tools to add cabinetry, electrical items and materials.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"These features alone can save builders and designers a significant amount of time as they do not have to model each component of the tiny home from scratch manually. Plus, with just one click, the software can generate full construction plans, making the design process more efficient and cost-friendly.\"})]}),className:\"framer-cv4tpf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1648+40+0+10+0+529.2),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png\",srcSet:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png 1481w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2256.8+40+0+10+0+547.6),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png\",srcSet:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png 1481w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2252+40+0+10+0+547.6),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png\",srcSet:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png 1481w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2256.8+40+0+10+0+547.6),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png\",srcSet:\"https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kuBaUx20JEqp76Xxpa2jQBwit3o.png 1481w\"},className:\"framer-18h1ips\",\"data-framer-name\":\"Hero Banner\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mxadaa\",\"data-framer-name\":\"What is Sketchup\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgk77n\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3a7n4j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:\"What is SketchUp?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp is a popular 3D modelling software that has been used by professionals in various industries for over a decade.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It is a popular tool used by architects, interior designers, and construction professionals for a variety of projects, including tiny homes on wheels. Sketch Up's library of components and models is vast and diverse, offering users a wide range of options to choose from.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Sketch Up also offers a number of plug-ins from third parties that make the design process more efficient.\"})]}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-edlyc3\",\"data-styles-preset\":\"pltMPk_su\",children:\"What is SketchUp?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp is a popular 3D modelling software that has been used by professionals in various industries for over a decade.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It is a popular tool used by architects, interior designers, and construction professionals for a variety of projects, including tiny homes on wheels. Sketch Up's library of components and models is vast and diverse, offering users a wide range of options to choose from.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Sketch Up also offers a number of plug-ins from third parties that make the design process more efficient.\"})]}),className:\"framer-pbgu13\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2642.2+40+0+10+0+529.2),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png\",srcSet:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png 1481w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3269.4+40+0+10+0+547.6),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png\",srcSet:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png 1481w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3264.6+40+0+10+0+547.6),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png\",srcSet:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png 1481w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:481,intrinsicWidth:1481,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3269.4+40+0+10+0+547.6),pixelHeight:481,pixelWidth:1481,positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png\",srcSet:\"https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8oKfn3rfeIKN1zHAdTLMYVMOo.png 1481w\"},className:\"framer-13hj3c3\",\"data-framer-name\":\"Hero Banner\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-erre66\",\"data-framer-name\":\"Section 1 - 3DTHD\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jo2lpo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r55nb5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Tiny House Design Capabilities\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It's no secret that tiny homes on wheels are a niche market. So how do 3DTHD and SketchUp overcome the constraints and rules for tiny house design, and what are the design capabilities that each software offers?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:\"Components and models available in 3DTHD\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"When it comes to designing tiny homes on wheels, having access to a library of components and models is essential for an efficient design workflow.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD has been purpose-built to help tiny house builders, designers and new professionals speed up their design process to allow for quick turn-around times with easy-to-use design software. All components and models in 3DTHD have been specifically tailored for tiny homes and pre-modelled to eliminate the need to custom-create each individual model in detail in order to get a professional, accurate and well-rounded look.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"This means that users have access to a wide range of models and components that are specifically designed to fit the unique dimensions and requirements of tiny homes on wheels. Here are a few examples of the range of tiny house components and models available in the 3DTHD :\"})]}),fonts:[\"GF;Outfit-700\",\"GF;Outfit-900\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Tiny House Design Capabilities\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It's no secret that tiny homes on wheels are a niche market. So how do 3DTHD and SketchUp overcome the constraints and rules for tiny house design, and what are the design capabilities that each software offers?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:\"Components and models available in 3DTHD\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"When it comes to designing tiny homes on wheels, having access to a library of components and models is essential for an efficient design workflow.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD has been purpose-built to help tiny house builders, designers and new professionals speed up their design process to allow for quick turn-around times with easy-to-use design software. All components and models in 3DTHD have been specifically tailored for tiny homes and pre-modelled to eliminate the need to custom-create each individual model in detail in order to get a professional, accurate and well-rounded look.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"This means that users have access to a wide range of models and components that are specifically designed to fit the unique dimensions and requirements of tiny homes on wheels. Here are a few examples of the range of tiny house components and models available in the 3DTHD :\"})]}),className:\"framer-7ybweq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-euav0o\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1shckev\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",style:{\"--framer-text-color\":\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD Tiny House Design Capabilities\"})})}),className:\"framer-f7ii8r\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvidhv\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-21q519-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"U4BbN8rvH\",layoutId:\"U4BbN8rvH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"An easy-to-use drag & drop system to place objects with ease in the software.\"})}),className:\"framer-w2xi3j\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ch9g37\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13tfe2x-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"gzd38oz2H\",layoutId:\"gzd38oz2H\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Customized components & models update/adjust instantly.\"})}),className:\"framer-mzus8x\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lsb30c\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1022v1z-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"zBaZlLMEd\",layoutId:\"zBaZlLMEd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Additionally, customization in 3DTHD involves simple number or dimension inputs, as well as options to choose from without requiring any manual editing of the models or components. Adjustments to width, length, and other details can easily be made, with the option to select different alternatives.\"})}),className:\"framer-18bniqc\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h212yg\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ak44du-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"ITyiNNiF7\",layoutId:\"ITyiNNiF7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"An easy-to-use drag & drop system to place objects quickly and accurately.\"})}),className:\"framer-q5bhdt\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zhgeu3\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6i2jzm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"qOx74qUCw\",layoutId:\"qOx74qUCw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Customize any components in 3DTHD without having to use 3D modelling skills. Adjust the width, length, height of objects by entering dimensions and customize the look with a beginner friendly UI.\"})}),className:\"framer-1nueek0\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iehxup\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+3391.3999999999996+40+0+10+1793.2+10+0},xOD6nCGqo:{width:\"780px\"},Z1r068mLL:{width:\"580px\",y:(componentViewport?.y||0)+0+4277.2+40+-11368683772161603e-29+10+1692.2+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1060px\",y:(componentViewport?.y||0)+0+4282+40+-11368683772161603e-29+10+1692.2+10+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yt6wys-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Pre-set Tiny House Trailer Options\",height:\"100%\",id:\"qzj47c205\",layoutId:\"qzj47c205\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{children:/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Flat Deck Tiny House Trailer\"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"16.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Fender Style Tiny House Trailer\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Gooseneck Tiny House Trailer\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"+ Foundation for removable Tiny Homes & Cabins\"})})]})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+3391.3999999999996+40+0+10+1793.2+10+74},xOD6nCGqo:{width:\"780px\"},Z1r068mLL:{width:\"580px\",y:(componentViewport?.y||0)+0+4277.2+40+-11368683772161603e-29+10+1692.2+10+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1060px\",y:(componentViewport?.y||0)+0+4282+40+-11368683772161603e-29+10+1692.2+10+74,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7xlb8a-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Pre-set Tiny House Shell & Roof Options\",height:\"100%\",id:\"qaJT2QLzV\",layoutId:\"qaJT2QLzV\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Adjust Width, Height & Length\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Adjust Wall Thickness\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Change Roof Style from Mono, Gable or Flat\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Add Multiple Roof Sections\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"+ Add Bump Out Styles to the front and back ends of your tiny home.\"})})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+3391.3999999999996+40+0+10+1793.2+10+148},xOD6nCGqo:{width:\"780px\"},Z1r068mLL:{width:\"580px\",y:(componentViewport?.y||0)+0+4277.2+40+-11368683772161603e-29+10+1692.2+10+148}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1060px\",y:(componentViewport?.y||0)+0+4282+40+-11368683772161603e-29+10+1692.2+10+148,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1one7oe-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Pre-modelled Tiny House Cabinetry\",height:\"100%\",id:\"p4yX4EC74\",layoutId:\"p4yX4EC74\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Drag & drop cabinetry into your design that's preset to industry standard dimensions.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Fully adjust the settings of cabinets to create unique cabinets in a few clicks\"})})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+3391.3999999999996+40+0+10+1793.2+10+222},xOD6nCGqo:{width:\"780px\"},Z1r068mLL:{width:\"580px\",y:(componentViewport?.y||0)+0+4277.2+40+-11368683772161603e-29+10+1692.2+10+222}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1060px\",y:(componentViewport?.y||0)+0+4282+40+-11368683772161603e-29+10+1692.2+10+222,children:/*#__PURE__*/_jsx(Container,{className:\"framer-by3fxa-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Pre-set Electrical Items\",height:\"100%\",id:\"taZQyRp0g\",layoutId:\"taZQyRp0g\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Standard Switches & Outlets\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"16.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Interior Lighting\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Exterior Lighting\"})}),/*#__PURE__*/_jsxs(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/_jsx(\"p\",{children:\"+ Tiny House Specific items such as:\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Hot Water Heater\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Caravan Plug etc\"})})]})]})]})]})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kulyg1\",\"data-framer-name\":\"CTA 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+5590.599999999999+20+0},Z1r068mLL:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+6375.4+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:315,width:\"1065px\",y:(componentViewport?.y||0)+0+6380.2+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fxyllr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"RUMBfaqLi\"},Z1r068mLL:{variant:\"D60PZVtIF\"}},children:/*#__PURE__*/_jsx(CCTATryForFree,{height:\"100%\",id:\"YgRrKiAH3\",layoutId:\"YgRrKiAH3\",NWm268fcz:18,oUBnfGK0c:18,style:{width:\"100%\"},usrdoizPv:24,variant:\"zxf9JlKKV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wq9pqy\",\"data-framer-name\":\"Section 1 - SKP\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z6vd5g\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e922qf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:\"Components and models available in SketchUp\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"On the other hand, SketchUp's library of models and components is extensive, offering a broader range of models and components, but not tailored for tiny homes on wheels and also requires extensive 3D modelling skills.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Users can select from a wider range of models and components that may not be specifically tailored for tiny homes on wheels but can still be adapted to fit their requirements.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"While this feature can be great and might allow for more flexibility, it can also be counterproductive. As a designer, you want to be able to push each revision with a quick-turnaround time. With too much versatility, this can be overwhelming and time-intensive as it requires a lot of time spent researching what's possible for certain components - for example, custom cabinetry and drawing up accurate models to make sense for construction.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp does not offer its own pre-set models\"}),\", instead offering an online community: SketchUp Warehouse, which is used by avid SketchUp users & experts to share their own models that can be used as a base-line to edit from or to use as a pre-set prop. You can browse through different categories and even well known-brands like Schneider Electric upload their models for personal use.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"You can also access pre-set models through third-party plug-ins which generally include an extra subscription.\"})]}),className:\"framer-3ponfr\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qqpa74\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8jntjw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",style:{\"--framer-text-color\":\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD Tiny House Design Capabilities\"})})}),className:\"framer-ikxvtj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1st8ytd\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gu2025\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,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 10 19.73 C 12.652 19.73 15.196 18.705 17.071 16.88 C 18.946 15.055 20 12.58 20 10 C 20 7.42 18.946 4.945 17.071 3.12 C 15.196 1.295 12.652 0.27 10 0.27 C 7.348 0.27 4.804 1.295 2.929 3.12 C 1.054 4.945 0 7.42 0 10 C 0 12.58 1.054 15.055 2.929 16.88 C 4.804 18.705 7.348 19.73 10 19.73 Z M 14.414 8.214 L 9.414 13.079 C 9.047 13.436 8.453 13.436 8.09 13.079 L 5.59 10.646 C 5.223 10.289 5.223 9.711 5.59 9.358 C 5.957 9.004 6.551 9 6.914 9.358 L 8.75 11.144 L 13.086 6.921 C 13.453 6.564 14.047 6.564 14.41 6.921 C 14.773 7.279 14.777 7.856 14.41 8.21 Z\" fill=\"#075a97\"></path></svg>',svgContentId:12734285295,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Very flexible for complete custom 3D models varying in boxy type models to organic style models.\"})}),className:\"framer-8abgin\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15iqc31\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2nvyue\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,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 10 19.73 C 12.652 19.73 15.196 18.705 17.071 16.88 C 18.946 15.055 20 12.58 20 10 C 20 7.42 18.946 4.945 17.071 3.12 C 15.196 1.295 12.652 0.27 10 0.27 C 7.348 0.27 4.804 1.295 2.929 3.12 C 1.054 4.945 0 7.42 0 10 C 0 12.58 1.054 15.055 2.929 16.88 C 4.804 18.705 7.348 19.73 10 19.73 Z M 14.414 8.214 L 9.414 13.079 C 9.047 13.436 8.453 13.436 8.09 13.079 L 5.59 10.646 C 5.223 10.289 5.223 9.711 5.59 9.358 C 5.957 9.004 6.551 9 6.914 9.358 L 8.75 11.144 L 13.086 6.921 C 13.453 6.564 14.047 6.564 14.41 6.921 C 14.773 7.279 14.777 7.856 14.41 8.21 Z\" fill=\"#075a97\"></path></svg>',svgContentId:12734285295,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"SketchUp's Component tool allows you to change a duplicate object to avoid manually adjusting each individual object.\"})}),className:\"framer-1ybmudu\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzbs5l\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qan17a\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,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 10 19.73 C 12.652 19.73 15.196 18.705 17.071 16.88 C 18.946 15.055 20 12.58 20 10 C 20 7.42 18.946 4.945 17.071 3.12 C 15.196 1.295 12.652 0.27 10 0.27 C 7.348 0.27 4.804 1.295 2.929 3.12 C 1.054 4.945 0 7.42 0 10 C 0 12.58 1.054 15.055 2.929 16.88 C 4.804 18.705 7.348 19.73 10 19.73 Z M 14.414 8.214 L 9.414 13.079 C 9.047 13.436 8.453 13.436 8.09 13.079 L 5.59 10.646 C 5.223 10.289 5.223 9.711 5.59 9.358 C 5.957 9.004 6.551 9 6.914 9.358 L 8.75 11.144 L 13.086 6.921 C 13.453 6.564 14.047 6.564 14.41 6.921 C 14.773 7.279 14.777 7.856 14.41 8.21 Z\" fill=\"#075a97\"></path></svg>',svgContentId:12734285295,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Additionally, SketchUp's flexibility in design can be advantageous for users who are experienced designers and have a strong understanding of how to customize models and components to fit their specific requirements, as it allows them to create more complex designs with greater precision.\"})}),className:\"framer-1lok8w3\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l3e7t2\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+5945.599999999999+40+0+10+1622+10+0},xOD6nCGqo:{width:\"780px\"},Z1r068mLL:{width:\"580px\",y:(componentViewport?.y||0)+0+6770.4+40+0+10+1517+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1060px\",y:(componentViewport?.y||0)+0+6775.2+40+0+10+1517+10+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u2r5mp-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp In-Designer Pre-sets\",height:\"100%\",id:\"TXVDasSeq\",layoutId:\"TXVDasSeq\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{children:/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"None\"})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+5945.599999999999+40+0+10+1622+10+74},xOD6nCGqo:{width:\"780px\"},Z1r068mLL:{width:\"580px\",y:(componentViewport?.y||0)+0+6770.4+40+0+10+1517+10+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1060px\",y:(componentViewport?.y||0)+0+6775.2+40+0+10+1517+10+74,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1owqxle-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp Warehouse Components\",height:\"100%\",id:\"Z9FIMrUp4\",layoutId:\"Z9FIMrUp4\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Tiny House Trailer\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Cabinetry\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Electrical Items\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Furniture Options\"})})]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4a9ejz\",\"data-framer-name\":\"Section 1 - Summary\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmzct8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q74qaj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Tiny House Design Capabilites Summary\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:\"Tiny House Design Capabilites Summary\"})}),className:\"framer-1tittkl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15j6ovo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6r6xa\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+7825.599999999999+40+0+0+63.199999999999996+0+0+10+0},xOD6nCGqo:{width:\"365px\"},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+8545.4+40+0+0+53.199999999999996+10+0+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+8550.2+40+0+0+53.199999999999996+10+10+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pfgk87-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3DTHD's Tiny House Design Capabilities Pro's\",height:\"100%\",id:\"Wr4rWtlVF\",layoutId:\"Wr4rWtlVF\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"No modelling required\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Simply drag & drop into the designer\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Fully customize components and models by adjusting the settings.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"All components and models are tiny house specific.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Easy to use, and fast to implement changes.\"})})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+7825.599999999999+40+0+0+63.199999999999996+0+0+10+74},xOD6nCGqo:{width:\"365px\"},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+8545.4+40+0+0+53.199999999999996+10+0+10+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+8550.2+40+0+0+53.199999999999996+10+10+74,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v6b8p2-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3DTHD's Tiny House Design Capabilities Con's'\",height:\"100%\",id:\"KCEan7Xce\",layoutId:\"KCEan7Xce\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Limited range of non-tiny house specific components & models\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Can\u2019t import custom models\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Limited range of materials\"})})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+7825.599999999999+40+0+0+63.199999999999996+0+0+10+148},xOD6nCGqo:{width:\"365px\"},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+8545.4+40+0+0+53.199999999999996+10+0+10+148}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+8550.2+40+0+0+53.199999999999996+10+10+148,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zdxmwv-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3DTHD's Tiny House Design Capabilities Summary\",height:\"100%\",id:\"fug9pqUdR\",layoutId:\"fug9pqUdR\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Overall, 3DTHD offers an ease-of-use, user-friendly design capabilities for tiny house design. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"The pre-set tiny house-specific components and models offer a speedy turnaround time, with standardised settings to quickly make adjustments. \"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"This is \",/*#__PURE__*/_jsx(\"strong\",{children:'great if you\\'re looking for a tiny house design software that does the \"heavy-lifting\" for you to eliminate time spent on the design stage '}),\"so you can move onto the build stage faster, while still having the flexibility to create unique, custom tiny house designs.\"]})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wu4p7v\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+7825.599999999999+40+0+0+63.199999999999996+0+242+10+0},xOD6nCGqo:{width:\"365px\"},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+8545.4+40+0+0+53.199999999999996+10+242+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+8550.2+40+0+0+53.199999999999996+10+10+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5gbhwu-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp's Tiny House Design Capabilities Pro's\",height:\"100%\",id:\"pzC1GyGh2\",layoutId:\"pzC1GyGh2\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Flexible for complete 3D modelling\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Complete 3D modelling customizability offers a high detail for components & models.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"SketchUp\u2019s \u201CComponent\u201C feature provides ease of use and time saved when adjusting multiple objects at once.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"A broader range of components & models.\"})})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+7825.599999999999+40+0+0+63.199999999999996+0+242+10+74},xOD6nCGqo:{width:\"365px\"},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+8545.4+40+0+0+53.199999999999996+10+242+10+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+8550.2+40+0+0+53.199999999999996+10+10+74,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ik1g2o-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp's Tiny House Design Capabilities Con's\",height:\"100%\",id:\"QUd1gnQvM\",layoutId:\"QUd1gnQvM\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Extensive custom capabilities requires advanced 3D modelling knowledge\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"16.544px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(\"p\",{children:[\"No Pre-sets so \",/*#__PURE__*/_jsx(\"strong\",{children:\"everything\"}),\" has to be custom drawn which is time-intensive and tricky to keep accurate.\"]})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Models from SketchUp Warehouse aren\u2019t always accurate and can be oversized.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Difficult to make quick adjustments.\"})})]})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+7825.599999999999+40+0+0+63.199999999999996+0+242+10+148},xOD6nCGqo:{width:\"365px\"},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+8545.4+40+0+0+53.199999999999996+10+242+10+148}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+8550.2+40+0+0+53.199999999999996+10+10+148,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gym3h2-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp's Tiny House Design Capabilities Summary\",height:\"100%\",id:\"F0ClTOyqV\",layoutId:\"F0ClTOyqV\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"SketchUp's flexibility in offering a broader range of models and components can be advantageous for users who want more flexibility in their designs but \",/*#__PURE__*/_jsx(\"strong\",{children:\"need to have the experience and skills\"}),\" to adapt them to fit their specific requirements. \"]}),/*#__PURE__*/_jsx(\"p\",{children:\"This is great if you've got plenty of 3D modelling experience using an advanced software that gives you the opportunity to custom model everything down to the last screw hole.\"})]})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ya8j6w\",\"data-framer-name\":\"CTA 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+8442.8+20+0},Z1r068mLL:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+9172.6+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:315,width:\"1065px\",y:(componentViewport?.y||0)+0+8935.400000000001+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-111eoi2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"RUMBfaqLi\"},Z1r068mLL:{variant:\"D60PZVtIF\"}},children:/*#__PURE__*/_jsx(CCTATryForFree,{height:\"100%\",id:\"FKY1N2CoF\",layoutId:\"FKY1N2CoF\",NWm268fcz:18,oUBnfGK0c:18,style:{width:\"100%\"},usrdoizPv:24,variant:\"zxf9JlKKV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qgmaa2\",\"data-framer-name\":\"Section 2 - 3DTHD\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8is3zc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11t1cle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Ease of Use + Learning Curve\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[\"When it comes to any software, let it be Photoshop or Home Designer, or a social media platform like Pinterest or Instagram, the question always rises: \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:'\"How do I use this design software, and how long will it take?\"'})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"User Interface of 3DTHD\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD is a new software that only launched on August 2022. 3DTHD was developed quickly with a user-friendly, intuitive user interface, specifically designed for users in the tiny house industry who don't have CAD experience or experienced CAD users that want to have a quick workflow.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"The tools available in 3DTHD are the essential tools needed to design any tiny home, making 3DTHD a design software with a shorter learning curve than SketchUp. This is an excellent option for those who want to start designing their tiny homes on wheels quickly and spend a couple of hours as opposed to a couple of weeks learning a new software.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD offers a straightforward layout designed to be easy to navigate, with a sidebar on the left side with your main tiny house tools, like the Trailer tool, Shell tool, Roof Tool and more. Everything has been pre-modelled to industry standards in the software to help avoid 3D modelling or finding specific models to re-use which is usually time-costly and plain annoying.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"As the software has been built solely for the purpose of designing tiny homes with ease, it's super easy to navigate and you can even design your first basic tiny house on the first day without any training.\"})]}),fonts:[\"GF;Outfit-700\",\"GF;Outfit-900\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Ease of Use + Learning Curve\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[\"When it comes to any software, let it be Photoshop or Home Designer, or a social media platform like Pinterest or Instagram, the question always rises: \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:'\"How do I use this design software, and how long will it take?\"'})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"User Interface of 3DTHD\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD is a new software that only launched on August 2022. 3DTHD was developed quickly with a user-friendly, intuitive user interface, specifically designed for users in the tiny house industry who don't have CAD experience or experienced CAD users that want to have a quick workflow.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"The tools available in 3DTHD are the essential tools needed to design any tiny home, making 3DTHD a design software with a shorter learning curve than SketchUp. This is an excellent option for those who want to start designing their tiny homes on wheels quickly and spend a couple of hours as opposed to a couple of weeks learning a new software.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD offers a straightforward layout designed to be easy to navigate, with a sidebar on the left side with your main tiny house tools, like the Trailer tool, Shell tool, Roof Tool and more. Everything has been pre-modelled to industry standards in the software to help avoid 3D modelling or finding specific models to re-use which is usually time-costly and plain annoying.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"As the software has been built solely for the purpose of designing tiny homes with ease, it's super easy to navigate and you can even design your first basic tiny house on the first day without any training.\"})]}),className:\"framer-8pt42o\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:965,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8797.8+40+0+10+0+0+999.2),pixelHeight:965,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png\",srcSet:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:965,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9330.400000000001+40+0+10+0+0+1003.2),pixelHeight:965,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png\",srcSet:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:965,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9567.6+40+0+10+0+0+1003.2),pixelHeight:965,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png\",srcSet:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:965,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9330.400000000001+40+0+10+0+0+1003.2),pixelHeight:965,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png\",srcSet:\"https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7soLgYiuxAtc0kgiXK1F178ok.png 1600w\"},className:\"framer-btaijj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD Learning Resources\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"There are great resources available to help users get started in the software faster. Before getting into the software blind, the team at Tiny Easy offer a 1-1 LIVE training session that walks users through the designer interface and teaches them how to use the tools efficiently.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"If you can't make this training session and want to have a play around by yourself, they also offer a detailed, step-by-step documentation on how to use each feature of the software.\"})]}),className:\"framer-1f2a91q\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8797.8+40+0+10+0+0+1723.2),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png\",srcSet:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9330.400000000001+40+0+10+0+0+1821.6),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png\",srcSet:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9567.6+40+0+10+0+0+1907.2),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png\",srcSet:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9330.400000000001+40+0+10+0+0+1834.1),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png\",srcSet:\"https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TerRuIKJ3Z4ErmA1bSkRZlrTxM.png 1600w\"},className:\"framer-w1d1wr\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ibzr0\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15at51c\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbfqlx-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-84a5bc01-d9ba-49d6-bf51-d7d1b2082ea0, rgb(64, 222, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Info\",id:\"GQy9mUTcz\",layoutId:\"GQy9mUTcz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Usually it takes new users of 3DTHD around 4 hours to go from opening the software for the first time to learning all the tools and completing their first tiny house design exported to plans and ready for construction. Subsequent new designs only take around 1-2 hours to complete for more experienced users.\"})}),className:\"framer-6iggp3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i9rehp\",\"data-framer-name\":\"CTA 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+11047+20+0},xOD6nCGqo:{y:(componentViewport?.y||0)+0+11772.400000000001+40+0},Z1r068mLL:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+12180.8+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:315,width:\"1065px\",y:(componentViewport?.y||0)+0+11797.400000000001+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bfk5w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"RUMBfaqLi\"},Z1r068mLL:{variant:\"D60PZVtIF\"}},children:/*#__PURE__*/_jsx(CCTATryForFree,{height:\"100%\",id:\"e5oxJvrHI\",layoutId:\"e5oxJvrHI\",NWm268fcz:18,oUBnfGK0c:18,style:{width:\"100%\"},usrdoizPv:24,variant:\"zxf9JlKKV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xkzx5e\",\"data-framer-name\":\"Section 2 - SketchUp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gmfjt6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fdvzlz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"User Interface of SketchUp\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp has been around for 23 years, launching in the year 2000. With that in mond, the software has developed into a comprehensive tool, with a range of advanced features and capabilities to allow for flexible custom designing.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"The learning curve for Sketch Up can vary depending on the user's prior experience with 3D modelling software. However, compared to other professional-grade 3D modelling software, Sketch Up has a relatively low learning curve, which makes it accessible to beginners.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Additionally, Sketch Up also has a range of advanced features and capabilities, such as its ability to create complex shapes and its integration with other software, which can take even more time to master. These tools in particular can be imperative for an efficient work-flow, but can take quite a while to learn. However, with practice and continued use, most users should be able to become proficient in Sketch Up after some time.\"})]}),className:\"framer-1i9gw8j\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11402+40+0+10+0+0+634),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png\",srcSet:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12167.400000000001+40+0+10+0+0+634),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png\",srcSet:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12575.8+40+0+10+0+0+634),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png\",srcSet:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12192.400000000001+40+0+10+0+0+634),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png\",srcSet:\"https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jhbb3r5KpVMAgkZwZOL1qwbHmY.png 1600w\"},className:\"framer-mtcexa\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp Learning Resources\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp offers a variety of tutorials and resources on its website to help users get started. There are also plenty of paid courses online offered by users who have come to be experts with the software. There are also plenty of free courses/tutorials available in the form of blogs, and YouTube videos.\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Another helpful option SketchUp offers are plugins! Plugins can be a total timesaver if you get the right ones, and can vastly improve workflow and cut down on those annoying tasks that can take up to 10x longer. However, these plugins usually come with an additional cost of either a one-off payment or a high subscription rate. Usually, the plugins that are more comprehensive such as some cabinet tools - can add an additional $90/month subscription to your current plan, to be able to create cabinetry in SketchUp.\"})]}),className:\"framer-b0ei6w\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11402+40+0+10+0+0+1365),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png\",srcSet:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12167.400000000001+40+0+10+0+0+1638),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png\",srcSet:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12575.8+40+0+10+0+0+1538),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png\",srcSet:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12192.400000000001+40+0+10+0+0+1838),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png\",srcSet:\"https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HRU2FxElX9W1x3zi1vzXGuJQXiU.png 1600w\"},className:\"framer-197jjfi\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b5xyfr\",\"data-border\":true,\"data-framer-name\":\"Summary Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10wl0ep\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-u7xr3c\",\"data-styles-preset\":\"BGwU3SL_M\",style:{\"--framer-text-color\":\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Summary\"})})}),className:\"framer-196sl3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",style:{\"--framer-text-color\":\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"To Conclude this section for Ease of Use + Learning Curve for 3DTHD & SketchUp: \"})})}),className:\"framer-yfew03\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qg9x31\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwg2gq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4084a7cd-7774-461e-9392-e9ed1c554fc1, rgb(176, 176, 176))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"BiW6bFqNy\",layoutId:\"BiW6bFqNy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"3DTHD is a new software that is designed specifically for designing tiny homes on wheels, while SketchUp is a well-established software that offers a broader range of general 3D modelling capabilities.\"})}),className:\"framer-1szgoe1\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31k4v0\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9ard8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4084a7cd-7774-461e-9392-e9ed1c554fc1, rgb(176, 176, 176))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"Y7mf_83OB\",layoutId:\"Y7mf_83OB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"3DTHD has a user-friendly interface and a shorter learning curve than SketchUp, making it an excellent option for beginners who want to start designing quickly, or seasoned designers who want to speed up their workflow significantly.\"})}),className:\"framer-s353p\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4o27y\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wnkuv0-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4084a7cd-7774-461e-9392-e9ed1c554fc1, rgb(176, 176, 176))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"jyfQYS9AG\",layoutId:\"jyfQYS9AG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"SketchUp's user interface offers more flexibility for custom 3D modelling, but this comes at the cost of a steeper learning curve.\"})}),className:\"framer-1x8g1xv\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y5yhq3\",\"data-framer-name\":\"Frame 3616\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gx92ji-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4084a7cd-7774-461e-9392-e9ed1c554fc1, rgb(176, 176, 176))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"tvx19cKBG\",layoutId:\"tvx19cKBG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"3DTHD offers 1-1 LIVE training sessions and detailed documentation to help users get started, while SketchUp offers a range of tutorials and resources on its website as well as plugins to improve workflow.\"})}),className:\"framer-spmhcf\",\"data-framer-name\":\"Save time and money by using our pre-set tiny house designs.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15x889r\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nc9wo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o81gyj-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-84a5bc01-d9ba-49d6-bf51-d7d1b2082ea0, rgb(64, 222, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Info\",id:\"y2a2Lvxc0\",layoutId:\"y2a2Lvxc0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Usually it takes new users of SketchUp around 2-3 weeks to go from opening the software for the first time to learning all the tools and completing their first tiny house design exported to plans and ready for construction. Subsequent new designs only take around 1-2 weeks to complete for more experienced users.\"})}),className:\"framer-1a8272e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xxo99x\",\"data-framer-name\":\"Section 2 - 3DTHD\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i7s3rb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t8kvwj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Communication with Clients + Revisions\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Effective communication is crucial in a streamlined workflow when working with clients on custom designs for their dream tiny homes.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Designing custom tiny homes is an iterative process, and revisions are to be expected. These can range from significant changes such as redesigning the whole layout of the house to more minor ones such as experimenting with different colours or roof shapes.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"However, revisions can be time-consuming to implement accurately within a short turnaround time, and ideas can easily get lost in translation between multiple revisions.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Here is a side-by-side comparison of how SketchUp and 3DTHD compare when it comes to communication with clients and applying revisions:\"})]}),fonts:[\"GF;Outfit-700\",\"GF;Outfit-900\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Communication with Clients + Revisions\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Effective communication is crucial in a streamlined workflow when working with clients on custom designs for their dream tiny homes.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Designing custom tiny homes is an iterative process, and revisions are to be expected. These can range from significant changes such as redesigning the whole layout of the house to more minor ones such as experimenting with different colours or roof shapes.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"However, revisions can be time-consuming to implement accurately within a short turnaround time, and ideas can easily get lost in translation between multiple revisions.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Here is a side-by-side comparison of how SketchUp and 3DTHD compare when it comes to communication with clients and applying revisions:\"})]}),className:\"framer-zz83ls\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ky9m6z\",\"data-framer-name\":\"Section 1 - Summary\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w7wsh8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:\"Communication with Clients + Revisions Summary\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:\"Communication with Clients + Revisions Summary\"})}),className:\"framer-6mk49s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ba6kc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r05u8k\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18tt71f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-u7xr3c\",\"data-styles-preset\":\"BGwU3SL_M\",style:{\"--framer-text-color\":\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"3D Tiny House Designer\"})})}),className:\"framer-1im4yiu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+0+10+63.599999999999994},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+63.599999999999994},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+0+10+63.599999999999994}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+63.599999999999994,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zaybb-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Pre-modelled Components:\",height:\"100%\",id:\"ODoVmAroc\",layoutId:\"ODoVmAroc\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"3DTHD offers pre-set tiny house-specific models that allow you to quickly place an item into the design, that can be easily modified within a few clicks. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"This feature allows for a more streamlined and efficient design process. This is a super useful tool as it allows you to quickly adjust or replace a model in seconds when you\u2019re sharing the concept with your client.\"})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+0+10+137.6},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+137.6},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+0+10+137.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+137.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oxtxra-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Layout:\",height:\"100%\",id:\"P9pGdlhpw\",layoutId:\"P9pGdlhpw\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"3DTHD has a built-in 2D switch that allows you to view and edit your design without having to go into a separate software. This can be a great tool to go into extra detail on the layout and placement of objects. This is great if your client wants to see the bird\u2019s eye view of their design.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+0+10+211.6},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+211.6},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+0+10+211.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+211.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vx1tkw-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Automatic Plan Export\",height:\"100%\",id:\"FMWxhiHgH\",layoutId:\"FMWxhiHgH\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"The Generate Plans tool in 3DTHD allows for an automatic plan export, making it easy to share necessary plans with just one click. With the ability to choose between A4 or A3, and select which pages to export, clients can view the specific information they need without any unnecessary extra pages. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"This feature, in particular, is a huge timesaver and streamlines the process of adjusting and re-sharing plans within the same day, allowing you to complete revisions quicker and move onto the next stage of your design!\"})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+0+10+285.6},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+285.6},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+0+10+285.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+285.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1htu4xo-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3D Models:\",height:\"100%\",id:\"XxIEclkET\",layoutId:\"XxIEclkET\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"3DTHD offers an in-built library of pre-set tiny house-specific models of all the components necessary to design a high-detailed model. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"This includes:\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Cabinetry\"})}),/*#__PURE__*/_jsxs(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/_jsx(\"p\",{children:\"Furniture for:\"}),/*#__PURE__*/_jsxs(\"ul\",{children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Dining\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Living\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Bathroom\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Bedroom\"})})]})]}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"+ Includes extra storage options.\"})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:\"Includes electrical items commonly used in tiny homes.\"})})]}),/*#__PURE__*/_jsx(\"p\",{children:\"This is a significant time-saver for quick design iterations, as all models are in the correct scale and dimensions. You can easily adjust a few settings to achieve the desired style.\"})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rr5q40\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eq1bty\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-u7xr3c\",\"data-styles-preset\":\"BGwU3SL_M\",style:{\"--framer-text-color\":\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp\"})})}),className:\"framer-qn5pww\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+379.6+10+63.599999999999994},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+63.599999999999994},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+379.6+10+63.599999999999994}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+63.599999999999994,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11gae3k-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Pre-modelled Components:\",height:\"100%\",id:\"nyS2CUxWV\",layoutId:\"nyS2CUxWV\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"SketchUp's Dynamic Components allow you to create intelligent, interactive objects that can be modified down to the last detail. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"With that being said, dynamic components are a comprehensive feature and still require a lot of manual 3D model work to apply accurate adjustments to the models.\"})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+379.6+10+137.6},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+137.6},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+379.6+10+137.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+137.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pn0tp8-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Layout:\",height:\"100%\",id:\"YUFqZbWMT\",layoutId:\"YUFqZbWMT\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"SketchUp offers different view perspectives to view your tiny home such as 2D views, however, this function doesn't allow you to stay in the view so one wrong move of your mouse and you've lost your view.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+379.6+10+211.6},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+211.6},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+379.6+10+211.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+211.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1thp8v2-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"Plan Export:\",height:\"100%\",id:\"QdtjSYx7F\",layoutId:\"QdtjSYx7F\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"SketchUp offers an additional app: SketchUp LayOut, a 2D documentation and presentation tool integrated with SketchUp. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"This is good for presentation, however in order to apply changes requires going into SketchUp, then back into LayOut and manually updating the scene to update the plans. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"LayOut also requires additional setup and time taken to learn the additional software. Even minor revisions can take hours to adapt in SketchUp Layout to prepare plans for export.\"})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+11402+40+2562.4+0+0+10+699.2+40+59.199999999999996+0+379.6+10+285.6},xOD6nCGqo:{width:\"365px\",y:(componentViewport?.y||0)+0+12167.400000000001+40+3108.4+40+0+10+703.2+40+63.19999999999997+10+10+285.6},Z1r068mLL:{width:\"560px\",y:(componentViewport?.y||0)+0+12575.8+40+2908.4+40+0+10+703.2+40+63.199999999999996+10+379.6+10+285.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"505px\",y:(componentViewport?.y||0)+0+12192.400000000001+40+3508.4+40+0+10+703.2+40+63.19999999999997+10+10+285.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b3vghs-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3D Warehouse:\",height:\"100%\",id:\"l0XlLCsUO\",layoutId:\"l0XlLCsUO\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"SketchUp's 3D Warehouse is a vast online library of 3D models and components that are available for designers to use in their projects. It's extensive collection of pre-built models, including furniture, appliances, and other building components, that can be easily added to your design with just a few clicks. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"This feature allows you to find and add the necessary components to your design, and then make any necessary adjustments to customize them to your specific needs. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"However, these models aren't always accurate and can be designed in different measurement systems which can be difficult to convert. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"As these models are accessed online in a secondary platform, you need to download the files and make sure they comply with your version of SketchUp.\"})]})})})})})]})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13i308l\",\"data-framer-name\":\"CTA 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+15652+20+0},xOD6nCGqo:{y:(componentViewport?.y||0)+0+16691.800000000003+40+0},Z1r068mLL:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+17279.8+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:315,width:\"1065px\",y:(componentViewport?.y||0)+0+17116.800000000003+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ixj51o-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"RUMBfaqLi\"},Z1r068mLL:{variant:\"D60PZVtIF\"}},children:/*#__PURE__*/_jsx(CCTATryForFree,{height:\"100%\",id:\"kk6Q3h3IS\",layoutId:\"kk6Q3h3IS\",NWm268fcz:18,oUBnfGK0c:18,style:{width:\"100%\"},usrdoizPv:24,variant:\"zxf9JlKKV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11nbs0j\",\"data-framer-name\":\"Section 3 - 3DTHD\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0trsz\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nth1w4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:\"3DTHD vs SketchUp | Exporting Capabilities\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Exporting plans for a tiny house design can be a challenging task for designers and builders alike, as it requires providing sufficient information to communicate effectively with manufacturers while keeping the turnaround time quick and cost-effective.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Both SketchUp and 3DTHD offer exporting tools, but there are differences in how they handle this process\"})]}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:\"3DTHD vs SketchUp | Exporting Capabilities\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Exporting plans for a tiny house design can be a challenging task for designers and builders alike, as it requires providing sufficient information to communicate effectively with manufacturers while keeping the turnaround time quick and cost-effective.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Both SketchUp and 3DTHD offer exporting tools, but there are differences in how they handle this process\"})]}),className:\"framer-3iv4en\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD Exporting Capabilities\"})})}),className:\"framer-euoxqi\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Instant Generate Plans Tool\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"3DTHD provides an instant generate plans tool which eliminates the need to manually draft plans. Instead, all it takes is a click of a button, a few seconds of choosing the pages you wish to export and how much detail you wish to show, and BAM! They\u2019re ready to go!\"})]}),className:\"framer-lde1pk\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1uidp\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16007+40+0+10+0+819.2+0+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png\",srcSet:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17086.800000000003+40+0+10+0+823.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png\",srcSet:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17674.8+40+-11368683772161603e-29+10+0+823.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png\",srcSet:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17511.800000000003+40+0+10+0+823.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png\",srcSet:\"https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KnpaTYF2yg9cvIR82jnSiuIU.png 1600w\"},className:\"framer-1j0o96n\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16007+40+0+10+0+819.2+0+221.13513513513516),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png\",srcSet:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17086.800000000003+40+0+10+0+823.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png\",srcSet:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17674.8+40+-11368683772161603e-29+10+0+823.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png\",srcSet:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17511.800000000003+40+0+10+0+823.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png\",srcSet:\"https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7zPVHTeHWQrJCf6B6d1bIiDf0.png 1600w\"},className:\"framer-rs9p0f\",\"data-framer-name\":\"Hero Banner\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pre-set Construction Pages\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"All the construction plan pages in your plan-set are automatically generated in the system, these include: Floorplans, Mezzanine Plans, Perspectives, Sections, Elevations, PLUS, advanced plans like, Shell Plan, Joinery Schedule, Electrical Plan and Advanced Cabinetry Plans.\"})]}),className:\"framer-qd5ecp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtq9t4\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16007+40+0+10+0+1567.4702702702702+0+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png\",srcSet:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17086.800000000003+40+0+10+0+1399.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png\",srcSet:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17674.8+40+-11368683772161603e-29+10+0+1319.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png\",srcSet:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17511.800000000003+40+0+10+0+1459.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png\",srcSet:\"https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9V2JAex7bTBKAlURrfZ2zrbIP0.png 1600w\"},className:\"framer-1cnkin1\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16007+40+0+10+0+1567.4702702702702+0+213.83783783783784),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png\",srcSet:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17086.800000000003+40+0+10+0+1399.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png\",srcSet:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17674.8+40+-11368683772161603e-29+10+0+1319.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png\",srcSet:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17511.800000000003+40+0+10+0+1459.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png\",srcSet:\"https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3iKVCvoIomxAGQO6VnUPBoLXTI.png 1600w\"},className:\"framer-lzl9lv\",\"data-framer-name\":\"Hero Banner\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Flexible Plan Settings\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"With 3DTHD's Generate Plans tool, you have the flexibility to select which plans to export and customize the level of detail included in each plan. This means you can choose to only export the necessary plans that you need to communicate with manufacturers and builders, and you can also control the level of information included in each plan to avoid clutter and confusion for your clients.\"})]}),className:\"framer-1f30o91\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oscv2d\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16007+40+0+10+0+2301.1459459459456+0+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png\",srcSet:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17086.800000000003+40+0+10+0+1975.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png\",srcSet:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17674.8+40+-11368683772161603e-29+10+0+1815.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png\",srcSet:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17511.800000000003+40+0+10+0+2095.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png\",srcSet:\"https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U891BOp6HnrGIcMMZJXsZS4PW7k.png 1600w\"},className:\"framer-18h7v3w\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16007+40+0+10+0+2301.1459459459456+0+214.81081081081084),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png\",srcSet:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17086.800000000003+40+0+10+0+1975.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png\",srcSet:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17674.8+40+-11368683772161603e-29+10+0+1815.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png\",srcSet:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17511.800000000003+40+0+10+0+2095.2+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png\",srcSet:\"https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8F5qbqyKPtcME18dBJnSYHLzt0.png 1600w\"},className:\"framer-1e60j0w\",\"data-framer-name\":\"Hero Banner\"})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q5i2gm\",\"data-framer-name\":\"Section 3 - 3DTHD\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ekyiws\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9gjj2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp Exporting Capabilities\"})})}),className:\"framer-1zsj34\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp Layout Tool\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp uses a secondary app; LayOut which is a 2D documentation and presentation tool that includes SketchUp models, annotations, and other graphics to draft plans.\"})]}),className:\"framer-96a9ct\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dw021e\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18827.767567567567+0+0+10+0+0+460+0+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png\",srcSet:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19422.000000000004+0+0+10+0+0+460+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png\",srcSet:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19770+0+0+10+0+0+460+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png\",srcSet:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+20027.000000000004+0+0+10+0+0+460+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png\",srcSet:\"https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/clOQKj96ZXcBtQxYV0yNAkXNZYk.png 1600w\"},className:\"framer-17zcy87\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18827.767567567567+0+0+10+0+0+460+0+214),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png\",srcSet:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19422.000000000004+0+0+10+0+0+460+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png\",srcSet:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19770+0+0+10+0+0+460+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png\",srcSet:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+20027.000000000004+0+0+10+0+0+460+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png\",srcSet:\"https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qf8hQ1mnazuPcpgaLvlogq8RsaI.png 1600w\"},className:\"framer-4i2a1\",\"data-framer-name\":\"Hero Banner\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Manually Create Each Individual Page\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"You can create your own plans in LayOut but you have to manually create every single plan page which is a time consuming process that requires extensive drafting and design knowledge. For example, to just draw a simple floor plan you have to:\"}),/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Set up your Camera in Sketch Up to save the top-down view.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Create a section plan to cut the tiny house at the right point.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Import your view in LayOut.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Define the correct plan scale.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Place the view on your Sheet (Title Block has to be designed separately)\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Manually pick every dimension to show.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add labels to annotate the plan.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Without proper drafting skills, the plans can become cluttered and hard to read during the construction process and take many hours to get right.\"})]}),className:\"framer-io95r9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k8sqm0\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18827.767567567567+0+0+10+0+0+2394+0+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png\",srcSet:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19422.000000000004+0+0+10+0+0+2256+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png\",srcSet:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19770+0+0+10+0+0+2156+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png\",srcSet:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+20027.000000000004+0+0+10+0+0+2341+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png\",srcSet:\"https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1XaAbdFkmkGdqQCbrYJjV8W1Gk.png 1600w\"},className:\"framer-obfgei\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18827.767567567567+0+0+10+0+0+2394+0+214),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png\",srcSet:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19422.000000000004+0+0+10+0+0+2256+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png\",srcSet:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19770+0+0+10+0+0+2156+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png\",srcSet:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+20027.000000000004+0+0+10+0+0+2341+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png\",srcSet:\"https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7erYMx6BMrEoaF6hmNKO7EYl2M.png 1600w\"},className:\"framer-1xc5dws\",\"data-framer-name\":\"Hero Banner\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Range of File Type Settings\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp LayOut offers export plans and hosts a wide range of settings to export the plans including several file formats, including PDF, DWG, DXF and image files.\"})]}),className:\"framer-2eelpr\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4zv7aa\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18827.767567567567+0+0+10+0+0+3128+0+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png\",srcSet:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19422.000000000004+0+0+10+0+0+2852+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png\",srcSet:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19770+0+0+10+0+0+2652+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png\",srcSet:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+20027.000000000004+0+0+10+0+0+3022+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png\",srcSet:\"https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5mn0QO7RWP8rvDBglX6Nc5FQ.png 1600w\"},className:\"framer-9j3zpd\",\"data-framer-name\":\"Hero Banner\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18827.767567567567+0+0+10+0+0+3128+0+214),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png\",srcSet:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png 1600w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19422.000000000004+0+0+10+0+0+2852+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"395px\",src:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png\",srcSet:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png 1600w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19770+0+0+10+0+0+2652+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"295px\",src:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png\",srcSet:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:964,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+20027.000000000004+0+0+10+0+0+3022+0),pixelHeight:964,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png\",srcSet:\"https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbhuE47B1Jt0m5YUwugtdWUMMM.png 1600w\"},className:\"framer-pox45p\",\"data-framer-name\":\"Hero Banner\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14wow6j\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udk0of\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fv0khw-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-84a5bc01-d9ba-49d6-bf51-d7d1b2082ea0, rgb(64, 222, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChatText\",id:\"FF_KfrpLM\",layoutId:\"FF_KfrpLM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pvx05p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"On the export side of things, I would definitely say 3DTHD wins on this feature, having used SketchUp LayOut, it can be time-consuming to work with.To create a plan set in Sketch Up similar to what the 3DTHD exports in seconds can take days if not weeks and also requires you to learn how to draft plans. So if you don't have to do any set up or drafting work, isn't that a win-win?\"})}),className:\"framer-dw36ua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1loo03m\",\"data-styles-preset\":\"EfxUGHAAg\",style:{\"--framer-text-color\":\"rgb(215, 215, 215)\"},children:[\" \",/*#__PURE__*/_jsx(\"em\",{children:\"- Author's Thoughts\"})]})}),className:\"framer-fqcgn3\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8xlrvx\",\"data-framer-name\":\"Section 2 - 3DTHD\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ns6n64\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gsx0as\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp vs 3DTHD | Pricing\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"The big ole question - how much does it cost to use 3DTHD and SketchUp?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Here's an overview of the plans and their pricing:\"})]}),className:\"framer-so6kn9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wf0qu4\",\"data-framer-name\":\"Section 1 - Summary\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16j2ghb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1239ftd\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-spwqdt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-u7xr3c\",\"data-styles-preset\":\"BGwU3SL_M\",style:{\"--framer-text-color\":\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"3D Tiny House Designer\"})})}),className:\"framer-40elp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+0+10+63.599999999999994},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+63.599999999999994},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+0+10+63.599999999999994}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+63.599999999999994,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fv4yrh-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3DTHD Personal Free\",height:\"100%\",id:\"bcw7A1Qhe\",layoutId:\"bcw7A1Qhe\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"This is a web-based version of 3DTHD and is available for free to use with a 7-day free trial.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The free version simply acts as a viewing tool and cannot be used a design tool unless upgraded to premium.\"})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+0+10+137.6},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+137.6},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+0+10+137.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+137.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c1098i-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3DTHD Personal Premium\",height:\"100%\",id:\"NA0xldOg6\",layoutId:\"NA0xldOg6\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"This is a web-based version of 3DTHD and is an upgrade from the free version. This plan offers a Free 7-Day Trial to give all premium features a try. It costs \",/*#__PURE__*/_jsx(\"strong\",{children:\"$12usd per month \"}),\"to access features for personal use.\"]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+0+10+211.6},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+211.6},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+0+10+211.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+211.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hqcjzt-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3DTHD Business\",height:\"100%\",id:\"er1ENeL1Q\",layoutId:\"er1ENeL1Q\",LkqmyFFrQ:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"This is a web-based version of 3DTHD tailor-built for professional use, with advanced tools and features. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"This plan offers a discounted 2-month trial period of ~55 USD per month. Full subscription pricing is tailored depending on the size of your business.\"})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbram6\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l0uvac\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-u7xr3c\",\"data-styles-preset\":\"BGwU3SL_M\",style:{\"--framer-text-color\":\"var(--token-f21c297c-8910-4c5e-abcc-f5c6ef0a30dd, rgb(82, 81, 87))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SketchUp\"})})}),className:\"framer-hf1sxb\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+305.6+10+63.599999999999994},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+63.599999999999994},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+305.6+10+63.599999999999994}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+63.599999999999994,children:/*#__PURE__*/_jsx(Container,{className:\"framer-531j25-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp Free\",height:\"100%\",id:\"cHbSMc2xs\",layoutId:\"cHbSMc2xs\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"This is a web-based version of SketchUp that is available for free. However, it has limited features and is not suitable for professional use.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+305.6+10+137.6},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+137.6},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+305.6+10+137.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+137.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3upzl3-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp Go\",height:\"100%\",id:\"zmqvGLHqz\",layoutId:\"zmqvGLHqz\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"nPZOHauoK\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"This is a web-based version of SketchUp that is suitable for personal or professional use. It costs\",/*#__PURE__*/_jsx(\"strong\",{children:\" $119usd per year\"}),\".\"]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+305.6+10+211.6},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+211.6},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+305.6+10+211.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+211.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewip89-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp Pro\",height:\"100%\",id:\"cMhJCOiJQ\",layoutId:\"cMhJCOiJQ\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"This is a desktop-based version of SketchUp that is suitable for professional use. This plan offers a 30-day Free Trial then rolls over to $299USD per year.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+0+18827.767567567567+0+3918+40+0+10+403.2+0+0+0+305.6+10+285.6},xOD6nCGqo:{width:\"361px\",y:(componentViewport?.y||0)+0+19422.000000000004+0+3504+40+0+10+403.2+4+0+10+10+285.6},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+19770+0+3204+40+0+10+403.2+10+0+10+305.6+10+285.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"501px\",y:(componentViewport?.y||0)+0+20027.000000000004+0+3759+40+0+10+403.2+4+0+10+10+285.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t8zz0k-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp Studio\",height:\"100%\",id:\"XxTFsMSTU\",layoutId:\"XxTFsMSTU\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"This is a comprehensive suite of tools that includes SketchUp Pro, LayOut, Style Builder, and more. It is designed for professionals who need advanced features and costs $699USD per year.\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b48utn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp and 3DTHD both offer pricing tiers based on different use cases, but there are some differences between them. SketchUp only offers annual subscriptions, whereas 3DTHD offers monthly for personal use and both monthly and annual subscriptions for a business plan.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"This means that 3DTHD may be more flexible for those who prefer to pay on a monthly basis.\"})]}),className:\"framer-1o5ohcf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2g85re\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s7lpue\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nt6dxm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6933e683-7807-4f0d-9833-81b77c52a627, rgb(255, 127, 107))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Warning\",id:\"pjf2uUVQd\",layoutId:\"pjf2uUVQd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mpa98u\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It's important to note that the specific pricing and plans offered by each company may vary, so it's best to check their websites for the most up-to-date information.\"})}),className:\"framer-1ijbz8z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b2d50r\",\"data-framer-name\":\"Summary\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vwapsu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1994xpw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"#333\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Let\u2019s wrap up | 3DTHD vs SketchUp comparison!\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Both software offers a wide range of tools and features that can help optimize workflow and design some truly epic tiny house designs.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"So which software is better for tiny home design?\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[\"In most cases, \",/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD is definitely the better software for tiny home design and even cabins\"}),\" as the whole software has been tailored specifically to the tiny house industry.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD is purpose-built for designing tiny homes on wheels\"}),\" and can significantly speed up the design process by providing pre-set components and models that can be easily dragged and dropped into your design with just a few clicks.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"One of its most important features is the Generate Plans tool, which can cut down on drafting time, revisions, and back-and-forth communication with a draftsperson. With this tool, you can export full construction plans in less than 30 seconds, compared to a typical turnaround time of a couple of weeks.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"If you're looking for a software that can help you save time on small tasks and streamline the design process for tiny homes on wheels, 3DTHD is an optimal choice. Once you have mastered the software (which only takes a couple of hours) you can design a fully detailed tiny home and export the tiny house plans in under an hour.If you're looking for a design software that provides complete flexibility with no limitations, SketchUp can be an excellent tool to use, however, it comes with a steep learning curve and will be more time-intensive in the long run. With SketchUp, you have the freedom to model everything from scratch and can download or purchase plugins to optimize your workflow. Apps such as SketchUp Layout can help you draft plans, while SketchUp Warehouse provides access to a range of 3D objects to suit your style. These plugins can significantly enhance your workflow and productivity. Overall, SketchUp offers a powerful and flexible platform for designing and modelling.\"})]}),fonts:[\"GF;Outfit-700\",\"GF;Outfit-900\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i1o4n8\",\"data-styles-preset\":\"qoSsHRLMN\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Let\u2019s wrap up | 3DTHD vs SketchUp comparison!\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Both software offers a wide range of tools and features that can help optimize workflow and design some truly epic tiny house designs.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-atem7u\",\"data-styles-preset\":\"tSpa5EORs\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"So which software is better for tiny home design?\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[\"In most cases, \",/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD is definitely the better software for tiny home design and even cabins\"}),\" as the whole software has been tailored specifically to the tiny house industry.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"3DTHD is purpose-built for designing tiny homes on wheels\"}),\" and can significantly speed up the design process by providing pre-set components and models that can be easily dragged and dropped into your design with just a few clicks.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"One of its most important features is the Generate Plans tool, which can cut down on drafting time, revisions, and back-and-forth communication with a draftsperson. With this tool, you can export full construction plans in less than 30 seconds, compared to a typical turnaround time of a couple of weeks.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"If you're looking for a software that can help you save time on small tasks and streamline the design process for tiny homes on wheels, 3DTHD is an optimal choice. Once you have mastered the software (which only takes a couple of hours) you can design a fully detailed tiny home and export the tiny house plans in under an hour.If you're looking for a design software that provides complete flexibility with no limitations, SketchUp can be an excellent tool to use, however, it comes with a steep learning curve and will be more time-intensive in the long run. With SketchUp, you have the freedom to model everything from scratch and can download or purchase plugins to optimize your workflow. Apps such as SketchUp Layout can help you draft plans, while SketchUp Warehouse provides access to a range of 3D objects to suit your style. These plugins can significantly enhance your workflow and productivity. Overall, SketchUp offers a powerful and flexible platform for designing and modelling.\"})]}),className:\"framer-1phnbie\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-66chhq\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pa1dyz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1pt56-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6933e683-7807-4f0d-9833-81b77c52a627, rgb(255, 127, 107))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Warning\",id:\"FjteqP0US\",layoutId:\"FjteqP0US\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12vei0b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"It's important to note that the specific pricing and plans offered by each company may vary, so it's best to check their websites for the most up-to-date information.\"})}),className:\"framer-11d3109\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omrnzq\",\"data-framer-name\":\"Section 1 - Summary\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s803f7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qzoaqt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"SketchUp and 3DTHD both offer pricing tiers based on different use cases, but there are some differences between them. SketchUp only offers annual subscriptions, whereas 3DTHD offers monthly for personal use and both monthly and annual subscriptions for a business plan.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"This means that 3DTHD may be more flexible for those who prefer to pay on a monthly basis.\"})]}),className:\"framer-1xtgpm8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2pwq9-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"KH59dJ1VZ\",isMixedBorderRadius:false,layoutId:\"KH59dJ1VZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/nY54HwxdBryg77Jv4QzFwzGPUhA.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1loo03m\",\"data-styles-preset\":\"EfxUGHAAg\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"*Both videos were recorded at 2x speed to show a side-by-side comparison of how long it takes to model a tiny house shell in the two software.\"})})}),className:\"framer-umduo5\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rh39m6\",\"data-framer-name\":\"Authors Thoughts\",id:elementId8,ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t2gb2a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17l2wew\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10j5v1l\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14u5181-container\",id:elementId9,ref:ref11,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3237176f-3765-496b-81de-88211128356d, rgb(244, 144, 88))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UserCircle\",id:\"rMfyADhzR\",layoutId:\"rMfyADhzR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vweckn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Authors Thoughts\"})})}),className:\"framer-pc4208\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 108px)`,y:(componentViewport?.y||0)+0+26275.367567567566+40+0+10+0+20+126},xOD6nCGqo:{width:\"740px\",y:(componentViewport?.y||0)+0+26222.000000000004+40+0+10+0+20+126},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+26587.6+40+0+10+0+20+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1020px\",y:(componentViewport?.y||0)+0+27082.000000000004+40+0+10+0+20+126,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wdzzqu-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"SketchUp\",height:\"100%\",id:\"qKwkLdbtW\",layoutId:\"qKwkLdbtW\",LkqmyFFrQ:\"var(--token-adc69554-c446-4f58-a323-c0d7f0d1d790, rgb(7, 90, 151))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{children:/*#__PURE__*/_jsxs(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC4DLikes:\"}),\" I love the flexibility the software gives you when designing a tiny home. It's great for adding super custom features to your design which requires custom 3D modelling.\"]}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"I used SketchUp religiously for years to design some well known tiny homes, such as our popular Scandi and Petite Maison tiny house designs, and it worked really well for what I wanted to achieve. \"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:\"I also love SketchUp Warehouse, there are some seriously talented users out there who really know the software back to front and have saved me some headaches, allowing me to design a tiny home exactly how I like with the props and furniture the platform has to offer.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC4E Dislikes:\"}),\" I'm not the biggest fan of SketchUp LayOut. I'm not super tech-savvy when it comes to this side of things, that's more Till and Laurin's (my co-founders) forte. While I did use it, I did find it difficult to get used to, and it was super time-intensive. And let's face it, I'd rather be designing than drafting plans. \uD83E\uDD37 I also found that the learning curve to get really good at SketchUp took me some time, only a year ago was I still making beginner mistakes, and until Laurin hand-held me into using SketchUp more efficiently was I able to fully get the grips of the software. I also used SketchUp to design custom tiny homes for clients. While the flexibility of 3D modelling everything was great, it took me hours to complete the 3D model of the design and even longer to draft the plans (and I really dislike drafting). This made it difficult to profitably offer custom designs just because of the sheer amount of work it took.\"]})]})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 108px)`,y:(componentViewport?.y||0)+0+26275.367567567566+40+0+10+0+20+190},xOD6nCGqo:{width:\"740px\",y:(componentViewport?.y||0)+0+26222.000000000004+40+0+10+0+20+190},Z1r068mLL:{width:\"540px\",y:(componentViewport?.y||0)+0+26587.6+40+0+10+0+20+190}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1020px\",y:(componentViewport?.y||0)+0+27082.000000000004+40+0+10+0+20+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f84ub8-container\",children:/*#__PURE__*/_jsx(ElementsAccordion,{AWSjGYVqE:\"3D Tiny House Designer\",height:\"100%\",id:\"HkiMT1J5G\",layoutId:\"HkiMT1J5G\",LkqmyFFrQ:\"var(--token-c6690679-8a0e-4960-b03e-e2274bd18dd2, rgb(255, 83, 55))\",style:{width:\"100%\"},variant:\"jCC_7Oalb\",width:\"100%\",y1pMpCSSw:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC4DLikes:\"}),\" Now on to the slightly biased review. I LOVE 3DTHD, at least 97% of the software. Don't get me wrong, there is definitely room for improvements for specific features, but other than that, I was able to recreate Scandi and Petite Maison in the designer and the process was literally 10X faster. \"]}),/*#__PURE__*/_jsx(\"p\",{children:\"I'm super impressed with how fast Till and Laurin were able to develop the software in just a few months. What I really like is the preset models, I no longer have to think much about the technical aspects of standard measurements for a trailer or shell height, no more awkwardly cutting walls away to make way for a roof, AND the cabinetry tool is a timesaver.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Plus, let's not forget about the Generate Plans tool; did I mention no longer need to draft plans? Yes, that's right, I just have to click a button, select my settings and 30 seconds later, I have full construction plans in PDF format downloaded straight to my desktop!\uD83C\uDF7E\"}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC4E Dislikes:\"}),\" I have to say, I really enjoy using this software. Although it would be nice to have a desktop version, it's not a big deal. \"]}),/*#__PURE__*/_jsx(\"p\",{children:\"And while there are a few extra features that would be cool to have, like an undo button, I still find it really user-friendly and efficient to work with. Plus, I've heard from insiders that there are some exciting new features in the works (\uD83E\uDD2B \uD83D\uDE09), so I'm eagerly waiting for those! No pressure team haha... - I appreciate all the hard work they've already put into making this software so great.\"})]})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"So there you have it, my raw and personal thoughts for each software. If you've been on the fence about which software is right for you, I hope my side-by-side comparison has helped led you to an informed decision.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"If you're a tiny house designer, builder or new professional on the block, and you'd like to learn more about the 3DTHD Business can help streamline and grow your business, feel free to reach out, and my co-founder- Till, will share a demo of the software in action and answer any questions you may have.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ezl1gd\",\"data-styles-preset\":\"mho5ljjfm\",children:\"Thanks for reading! \u2728\"})]}),className:\"framer-1lxp9q5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jrf5jn\",\"data-framer-name\":\"About the Author\",id:elementId10,ref:ref12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gioymx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ha710s\",\"data-framer-name\":\"Frame 3620\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-23d40o\",\"data-framer-name\":\"Frame 3620\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"About the Author\"})}),className:\"framer-uaf0qe\",\"data-framer-name\":\"About the Author\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-twuvvp\",\"data-framer-name\":\"Frame 3619\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oy1tsy\",\"data-framer-name\":\"Group 3599\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hx4ubf\",\"data-border\":true,\"data-framer-name\":\"Ellipse 5\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27140.367567567566+40+0+0+0+0+245.99999999999997+10+4.333251953125),sizes:\"43.3333px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27066.000000000004+40+0+10+245.99999999999997+10+4.333251953125),sizes:\"43.3333px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27452.6+40+0+0+10+245.99999999999997+10+4.333251953125),sizes:\"43.3333px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27926.000000000004+40+0+10+245.99999999999997+10+4.333251953125),sizes:\"43.3333px\",src:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png\",srcSet:\"https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/mYR8a1ql71KRINwZU8xGW7OT94.png 3024w\"},className:\"framer-1yavd1i\",\"data-framer-name\":\"Fritz Tiny Homes\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Eujenne Claxton\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Co-Founder | Tiny Easy\"})]}),className:\"framer-1238yuf\",\"data-framer-name\":\"Eujenne Claxton Co-Founder | Tiny Easy\",fonts:[\"GF;Outfit-700\",\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"Tiny Easy Co-Founder Eujenne is passionate about small space design and has dreamed up our popular Scandi and Petite Maison design + many more (find out in the e-book)!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"She has recently completed her own DIY tiny house built together with her partner Laurin. Their ultimate goal for tiny living is to live a sustainable and financially free lifestyle.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(48, 47, 47)\"},children:\"\u201CI hope to inspire and encourage as many people as possible to get started on their tiny house journey.\u201D\"})]}),className:\"framer-dr7nmh\",\"data-framer-name\":\"Tiny Easy Co-Founder Eujenne is passionate about small space design and has dreamed up our popular Scandi and Petite Maison design + many more (find out in the e-book)! She has recently completed her own DIY tiny house built together with her partner Laurin. Their ultimate goal for tiny living is to live a sustainable and financially free lifestyle. \u201CI hope to inspire and encourage as many people as possible to get started on their tiny house journey.\u201D\",fonts:[\"GF;Outfit-700\",\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27140.367567567566+40+0+0+1066),pixelHeight:4032,pixelWidth:3024,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg\",srcSet:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg 4032w\"}},xOD6nCGqo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27066.000000000004+40+314.5),pixelHeight:4032,pixelWidth:3024,sizes:\"390px\",src:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg\",srcSet:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg 4032w\"}},Z1r068mLL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27452.6+40+0+1086),pixelHeight:4032,pixelWidth:3024,sizes:\"600px\",src:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg\",srcSet:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27926.000000000004+40+314.5),pixelHeight:4032,pixelWidth:3024,sizes:\"535px\",src:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg\",srcSet:\"https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5O80AEJK6UP10cc833FvWKY3pWI.jpg 4032w\"},className:\"framer-1u6py4q\",\"data-framer-name\":\"Frame 1\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-743czr\",\"data-framer-name\":\"CTA 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+28733.367567567566+20+0},xOD6nCGqo:{y:(componentViewport?.y||0)+0+28222.000000000004+40+0},Z1r068mLL:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+29065.6+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:315,width:\"1065px\",y:(componentViewport?.y||0)+0+29082.000000000004+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ahd622-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"RUMBfaqLi\"},Z1r068mLL:{variant:\"D60PZVtIF\"}},children:/*#__PURE__*/_jsx(CCTATryForFree,{height:\"100%\",id:\"WDR6gbKCG\",layoutId:\"WDR6gbKCG\",NWm268fcz:18,oUBnfGK0c:18,style:{width:\"100%\"},usrdoizPv:24,variant:\"zxf9JlKKV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{y:(componentViewport?.y||0)+0+29088.367567567566},xOD6nCGqo:{y:(componentViewport?.y||0)+0+28617.000000000004},Z1r068mLL:{y:(componentViewport?.y||0)+0+29460.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+29477.000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1urggx9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HzoCn65zP:{variant:\"SD4Tmd6uo\"},Z1r068mLL:{variant:\"er5GvNtC1\"}},children:/*#__PURE__*/_jsx(GeneralFooter,{height:\"100%\",id:\"IkdbQPxW_\",layoutId:\"IkdbQPxW_\",style:{width:\"100%\"},variant:\"Sip5k_Zsa\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NSBP1.framer-lgavd3, .framer-NSBP1 .framer-lgavd3 { display: block; }\",\".framer-NSBP1.framer-f1b2aa { align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-NSBP1 .framer-1rm1zq2-container, .framer-NSBP1 .framer-yt6wys-container, .framer-NSBP1 .framer-7xlb8a-container, .framer-NSBP1 .framer-1one7oe-container, .framer-NSBP1 .framer-by3fxa-container, .framer-NSBP1 .framer-u2r5mp-container, .framer-NSBP1 .framer-1owqxle-container, .framer-NSBP1 .framer-1pfgk87-container, .framer-NSBP1 .framer-1v6b8p2-container, .framer-NSBP1 .framer-zdxmwv-container, .framer-NSBP1 .framer-5gbhwu-container, .framer-NSBP1 .framer-1ik1g2o-container, .framer-NSBP1 .framer-gym3h2-container, .framer-NSBP1 .framer-zaybb-container, .framer-NSBP1 .framer-oxtxra-container, .framer-NSBP1 .framer-vx1tkw-container, .framer-NSBP1 .framer-1htu4xo-container, .framer-NSBP1 .framer-11gae3k-container, .framer-NSBP1 .framer-pn0tp8-container, .framer-NSBP1 .framer-1thp8v2-container, .framer-NSBP1 .framer-1b3vghs-container, .framer-NSBP1 .framer-1fv4yrh-container, .framer-NSBP1 .framer-1c1098i-container, .framer-NSBP1 .framer-hqcjzt-container, .framer-NSBP1 .framer-531j25-container, .framer-NSBP1 .framer-3upzl3-container, .framer-NSBP1 .framer-ewip89-container, .framer-NSBP1 .framer-1t8zz0k-container, .framer-NSBP1 .framer-m2pwq9-container, .framer-NSBP1 .framer-1wdzzqu-container, .framer-NSBP1 .framer-f84ub8-container, .framer-NSBP1 .framer-1urggx9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-jls600 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 180px 40px 180px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-vqkth8 { 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: 1080px; }\",\".framer-NSBP1 .framer-1e6aqpy { align-content: center; align-items: center; background-color: rgba(244, 144, 88, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-cu85po, .framer-NSBP1 .framer-k9tun4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NSBP1 .framer-1c1s917, .framer-NSBP1 .framer-1oa5xtc, .framer-NSBP1 .framer-dr7nmh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NSBP1 .framer-degwdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1ivs2w4, .framer-NSBP1 .framer-rr1sgx, .framer-NSBP1 .framer-19az7cz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: min-content; }\",\".framer-NSBP1 .framer-10prk6g { --border-bottom-width: 1px; --border-color: var(--token-3237176f-3765-496b-81de-88211128356d, #f49058); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 81px; border-bottom-right-radius: 81px; border-top-left-radius: 81px; border-top-right-radius: 81px; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-NSBP1 .framer-gdh4vy, .framer-NSBP1 .framer-fiea80, .framer-NSBP1 .framer-rzn3py, .framer-NSBP1 .framer-f7ii8r, .framer-NSBP1 .framer-ikxvtj, .framer-NSBP1 .framer-196sl3, .framer-NSBP1 .framer-yfew03, .framer-NSBP1 .framer-1im4yiu, .framer-NSBP1 .framer-qn5pww, .framer-NSBP1 .framer-40elp, .framer-NSBP1 .framer-hf1sxb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NSBP1 .framer-o5k91u-container, .framer-NSBP1 .framer-1fvig2b-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 34px; }\",\".framer-NSBP1 .framer-6d8aqj, .framer-NSBP1 .framer-43qb8g, .framer-NSBP1 .framer-1mxadaa, .framer-NSBP1 .framer-1kulyg1, .framer-NSBP1 .framer-wq9pqy, .framer-NSBP1 .framer-4a9ejz, .framer-NSBP1 .framer-ya8j6w, .framer-NSBP1 .framer-qgmaa2, .framer-NSBP1 .framer-1i9rehp, .framer-NSBP1 .framer-xkzx5e, .framer-NSBP1 .framer-13i308l, .framer-NSBP1 .framer-11nbs0j, .framer-NSBP1 .framer-8xlrvx, .framer-NSBP1 .framer-b2d50r, .framer-NSBP1 .framer-1omrnzq, .framer-NSBP1 .framer-rh39m6, .framer-NSBP1 .framer-743czr { align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1ln0dsw, .framer-NSBP1 .framer-jo2lpo, .framer-NSBP1 .framer-z6vd5g, .framer-NSBP1 .framer-8is3zc, .framer-NSBP1 .framer-gmfjt6, .framer-NSBP1 .framer-1i7s3rb, .framer-NSBP1 .framer-ekyiws, .framer-NSBP1 .framer-ns6n64, .framer-NSBP1 .framer-1vwapsu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 1080px; }\",\".framer-NSBP1 .framer-1sgm9wj, .framer-NSBP1 .framer-1r55nb5, .framer-NSBP1 .framer-e922qf, .framer-NSBP1 .framer-q74qaj, .framer-NSBP1 .framer-1fdvzlz, .framer-NSBP1 .framer-1t8kvwj, .framer-NSBP1 .framer-1w7wsh8, .framer-NSBP1 .framer-gsx0as, .framer-NSBP1 .framer-1b48utn, .framer-NSBP1 .framer-1994xpw, .framer-NSBP1 .framer-qzoaqt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1rmwebl { aspect-ratio: 1.6875 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 640px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-1k9hqw2 { --border-bottom-width: 2px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-uui1c3 { background-color: #ffffff; flex: none; height: 14px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1u66mz0-container, .framer-NSBP1 .framer-1ubuu70-container, .framer-NSBP1 .framer-1bfrg31-container, .framer-NSBP1 .framer-zdakyx-container, .framer-NSBP1 .framer-12bqb41-container, .framer-NSBP1 .framer-btww7y-container, .framer-NSBP1 .framer-1lue4oa-container, .framer-NSBP1 .framer-lkkv22-container, .framer-NSBP1 .framer-1ldl687-container, .framer-NSBP1 .framer-103t9h5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NSBP1 .framer-x2x5g4, .framer-NSBP1 .framer-1xgk77n, .framer-NSBP1 .framer-f0trsz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 1080px; }\",\".framer-NSBP1 .framer-sa7jd1, .framer-NSBP1 .framer-3a7n4j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NSBP1 .framer-cv4tpf, .framer-NSBP1 .framer-pbgu13, .framer-NSBP1 .framer-7ybweq, .framer-NSBP1 .framer-3ponfr, .framer-NSBP1 .framer-1tittkl, .framer-NSBP1 .framer-8pt42o, .framer-NSBP1 .framer-1f2a91q, .framer-NSBP1 .framer-1i9gw8j, .framer-NSBP1 .framer-b0ei6w, .framer-NSBP1 .framer-zz83ls, .framer-NSBP1 .framer-6mk49s, .framer-NSBP1 .framer-3iv4en, .framer-NSBP1 .framer-euoxqi, .framer-NSBP1 .framer-lde1pk, .framer-NSBP1 .framer-qd5ecp, .framer-NSBP1 .framer-1f30o91, .framer-NSBP1 .framer-1zsj34, .framer-NSBP1 .framer-96a9ct, .framer-NSBP1 .framer-io95r9, .framer-NSBP1 .framer-2eelpr, .framer-NSBP1 .framer-dw36ua, .framer-NSBP1 .framer-fqcgn3, .framer-NSBP1 .framer-so6kn9, .framer-NSBP1 .framer-1o5ohcf, .framer-NSBP1 .framer-1ijbz8z, .framer-NSBP1 .framer-1phnbie, .framer-NSBP1 .framer-11d3109, .framer-NSBP1 .framer-1xtgpm8, .framer-NSBP1 .framer-umduo5, .framer-NSBP1 .framer-pc4208, .framer-NSBP1 .framer-1lxp9q5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NSBP1 .framer-18h1ips { aspect-ratio: 2.958904109589041 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 365px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-13hj3c3 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 365px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-erre66 { align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 400px 40px 400px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-euav0o, .framer-NSBP1 .framer-qqpa74, .framer-NSBP1 .framer-b5xyfr { --border-bottom-width: 2px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-1shckev, .framer-NSBP1 .framer-8jntjw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 39px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-wvidhv, .framer-NSBP1 .framer-1ch9g37, .framer-NSBP1 .framer-1lsb30c, .framer-NSBP1 .framer-1h212yg, .framer-NSBP1 .framer-zhgeu3, .framer-NSBP1 .framer-1qg9x31, .framer-NSBP1 .framer-31k4v0, .framer-NSBP1 .framer-i4o27y, .framer-NSBP1 .framer-1y5yhq3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-21q519-container, .framer-NSBP1 .framer-13tfe2x-container, .framer-NSBP1 .framer-1022v1z-container, .framer-NSBP1 .framer-1ak44du-container, .framer-NSBP1 .framer-6i2jzm-container, .framer-NSBP1 .framer-gu2025, .framer-NSBP1 .framer-2nvyue, .framer-NSBP1 .framer-qan17a, .framer-NSBP1 .framer-1pwg2gq-container, .framer-NSBP1 .framer-1d9ard8-container, .framer-NSBP1 .framer-wnkuv0-container, .framer-NSBP1 .framer-1gx92ji-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-NSBP1 .framer-w2xi3j, .framer-NSBP1 .framer-mzus8x, .framer-NSBP1 .framer-18bniqc, .framer-NSBP1 .framer-q5bhdt, .framer-NSBP1 .framer-1nueek0, .framer-NSBP1 .framer-8abgin, .framer-NSBP1 .framer-1ybmudu, .framer-NSBP1 .framer-1lok8w3, .framer-NSBP1 .framer-1szgoe1, .framer-NSBP1 .framer-s353p, .framer-NSBP1 .framer-1x8g1xv, .framer-NSBP1 .framer-spmhcf, .framer-NSBP1 .framer-uaf0qe, .framer-NSBP1 .framer-1238yuf { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NSBP1 .framer-1iehxup { --border-bottom-width: 2px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-fxyllr-container, .framer-NSBP1 .framer-111eoi2-container, .framer-NSBP1 .framer-1bfk5w-container, .framer-NSBP1 .framer-1ixj51o-container, .framer-NSBP1 .framer-ahd622-container { flex: none; height: auto; position: relative; width: 1065px; }\",\".framer-NSBP1 .framer-1st8ytd, .framer-NSBP1 .framer-15iqc31, .framer-NSBP1 .framer-qzbs5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-l3e7t2 { --border-bottom-width: 2px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 2px; --border-right-width: 2px; --border-style: dashed; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-1xmzct8, .framer-NSBP1 .framer-1s803f7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1080px; }\",\".framer-NSBP1 .framer-15j6ovo, .framer-NSBP1 .framer-13ba6kc, .framer-NSBP1 .framer-16j2ghb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-v6r6xa, .framer-NSBP1 .framer-1wu4p7v, .framer-NSBP1 .framer-r05u8k, .framer-NSBP1 .framer-1rr5q40, .framer-NSBP1 .framer-1239ftd, .framer-NSBP1 .framer-1wbram6 { --border-bottom-width: 2px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-11t1cle { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 2141px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-btaijj, .framer-NSBP1 .framer-w1d1wr { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-9ibzr0, .framer-NSBP1 .framer-15x889r, .framer-NSBP1 .framer-14wow6j, .framer-NSBP1 .framer-2g85re, .framer-NSBP1 .framer-66chhq { --border-bottom-width: 2px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-15at51c, .framer-NSBP1 .framer-8nc9wo, .framer-NSBP1 .framer-1udk0of, .framer-NSBP1 .framer-1s7lpue, .framer-NSBP1 .framer-1pa1dyz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-qbfqlx-container, .framer-NSBP1 .framer-o81gyj-container, .framer-NSBP1 .framer-fv0khw-container, .framer-NSBP1 .framer-1nt6dxm-container, .framer-NSBP1 .framer-1d1pt56-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-NSBP1 .framer-6iggp3, .framer-NSBP1 .framer-1a8272e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NSBP1 .framer-mtcexa, .framer-NSBP1 .framer-197jjfi { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 680px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-10wl0ep { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-xxo99x, .framer-NSBP1 .framer-1ky9m6z { align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-18tt71f, .framer-NSBP1 .framer-eq1bty, .framer-NSBP1 .framer-spwqdt, .framer-NSBP1 .framer-l0uvac { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1nth1w4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NSBP1 .framer-f1uidp, .framer-NSBP1 .framer-1qtq9t4, .framer-NSBP1 .framer-oscv2d, .framer-NSBP1 .framer-1dw021e, .framer-NSBP1 .framer-k8sqm0, .framer-NSBP1 .framer-4zv7aa, .framer-NSBP1 .framer-10j5v1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1j0o96n, .framer-NSBP1 .framer-rs9p0f, .framer-NSBP1 .framer-1cnkin1, .framer-NSBP1 .framer-lzl9lv, .framer-NSBP1 .framer-18h7v3w, .framer-NSBP1 .framer-1e60j0w { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 320px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-q5i2gm { align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1y9gjj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-17zcy87, .framer-NSBP1 .framer-4i2a1, .framer-NSBP1 .framer-obfgei, .framer-NSBP1 .framer-1xc5dws, .framer-NSBP1 .framer-9j3zpd, .framer-NSBP1 .framer-pox45p { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 365px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-1pvx05p, .framer-NSBP1 .framer-1mpa98u, .framer-NSBP1 .framer-12vei0b, .framer-NSBP1 .framer-1vweckn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NSBP1 .framer-1wf0qu4 { align-content: center; align-items: center; background-color: var(--token-2aad79cc-7aa4-4dd6-b714-3bb18e6eab83, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-t2gb2a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1080px; }\",\".framer-NSBP1 .framer-17l2wew { --border-bottom-width: 1px; --border-color: var(--token-6fd6fd44-2c0e-4c6e-b04b-c6c4540edd57, #d7d7d7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NSBP1 .framer-14u5181-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-NSBP1 .framer-jrf5jn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 185px 40px 185px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-gioymx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1080px; }\",\".framer-NSBP1 .framer-ha710s { 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: flex-start; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-NSBP1 .framer-23d40o, .framer-NSBP1 .framer-twuvvp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-NSBP1 .framer-1oy1tsy { flex: none; height: 52px; overflow: visible; position: relative; width: 52px; }\",\".framer-NSBP1 .framer-hx4ubf { --border-bottom-width: 0.5px; --border-color: #ef7323; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 52px); left: 0px; position: absolute; top: 0px; width: 52px; }\",\".framer-NSBP1 .framer-1yavd1i { aspect-ratio: 1 / 1; border-bottom-left-radius: 81px; border-bottom-right-radius: 81px; border-top-left-radius: 81px; border-top-right-radius: 81px; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 4px; position: absolute; top: 4px; width: 43px; }\",\".framer-NSBP1 .framer-1u6py4q { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 447px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NSBP1.framer-f1b2aa, .framer-NSBP1 .framer-jls600, .framer-NSBP1 .framer-vqkth8, .framer-NSBP1 .framer-1e6aqpy, .framer-NSBP1 .framer-degwdi, .framer-NSBP1 .framer-1ivs2w4, .framer-NSBP1 .framer-rr1sgx, .framer-NSBP1 .framer-19az7cz, .framer-NSBP1 .framer-6d8aqj, .framer-NSBP1 .framer-1ln0dsw, .framer-NSBP1 .framer-1sgm9wj, .framer-NSBP1 .framer-1k9hqw2, .framer-NSBP1 .framer-43qb8g, .framer-NSBP1 .framer-x2x5g4, .framer-NSBP1 .framer-sa7jd1, .framer-NSBP1 .framer-1mxadaa, .framer-NSBP1 .framer-1xgk77n, .framer-NSBP1 .framer-3a7n4j, .framer-NSBP1 .framer-erre66, .framer-NSBP1 .framer-jo2lpo, .framer-NSBP1 .framer-1r55nb5, .framer-NSBP1 .framer-euav0o, .framer-NSBP1 .framer-1shckev, .framer-NSBP1 .framer-wvidhv, .framer-NSBP1 .framer-1ch9g37, .framer-NSBP1 .framer-1lsb30c, .framer-NSBP1 .framer-1h212yg, .framer-NSBP1 .framer-zhgeu3, .framer-NSBP1 .framer-1iehxup, .framer-NSBP1 .framer-1kulyg1, .framer-NSBP1 .framer-wq9pqy, .framer-NSBP1 .framer-z6vd5g, .framer-NSBP1 .framer-e922qf, .framer-NSBP1 .framer-qqpa74, .framer-NSBP1 .framer-8jntjw, .framer-NSBP1 .framer-1st8ytd, .framer-NSBP1 .framer-15iqc31, .framer-NSBP1 .framer-qzbs5l, .framer-NSBP1 .framer-l3e7t2, .framer-NSBP1 .framer-4a9ejz, .framer-NSBP1 .framer-1xmzct8, .framer-NSBP1 .framer-q74qaj, .framer-NSBP1 .framer-15j6ovo, .framer-NSBP1 .framer-v6r6xa, .framer-NSBP1 .framer-1wu4p7v, .framer-NSBP1 .framer-ya8j6w, .framer-NSBP1 .framer-qgmaa2, .framer-NSBP1 .framer-8is3zc, .framer-NSBP1 .framer-11t1cle, .framer-NSBP1 .framer-9ibzr0, .framer-NSBP1 .framer-15at51c, .framer-NSBP1 .framer-1i9rehp, .framer-NSBP1 .framer-xkzx5e, .framer-NSBP1 .framer-gmfjt6, .framer-NSBP1 .framer-1fdvzlz, .framer-NSBP1 .framer-b5xyfr, .framer-NSBP1 .framer-10wl0ep, .framer-NSBP1 .framer-1qg9x31, .framer-NSBP1 .framer-31k4v0, .framer-NSBP1 .framer-i4o27y, .framer-NSBP1 .framer-1y5yhq3, .framer-NSBP1 .framer-15x889r, .framer-NSBP1 .framer-8nc9wo, .framer-NSBP1 .framer-xxo99x, .framer-NSBP1 .framer-1i7s3rb, .framer-NSBP1 .framer-1t8kvwj, .framer-NSBP1 .framer-1ky9m6z, .framer-NSBP1 .framer-1w7wsh8, .framer-NSBP1 .framer-13ba6kc, .framer-NSBP1 .framer-r05u8k, .framer-NSBP1 .framer-18tt71f, .framer-NSBP1 .framer-1rr5q40, .framer-NSBP1 .framer-eq1bty, .framer-NSBP1 .framer-13i308l, .framer-NSBP1 .framer-11nbs0j, .framer-NSBP1 .framer-f0trsz, .framer-NSBP1 .framer-1nth1w4, .framer-NSBP1 .framer-f1uidp, .framer-NSBP1 .framer-1qtq9t4, .framer-NSBP1 .framer-oscv2d, .framer-NSBP1 .framer-q5i2gm, .framer-NSBP1 .framer-ekyiws, .framer-NSBP1 .framer-1y9gjj2, .framer-NSBP1 .framer-1dw021e, .framer-NSBP1 .framer-k8sqm0, .framer-NSBP1 .framer-4zv7aa, .framer-NSBP1 .framer-14wow6j, .framer-NSBP1 .framer-1udk0of, .framer-NSBP1 .framer-1pvx05p, .framer-NSBP1 .framer-8xlrvx, .framer-NSBP1 .framer-ns6n64, .framer-NSBP1 .framer-gsx0as, .framer-NSBP1 .framer-1wf0qu4, .framer-NSBP1 .framer-16j2ghb, .framer-NSBP1 .framer-1239ftd, .framer-NSBP1 .framer-spwqdt, .framer-NSBP1 .framer-1wbram6, .framer-NSBP1 .framer-l0uvac, .framer-NSBP1 .framer-1b48utn, .framer-NSBP1 .framer-2g85re, .framer-NSBP1 .framer-1s7lpue, .framer-NSBP1 .framer-1mpa98u, .framer-NSBP1 .framer-b2d50r, .framer-NSBP1 .framer-1vwapsu, .framer-NSBP1 .framer-1994xpw, .framer-NSBP1 .framer-66chhq, .framer-NSBP1 .framer-1pa1dyz, .framer-NSBP1 .framer-12vei0b, .framer-NSBP1 .framer-1omrnzq, .framer-NSBP1 .framer-1s803f7, .framer-NSBP1 .framer-qzoaqt, .framer-NSBP1 .framer-rh39m6, .framer-NSBP1 .framer-t2gb2a, .framer-NSBP1 .framer-17l2wew, .framer-NSBP1 .framer-10j5v1l, .framer-NSBP1 .framer-1vweckn, .framer-NSBP1 .framer-jrf5jn, .framer-NSBP1 .framer-gioymx, .framer-NSBP1 .framer-ha710s, .framer-NSBP1 .framer-23d40o, .framer-NSBP1 .framer-twuvvp, .framer-NSBP1 .framer-1u6py4q, .framer-NSBP1 .framer-743czr { gap: 0px; } .framer-NSBP1.framer-f1b2aa > *, .framer-NSBP1 .framer-17l2wew > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NSBP1.framer-f1b2aa > :first-child, .framer-NSBP1 .framer-jls600 > :first-child, .framer-NSBP1 .framer-vqkth8 > :first-child, .framer-NSBP1 .framer-6d8aqj > :first-child, .framer-NSBP1 .framer-1ln0dsw > :first-child, .framer-NSBP1 .framer-1sgm9wj > :first-child, .framer-NSBP1 .framer-1k9hqw2 > :first-child, .framer-NSBP1 .framer-43qb8g > :first-child, .framer-NSBP1 .framer-sa7jd1 > :first-child, .framer-NSBP1 .framer-1mxadaa > :first-child, .framer-NSBP1 .framer-3a7n4j > :first-child, .framer-NSBP1 .framer-erre66 > :first-child, .framer-NSBP1 .framer-jo2lpo > :first-child, .framer-NSBP1 .framer-1r55nb5 > :first-child, .framer-NSBP1 .framer-euav0o > :first-child, .framer-NSBP1 .framer-1iehxup > :first-child, .framer-NSBP1 .framer-1kulyg1 > :first-child, .framer-NSBP1 .framer-wq9pqy > :first-child, .framer-NSBP1 .framer-z6vd5g > :first-child, .framer-NSBP1 .framer-e922qf > :first-child, .framer-NSBP1 .framer-qqpa74 > :first-child, .framer-NSBP1 .framer-l3e7t2 > :first-child, .framer-NSBP1 .framer-4a9ejz > :first-child, .framer-NSBP1 .framer-1xmzct8 > :first-child, .framer-NSBP1 .framer-q74qaj > :first-child, .framer-NSBP1 .framer-v6r6xa > :first-child, .framer-NSBP1 .framer-1wu4p7v > :first-child, .framer-NSBP1 .framer-ya8j6w > :first-child, .framer-NSBP1 .framer-qgmaa2 > :first-child, .framer-NSBP1 .framer-8is3zc > :first-child, .framer-NSBP1 .framer-11t1cle > :first-child, .framer-NSBP1 .framer-9ibzr0 > :first-child, .framer-NSBP1 .framer-1i9rehp > :first-child, .framer-NSBP1 .framer-xkzx5e > :first-child, .framer-NSBP1 .framer-gmfjt6 > :first-child, .framer-NSBP1 .framer-1fdvzlz > :first-child, .framer-NSBP1 .framer-b5xyfr > :first-child, .framer-NSBP1 .framer-10wl0ep > :first-child, .framer-NSBP1 .framer-15x889r > :first-child, .framer-NSBP1 .framer-xxo99x > :first-child, .framer-NSBP1 .framer-1i7s3rb > :first-child, .framer-NSBP1 .framer-1t8kvwj > :first-child, .framer-NSBP1 .framer-1ky9m6z > :first-child, .framer-NSBP1 .framer-1w7wsh8 > :first-child, .framer-NSBP1 .framer-r05u8k > :first-child, .framer-NSBP1 .framer-18tt71f > :first-child, .framer-NSBP1 .framer-1rr5q40 > :first-child, .framer-NSBP1 .framer-eq1bty > :first-child, .framer-NSBP1 .framer-13i308l > :first-child, .framer-NSBP1 .framer-11nbs0j > :first-child, .framer-NSBP1 .framer-1nth1w4 > :first-child, .framer-NSBP1 .framer-q5i2gm > :first-child, .framer-NSBP1 .framer-ekyiws > :first-child, .framer-NSBP1 .framer-1y9gjj2 > :first-child, .framer-NSBP1 .framer-14wow6j > :first-child, .framer-NSBP1 .framer-1pvx05p > :first-child, .framer-NSBP1 .framer-8xlrvx > :first-child, .framer-NSBP1 .framer-ns6n64 > :first-child, .framer-NSBP1 .framer-gsx0as > :first-child, .framer-NSBP1 .framer-1wf0qu4 > :first-child, .framer-NSBP1 .framer-1239ftd > :first-child, .framer-NSBP1 .framer-spwqdt > :first-child, .framer-NSBP1 .framer-1wbram6 > :first-child, .framer-NSBP1 .framer-l0uvac > :first-child, .framer-NSBP1 .framer-1b48utn > :first-child, .framer-NSBP1 .framer-2g85re > :first-child, .framer-NSBP1 .framer-1mpa98u > :first-child, .framer-NSBP1 .framer-b2d50r > :first-child, .framer-NSBP1 .framer-1vwapsu > :first-child, .framer-NSBP1 .framer-1994xpw > :first-child, .framer-NSBP1 .framer-66chhq > :first-child, .framer-NSBP1 .framer-12vei0b > :first-child, .framer-NSBP1 .framer-1omrnzq > :first-child, .framer-NSBP1 .framer-1s803f7 > :first-child, .framer-NSBP1 .framer-qzoaqt > :first-child, .framer-NSBP1 .framer-rh39m6 > :first-child, .framer-NSBP1 .framer-t2gb2a > :first-child, .framer-NSBP1 .framer-17l2wew > :first-child, .framer-NSBP1 .framer-1vweckn > :first-child, .framer-NSBP1 .framer-ha710s > :first-child, .framer-NSBP1 .framer-743czr > :first-child { margin-top: 0px; } .framer-NSBP1.framer-f1b2aa > :last-child, .framer-NSBP1 .framer-jls600 > :last-child, .framer-NSBP1 .framer-vqkth8 > :last-child, .framer-NSBP1 .framer-6d8aqj > :last-child, .framer-NSBP1 .framer-1ln0dsw > :last-child, .framer-NSBP1 .framer-1sgm9wj > :last-child, .framer-NSBP1 .framer-1k9hqw2 > :last-child, .framer-NSBP1 .framer-43qb8g > :last-child, .framer-NSBP1 .framer-sa7jd1 > :last-child, .framer-NSBP1 .framer-1mxadaa > :last-child, .framer-NSBP1 .framer-3a7n4j > :last-child, .framer-NSBP1 .framer-erre66 > :last-child, .framer-NSBP1 .framer-jo2lpo > :last-child, .framer-NSBP1 .framer-1r55nb5 > :last-child, .framer-NSBP1 .framer-euav0o > :last-child, .framer-NSBP1 .framer-1iehxup > :last-child, .framer-NSBP1 .framer-1kulyg1 > :last-child, .framer-NSBP1 .framer-wq9pqy > :last-child, .framer-NSBP1 .framer-z6vd5g > :last-child, .framer-NSBP1 .framer-e922qf > :last-child, .framer-NSBP1 .framer-qqpa74 > :last-child, .framer-NSBP1 .framer-l3e7t2 > :last-child, .framer-NSBP1 .framer-4a9ejz > :last-child, .framer-NSBP1 .framer-1xmzct8 > :last-child, .framer-NSBP1 .framer-q74qaj > :last-child, .framer-NSBP1 .framer-v6r6xa > :last-child, .framer-NSBP1 .framer-1wu4p7v > :last-child, .framer-NSBP1 .framer-ya8j6w > :last-child, .framer-NSBP1 .framer-qgmaa2 > :last-child, .framer-NSBP1 .framer-8is3zc > :last-child, .framer-NSBP1 .framer-11t1cle > :last-child, .framer-NSBP1 .framer-9ibzr0 > :last-child, .framer-NSBP1 .framer-1i9rehp > :last-child, .framer-NSBP1 .framer-xkzx5e > :last-child, .framer-NSBP1 .framer-gmfjt6 > :last-child, .framer-NSBP1 .framer-1fdvzlz > :last-child, .framer-NSBP1 .framer-b5xyfr > :last-child, .framer-NSBP1 .framer-10wl0ep > :last-child, .framer-NSBP1 .framer-15x889r > :last-child, .framer-NSBP1 .framer-xxo99x > :last-child, .framer-NSBP1 .framer-1i7s3rb > :last-child, .framer-NSBP1 .framer-1t8kvwj > :last-child, .framer-NSBP1 .framer-1ky9m6z > :last-child, .framer-NSBP1 .framer-1w7wsh8 > :last-child, .framer-NSBP1 .framer-r05u8k > :last-child, .framer-NSBP1 .framer-18tt71f > :last-child, .framer-NSBP1 .framer-1rr5q40 > :last-child, .framer-NSBP1 .framer-eq1bty > :last-child, .framer-NSBP1 .framer-13i308l > :last-child, .framer-NSBP1 .framer-11nbs0j > :last-child, .framer-NSBP1 .framer-1nth1w4 > :last-child, .framer-NSBP1 .framer-q5i2gm > :last-child, .framer-NSBP1 .framer-ekyiws > :last-child, .framer-NSBP1 .framer-1y9gjj2 > :last-child, .framer-NSBP1 .framer-14wow6j > :last-child, .framer-NSBP1 .framer-1pvx05p > :last-child, .framer-NSBP1 .framer-8xlrvx > :last-child, .framer-NSBP1 .framer-ns6n64 > :last-child, .framer-NSBP1 .framer-gsx0as > :last-child, .framer-NSBP1 .framer-1wf0qu4 > :last-child, .framer-NSBP1 .framer-1239ftd > :last-child, .framer-NSBP1 .framer-spwqdt > :last-child, .framer-NSBP1 .framer-1wbram6 > :last-child, .framer-NSBP1 .framer-l0uvac > :last-child, .framer-NSBP1 .framer-1b48utn > :last-child, .framer-NSBP1 .framer-2g85re > :last-child, .framer-NSBP1 .framer-1mpa98u > :last-child, .framer-NSBP1 .framer-b2d50r > :last-child, .framer-NSBP1 .framer-1vwapsu > :last-child, .framer-NSBP1 .framer-1994xpw > :last-child, .framer-NSBP1 .framer-66chhq > :last-child, .framer-NSBP1 .framer-12vei0b > :last-child, .framer-NSBP1 .framer-1omrnzq > :last-child, .framer-NSBP1 .framer-1s803f7 > :last-child, .framer-NSBP1 .framer-qzoaqt > :last-child, .framer-NSBP1 .framer-rh39m6 > :last-child, .framer-NSBP1 .framer-t2gb2a > :last-child, .framer-NSBP1 .framer-17l2wew > :last-child, .framer-NSBP1 .framer-1vweckn > :last-child, .framer-NSBP1 .framer-ha710s > :last-child, .framer-NSBP1 .framer-743czr > :last-child { margin-bottom: 0px; } .framer-NSBP1 .framer-jls600 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-NSBP1 .framer-vqkth8 > *, .framer-NSBP1 .framer-1k9hqw2 > *, .framer-NSBP1 .framer-euav0o > *, .framer-NSBP1 .framer-1iehxup > *, .framer-NSBP1 .framer-qqpa74 > *, .framer-NSBP1 .framer-l3e7t2 > *, .framer-NSBP1 .framer-1xmzct8 > *, .framer-NSBP1 .framer-v6r6xa > *, .framer-NSBP1 .framer-1wu4p7v > *, .framer-NSBP1 .framer-9ibzr0 > *, .framer-NSBP1 .framer-b5xyfr > *, .framer-NSBP1 .framer-10wl0ep > *, .framer-NSBP1 .framer-15x889r > *, .framer-NSBP1 .framer-r05u8k > *, .framer-NSBP1 .framer-18tt71f > *, .framer-NSBP1 .framer-1rr5q40 > *, .framer-NSBP1 .framer-eq1bty > *, .framer-NSBP1 .framer-14wow6j > *, .framer-NSBP1 .framer-1pvx05p > *, .framer-NSBP1 .framer-1239ftd > *, .framer-NSBP1 .framer-spwqdt > *, .framer-NSBP1 .framer-1wbram6 > *, .framer-NSBP1 .framer-l0uvac > *, .framer-NSBP1 .framer-2g85re > *, .framer-NSBP1 .framer-1mpa98u > *, .framer-NSBP1 .framer-66chhq > *, .framer-NSBP1 .framer-12vei0b > *, .framer-NSBP1 .framer-1s803f7 > *, .framer-NSBP1 .framer-1vweckn > *, .framer-NSBP1 .framer-ha710s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NSBP1 .framer-1e6aqpy > *, .framer-NSBP1 .framer-degwdi > *, .framer-NSBP1 .framer-1ivs2w4 > *, .framer-NSBP1 .framer-rr1sgx > *, .framer-NSBP1 .framer-19az7cz > *, .framer-NSBP1 .framer-1shckev > *, .framer-NSBP1 .framer-8jntjw > *, .framer-NSBP1 .framer-15j6ovo > *, .framer-NSBP1 .framer-15at51c > *, .framer-NSBP1 .framer-8nc9wo > *, .framer-NSBP1 .framer-13ba6kc > *, .framer-NSBP1 .framer-f1uidp > *, .framer-NSBP1 .framer-1qtq9t4 > *, .framer-NSBP1 .framer-oscv2d > *, .framer-NSBP1 .framer-1dw021e > *, .framer-NSBP1 .framer-k8sqm0 > *, .framer-NSBP1 .framer-4zv7aa > *, .framer-NSBP1 .framer-1udk0of > *, .framer-NSBP1 .framer-16j2ghb > *, .framer-NSBP1 .framer-1s7lpue > *, .framer-NSBP1 .framer-1pa1dyz > *, .framer-NSBP1 .framer-10j5v1l > *, .framer-NSBP1 .framer-jrf5jn > *, .framer-NSBP1 .framer-gioymx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NSBP1 .framer-1e6aqpy > :first-child, .framer-NSBP1 .framer-degwdi > :first-child, .framer-NSBP1 .framer-1ivs2w4 > :first-child, .framer-NSBP1 .framer-rr1sgx > :first-child, .framer-NSBP1 .framer-19az7cz > :first-child, .framer-NSBP1 .framer-x2x5g4 > :first-child, .framer-NSBP1 .framer-1xgk77n > :first-child, .framer-NSBP1 .framer-1shckev > :first-child, .framer-NSBP1 .framer-wvidhv > :first-child, .framer-NSBP1 .framer-1ch9g37 > :first-child, .framer-NSBP1 .framer-1lsb30c > :first-child, .framer-NSBP1 .framer-1h212yg > :first-child, .framer-NSBP1 .framer-zhgeu3 > :first-child, .framer-NSBP1 .framer-8jntjw > :first-child, .framer-NSBP1 .framer-1st8ytd > :first-child, .framer-NSBP1 .framer-15iqc31 > :first-child, .framer-NSBP1 .framer-qzbs5l > :first-child, .framer-NSBP1 .framer-15j6ovo > :first-child, .framer-NSBP1 .framer-15at51c > :first-child, .framer-NSBP1 .framer-1qg9x31 > :first-child, .framer-NSBP1 .framer-31k4v0 > :first-child, .framer-NSBP1 .framer-i4o27y > :first-child, .framer-NSBP1 .framer-1y5yhq3 > :first-child, .framer-NSBP1 .framer-8nc9wo > :first-child, .framer-NSBP1 .framer-13ba6kc > :first-child, .framer-NSBP1 .framer-f0trsz > :first-child, .framer-NSBP1 .framer-f1uidp > :first-child, .framer-NSBP1 .framer-1qtq9t4 > :first-child, .framer-NSBP1 .framer-oscv2d > :first-child, .framer-NSBP1 .framer-1dw021e > :first-child, .framer-NSBP1 .framer-k8sqm0 > :first-child, .framer-NSBP1 .framer-4zv7aa > :first-child, .framer-NSBP1 .framer-1udk0of > :first-child, .framer-NSBP1 .framer-16j2ghb > :first-child, .framer-NSBP1 .framer-1s7lpue > :first-child, .framer-NSBP1 .framer-1pa1dyz > :first-child, .framer-NSBP1 .framer-10j5v1l > :first-child, .framer-NSBP1 .framer-jrf5jn > :first-child, .framer-NSBP1 .framer-gioymx > :first-child, .framer-NSBP1 .framer-23d40o > :first-child, .framer-NSBP1 .framer-twuvvp > :first-child, .framer-NSBP1 .framer-1u6py4q > :first-child { margin-left: 0px; } .framer-NSBP1 .framer-1e6aqpy > :last-child, .framer-NSBP1 .framer-degwdi > :last-child, .framer-NSBP1 .framer-1ivs2w4 > :last-child, .framer-NSBP1 .framer-rr1sgx > :last-child, .framer-NSBP1 .framer-19az7cz > :last-child, .framer-NSBP1 .framer-x2x5g4 > :last-child, .framer-NSBP1 .framer-1xgk77n > :last-child, .framer-NSBP1 .framer-1shckev > :last-child, .framer-NSBP1 .framer-wvidhv > :last-child, .framer-NSBP1 .framer-1ch9g37 > :last-child, .framer-NSBP1 .framer-1lsb30c > :last-child, .framer-NSBP1 .framer-1h212yg > :last-child, .framer-NSBP1 .framer-zhgeu3 > :last-child, .framer-NSBP1 .framer-8jntjw > :last-child, .framer-NSBP1 .framer-1st8ytd > :last-child, .framer-NSBP1 .framer-15iqc31 > :last-child, .framer-NSBP1 .framer-qzbs5l > :last-child, .framer-NSBP1 .framer-15j6ovo > :last-child, .framer-NSBP1 .framer-15at51c > :last-child, .framer-NSBP1 .framer-1qg9x31 > :last-child, .framer-NSBP1 .framer-31k4v0 > :last-child, .framer-NSBP1 .framer-i4o27y > :last-child, .framer-NSBP1 .framer-1y5yhq3 > :last-child, .framer-NSBP1 .framer-8nc9wo > :last-child, .framer-NSBP1 .framer-13ba6kc > :last-child, .framer-NSBP1 .framer-f0trsz > :last-child, .framer-NSBP1 .framer-f1uidp > :last-child, .framer-NSBP1 .framer-1qtq9t4 > :last-child, .framer-NSBP1 .framer-oscv2d > :last-child, .framer-NSBP1 .framer-1dw021e > :last-child, .framer-NSBP1 .framer-k8sqm0 > :last-child, .framer-NSBP1 .framer-4zv7aa > :last-child, .framer-NSBP1 .framer-1udk0of > :last-child, .framer-NSBP1 .framer-16j2ghb > :last-child, .framer-NSBP1 .framer-1s7lpue > :last-child, .framer-NSBP1 .framer-1pa1dyz > :last-child, .framer-NSBP1 .framer-10j5v1l > :last-child, .framer-NSBP1 .framer-jrf5jn > :last-child, .framer-NSBP1 .framer-gioymx > :last-child, .framer-NSBP1 .framer-23d40o > :last-child, .framer-NSBP1 .framer-twuvvp > :last-child, .framer-NSBP1 .framer-1u6py4q > :last-child { margin-right: 0px; } .framer-NSBP1 .framer-6d8aqj > *, .framer-NSBP1 .framer-43qb8g > *, .framer-NSBP1 .framer-1mxadaa > *, .framer-NSBP1 .framer-erre66 > *, .framer-NSBP1 .framer-1kulyg1 > *, .framer-NSBP1 .framer-wq9pqy > *, .framer-NSBP1 .framer-4a9ejz > *, .framer-NSBP1 .framer-ya8j6w > *, .framer-NSBP1 .framer-qgmaa2 > *, .framer-NSBP1 .framer-1i9rehp > *, .framer-NSBP1 .framer-xkzx5e > *, .framer-NSBP1 .framer-xxo99x > *, .framer-NSBP1 .framer-1ky9m6z > *, .framer-NSBP1 .framer-13i308l > *, .framer-NSBP1 .framer-11nbs0j > *, .framer-NSBP1 .framer-1nth1w4 > *, .framer-NSBP1 .framer-q5i2gm > *, .framer-NSBP1 .framer-1y9gjj2 > *, .framer-NSBP1 .framer-8xlrvx > *, .framer-NSBP1 .framer-1wf0qu4 > *, .framer-NSBP1 .framer-b2d50r > *, .framer-NSBP1 .framer-1omrnzq > *, .framer-NSBP1 .framer-rh39m6 > *, .framer-NSBP1 .framer-743czr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NSBP1 .framer-1ln0dsw > *, .framer-NSBP1 .framer-jo2lpo > *, .framer-NSBP1 .framer-z6vd5g > *, .framer-NSBP1 .framer-8is3zc > *, .framer-NSBP1 .framer-gmfjt6 > *, .framer-NSBP1 .framer-1i7s3rb > *, .framer-NSBP1 .framer-ekyiws > *, .framer-NSBP1 .framer-ns6n64 > *, .framer-NSBP1 .framer-1vwapsu > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NSBP1 .framer-1sgm9wj > *, .framer-NSBP1 .framer-sa7jd1 > *, .framer-NSBP1 .framer-3a7n4j > *, .framer-NSBP1 .framer-1r55nb5 > *, .framer-NSBP1 .framer-e922qf > *, .framer-NSBP1 .framer-q74qaj > *, .framer-NSBP1 .framer-11t1cle > *, .framer-NSBP1 .framer-1fdvzlz > *, .framer-NSBP1 .framer-1t8kvwj > *, .framer-NSBP1 .framer-1w7wsh8 > *, .framer-NSBP1 .framer-gsx0as > *, .framer-NSBP1 .framer-1b48utn > *, .framer-NSBP1 .framer-1994xpw > *, .framer-NSBP1 .framer-qzoaqt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NSBP1 .framer-x2x5g4 > *, .framer-NSBP1 .framer-1xgk77n > *, .framer-NSBP1 .framer-f0trsz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-NSBP1 .framer-wvidhv > *, .framer-NSBP1 .framer-1ch9g37 > *, .framer-NSBP1 .framer-1lsb30c > *, .framer-NSBP1 .framer-1h212yg > *, .framer-NSBP1 .framer-zhgeu3 > *, .framer-NSBP1 .framer-1st8ytd > *, .framer-NSBP1 .framer-15iqc31 > *, .framer-NSBP1 .framer-qzbs5l > *, .framer-NSBP1 .framer-1qg9x31 > *, .framer-NSBP1 .framer-31k4v0 > *, .framer-NSBP1 .framer-i4o27y > *, .framer-NSBP1 .framer-1y5yhq3 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-NSBP1 .framer-t2gb2a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NSBP1 .framer-23d40o > *, .framer-NSBP1 .framer-twuvvp > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-NSBP1 .framer-1u6py4q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-NSBP1[data-border=\"true\"]::after, .framer-NSBP1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1919px) { .framer-NSBP1.framer-f1b2aa { width: 1200px; } .framer-NSBP1 .framer-vqkth8, .framer-NSBP1 .framer-1ln0dsw, .framer-NSBP1 .framer-x2x5g4, .framer-NSBP1 .framer-1xgk77n, .framer-NSBP1 .framer-jo2lpo, .framer-NSBP1 .framer-z6vd5g, .framer-NSBP1 .framer-1xmzct8, .framer-NSBP1 .framer-8is3zc, .framer-NSBP1 .framer-gmfjt6, .framer-NSBP1 .framer-1i7s3rb, .framer-NSBP1 .framer-f0trsz, .framer-NSBP1 .framer-ns6n64, .framer-NSBP1 .framer-1vwapsu, .framer-NSBP1 .framer-1s803f7, .framer-NSBP1 .framer-t2gb2a { width: 800px; } .framer-NSBP1 .framer-o5k91u-container, .framer-NSBP1 .framer-1fvig2b-container { height: var(--framer-aspect-ratio-supported, 36px); } .framer-NSBP1 .framer-1rmwebl { height: var(--framer-aspect-ratio-supported, 474px); } .framer-NSBP1 .framer-18h1ips { height: var(--framer-aspect-ratio-supported, 271px); } .framer-NSBP1 .framer-11t1cle { height: 2116px; } .framer-NSBP1 .framer-mtcexa, .framer-NSBP1 .framer-197jjfi { height: 480px; } .framer-NSBP1 .framer-1j0o96n, .framer-NSBP1 .framer-rs9p0f, .framer-NSBP1 .framer-1cnkin1, .framer-NSBP1 .framer-lzl9lv, .framer-NSBP1 .framer-18h7v3w, .framer-NSBP1 .framer-1e60j0w { height: 260px; } .framer-NSBP1 .framer-ekyiws { order: 0; width: 800px; } .framer-NSBP1 .framer-17zcy87, .framer-NSBP1 .framer-4i2a1, .framer-NSBP1 .framer-obfgei, .framer-NSBP1 .framer-1xc5dws, .framer-NSBP1 .framer-9j3zpd, .framer-NSBP1 .framer-pox45p { height: 280px; } .framer-NSBP1 .framer-8xlrvx { order: 1; } .framer-NSBP1 .framer-b2d50r { order: 2; } .framer-NSBP1 .framer-1omrnzq { order: 3; } .framer-NSBP1 .framer-gioymx { gap: 20px; width: 800px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NSBP1 .framer-gioymx { gap: 0px; } .framer-NSBP1 .framer-gioymx > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-NSBP1 .framer-gioymx > :first-child { margin-left: 0px; } .framer-NSBP1 .framer-gioymx > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-NSBP1.framer-f1b2aa { width: 810px; } .framer-NSBP1 .framer-vqkth8, .framer-NSBP1 .framer-1ln0dsw, .framer-NSBP1 .framer-x2x5g4, .framer-NSBP1 .framer-1xgk77n, .framer-NSBP1 .framer-jo2lpo, .framer-NSBP1 .framer-z6vd5g, .framer-NSBP1 .framer-1xmzct8, .framer-NSBP1 .framer-8is3zc, .framer-NSBP1 .framer-gmfjt6, .framer-NSBP1 .framer-1i7s3rb, .framer-NSBP1 .framer-f0trsz, .framer-NSBP1 .framer-ekyiws, .framer-NSBP1 .framer-ns6n64, .framer-NSBP1 .framer-1vwapsu, .framer-NSBP1 .framer-1s803f7 { width: 600px; } .framer-NSBP1 .framer-1rmwebl { height: var(--framer-aspect-ratio-supported, 355px); } .framer-NSBP1 .framer-18h1ips { height: var(--framer-aspect-ratio-supported, 203px); } .framer-NSBP1 .framer-fxyllr-container, .framer-NSBP1 .framer-111eoi2-container, .framer-NSBP1 .framer-1bfk5w-container, .framer-NSBP1 .framer-1ixj51o-container, .framer-NSBP1 .framer-ahd622-container { width: 100%; } .framer-NSBP1 .framer-15j6ovo, .framer-NSBP1 .framer-13ba6kc, .framer-NSBP1 .framer-16j2ghb { flex-direction: column; } .framer-NSBP1 .framer-v6r6xa, .framer-NSBP1 .framer-1wu4p7v, .framer-NSBP1 .framer-r05u8k, .framer-NSBP1 .framer-1rr5q40, .framer-NSBP1 .framer-1239ftd, .framer-NSBP1 .framer-1wbram6, .framer-NSBP1 .framer-ha710s, .framer-NSBP1 .framer-1u6py4q { flex: none; width: 100%; } .framer-NSBP1 .framer-11t1cle { height: min-content; } .framer-NSBP1 .framer-btaijj, .framer-NSBP1 .framer-w1d1wr { flex: none; height: 380px; } .framer-NSBP1 .framer-mtcexa, .framer-NSBP1 .framer-197jjfi { height: 380px; } .framer-NSBP1 .framer-1j0o96n, .framer-NSBP1 .framer-rs9p0f, .framer-NSBP1 .framer-1cnkin1, .framer-NSBP1 .framer-lzl9lv, .framer-NSBP1 .framer-18h7v3w, .framer-NSBP1 .framer-1e60j0w, .framer-NSBP1 .framer-17zcy87, .framer-NSBP1 .framer-4i2a1, .framer-NSBP1 .framer-obfgei, .framer-NSBP1 .framer-1xc5dws, .framer-NSBP1 .framer-9j3zpd, .framer-NSBP1 .framer-pox45p { height: 180px; } .framer-NSBP1 .framer-1wf0qu4 { padding: 10px; } .framer-NSBP1 .framer-t2gb2a { gap: 45px; width: 600px; } .framer-NSBP1 .framer-gioymx { flex-direction: column; width: 600px; } .framer-NSBP1 .framer-1yavd1i { height: var(--framer-aspect-ratio-supported, 43px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NSBP1 .framer-15j6ovo, .framer-NSBP1 .framer-13ba6kc, .framer-NSBP1 .framer-16j2ghb, .framer-NSBP1 .framer-t2gb2a, .framer-NSBP1 .framer-gioymx { gap: 0px; } .framer-NSBP1 .framer-15j6ovo > *, .framer-NSBP1 .framer-13ba6kc > *, .framer-NSBP1 .framer-16j2ghb > *, .framer-NSBP1 .framer-gioymx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NSBP1 .framer-15j6ovo > :first-child, .framer-NSBP1 .framer-13ba6kc > :first-child, .framer-NSBP1 .framer-16j2ghb > :first-child, .framer-NSBP1 .framer-t2gb2a > :first-child, .framer-NSBP1 .framer-gioymx > :first-child { margin-top: 0px; } .framer-NSBP1 .framer-15j6ovo > :last-child, .framer-NSBP1 .framer-13ba6kc > :last-child, .framer-NSBP1 .framer-16j2ghb > :last-child, .framer-NSBP1 .framer-t2gb2a > :last-child, .framer-NSBP1 .framer-gioymx > :last-child { margin-bottom: 0px; } .framer-NSBP1 .framer-t2gb2a > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } }}\",\"@media (max-width: 809px) { .framer-NSBP1.framer-f1b2aa { width: 390px; } .framer-NSBP1 .framer-jls600 { padding: 48px 24px 40px 24px; } .framer-NSBP1 .framer-vqkth8, .framer-NSBP1 .framer-1ln0dsw, .framer-NSBP1 .framer-x2x5g4, .framer-NSBP1 .framer-1xgk77n, .framer-NSBP1 .framer-jo2lpo, .framer-NSBP1 .framer-fxyllr-container, .framer-NSBP1 .framer-z6vd5g, .framer-NSBP1 .framer-111eoi2-container, .framer-NSBP1 .framer-8is3zc, .framer-NSBP1 .framer-1bfk5w-container, .framer-NSBP1 .framer-gmfjt6, .framer-NSBP1 .framer-1i7s3rb, .framer-NSBP1 .framer-1ixj51o-container, .framer-NSBP1 .framer-f0trsz, .framer-NSBP1 .framer-ns6n64, .framer-NSBP1 .framer-1vwapsu, .framer-NSBP1 .framer-1s803f7, .framer-NSBP1 .framer-ahd622-container { width: 100%; } .framer-NSBP1 .framer-10prk6g { --border-bottom-width: 0.2px; --border-left-width: 0.2px; --border-right-width: 0.2px; --border-top-width: 0.2px; height: var(--framer-aspect-ratio-supported, 12px); width: 12px; } .framer-NSBP1 .framer-rr1sgx { flex: 1 0 0px; width: 1px; } .framer-NSBP1 .framer-o5k91u-container, .framer-NSBP1 .framer-1fvig2b-container { height: var(--framer-aspect-ratio-supported, 15px); width: 12px; } .framer-NSBP1 .framer-6d8aqj, .framer-NSBP1 .framer-43qb8g, .framer-NSBP1 .framer-1mxadaa, .framer-NSBP1 .framer-erre66, .framer-NSBP1 .framer-wq9pqy, .framer-NSBP1 .framer-4a9ejz, .framer-NSBP1 .framer-qgmaa2, .framer-NSBP1 .framer-xkzx5e, .framer-NSBP1 .framer-11nbs0j, .framer-NSBP1 .framer-8xlrvx, .framer-NSBP1 .framer-b2d50r, .framer-NSBP1 .framer-rh39m6 { padding: 40px 24px 40px 24px; } .framer-NSBP1 .framer-1rmwebl { height: var(--framer-aspect-ratio-supported, 202px); } .framer-NSBP1 .framer-18h1ips { height: var(--framer-aspect-ratio-supported, 115px); } .framer-NSBP1 .framer-13hj3c3 { height: 120px; } .framer-NSBP1 .framer-1shckev, .framer-NSBP1 .framer-8jntjw, .framer-NSBP1 .framer-11t1cle { height: min-content; } .framer-NSBP1 .framer-f7ii8r, .framer-NSBP1 .framer-ikxvtj { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-NSBP1 .framer-1kulyg1, .framer-NSBP1 .framer-ya8j6w, .framer-NSBP1 .framer-1i9rehp, .framer-NSBP1 .framer-13i308l, .framer-NSBP1 .framer-743czr { padding: 20px 24px 20px 24px; } .framer-NSBP1 .framer-1xmzct8 { gap: 24px; width: 100%; } .framer-NSBP1 .framer-15j6ovo, .framer-NSBP1 .framer-13ba6kc, .framer-NSBP1 .framer-16j2ghb { flex-direction: column; padding: 0px; } .framer-NSBP1 .framer-v6r6xa, .framer-NSBP1 .framer-1wu4p7v, .framer-NSBP1 .framer-r05u8k, .framer-NSBP1 .framer-1rr5q40, .framer-NSBP1 .framer-1239ftd, .framer-NSBP1 .framer-1wbram6 { flex: none; width: 100%; } .framer-NSBP1 .framer-btaijj, .framer-NSBP1 .framer-w1d1wr { flex: none; height: 200px; } .framer-NSBP1 .framer-mtcexa, .framer-NSBP1 .framer-197jjfi { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 207px; } .framer-NSBP1 .framer-xxo99x, .framer-NSBP1 .framer-1wf0qu4 { padding: 0px; } .framer-NSBP1 .framer-1im4yiu, .framer-NSBP1 .framer-40elp { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-NSBP1 .framer-f1uidp, .framer-NSBP1 .framer-1qtq9t4, .framer-NSBP1 .framer-oscv2d, .framer-NSBP1 .framer-1dw021e, .framer-NSBP1 .framer-k8sqm0, .framer-NSBP1 .framer-4zv7aa { flex-direction: column; } .framer-NSBP1 .framer-1j0o96n, .framer-NSBP1 .framer-rs9p0f { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 211px; width: 100%; } .framer-NSBP1 .framer-1cnkin1, .framer-NSBP1 .framer-lzl9lv, .framer-NSBP1 .framer-17zcy87, .framer-NSBP1 .framer-4i2a1, .framer-NSBP1 .framer-obfgei, .framer-NSBP1 .framer-1xc5dws, .framer-NSBP1 .framer-9j3zpd, .framer-NSBP1 .framer-pox45p { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 204px; width: 100%; } .framer-NSBP1 .framer-18h7v3w, .framer-NSBP1 .framer-1e60j0w { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 205px; width: 100%; } .framer-NSBP1 .framer-ekyiws { padding: 10px 24px 10px 24px; width: 100%; } .framer-NSBP1 .framer-1omrnzq { padding: 0px 24px 40px 24px; } .framer-NSBP1 .framer-t2gb2a { gap: 45px; width: 100%; } .framer-NSBP1 .framer-jrf5jn { flex-direction: column; padding: 40px 24px 40px 24px; } .framer-NSBP1 .framer-gioymx { flex-direction: column; width: 100%; } .framer-NSBP1 .framer-ha710s { flex: none; padding: 0px; width: 100%; } .framer-NSBP1 .framer-1u6py4q { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; padding: 12px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NSBP1 .framer-1xmzct8, .framer-NSBP1 .framer-15j6ovo, .framer-NSBP1 .framer-13ba6kc, .framer-NSBP1 .framer-f1uidp, .framer-NSBP1 .framer-1qtq9t4, .framer-NSBP1 .framer-oscv2d, .framer-NSBP1 .framer-1dw021e, .framer-NSBP1 .framer-k8sqm0, .framer-NSBP1 .framer-4zv7aa, .framer-NSBP1 .framer-16j2ghb, .framer-NSBP1 .framer-t2gb2a, .framer-NSBP1 .framer-jrf5jn, .framer-NSBP1 .framer-gioymx { gap: 0px; } .framer-NSBP1 .framer-1xmzct8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NSBP1 .framer-1xmzct8 > :first-child, .framer-NSBP1 .framer-15j6ovo > :first-child, .framer-NSBP1 .framer-13ba6kc > :first-child, .framer-NSBP1 .framer-f1uidp > :first-child, .framer-NSBP1 .framer-1qtq9t4 > :first-child, .framer-NSBP1 .framer-oscv2d > :first-child, .framer-NSBP1 .framer-1dw021e > :first-child, .framer-NSBP1 .framer-k8sqm0 > :first-child, .framer-NSBP1 .framer-4zv7aa > :first-child, .framer-NSBP1 .framer-16j2ghb > :first-child, .framer-NSBP1 .framer-t2gb2a > :first-child, .framer-NSBP1 .framer-jrf5jn > :first-child, .framer-NSBP1 .framer-gioymx > :first-child { margin-top: 0px; } .framer-NSBP1 .framer-1xmzct8 > :last-child, .framer-NSBP1 .framer-15j6ovo > :last-child, .framer-NSBP1 .framer-13ba6kc > :last-child, .framer-NSBP1 .framer-f1uidp > :last-child, .framer-NSBP1 .framer-1qtq9t4 > :last-child, .framer-NSBP1 .framer-oscv2d > :last-child, .framer-NSBP1 .framer-1dw021e > :last-child, .framer-NSBP1 .framer-k8sqm0 > :last-child, .framer-NSBP1 .framer-4zv7aa > :last-child, .framer-NSBP1 .framer-16j2ghb > :last-child, .framer-NSBP1 .framer-t2gb2a > :last-child, .framer-NSBP1 .framer-jrf5jn > :last-child, .framer-NSBP1 .framer-gioymx > :last-child { margin-bottom: 0px; } .framer-NSBP1 .framer-15j6ovo > *, .framer-NSBP1 .framer-13ba6kc > *, .framer-NSBP1 .framer-f1uidp > *, .framer-NSBP1 .framer-1qtq9t4 > *, .framer-NSBP1 .framer-oscv2d > *, .framer-NSBP1 .framer-1dw021e > *, .framer-NSBP1 .framer-k8sqm0 > *, .framer-NSBP1 .framer-4zv7aa > *, .framer-NSBP1 .framer-16j2ghb > *, .framer-NSBP1 .framer-jrf5jn > *, .framer-NSBP1 .framer-gioymx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NSBP1 .framer-t2gb2a > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23736\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xOD6nCGqo\":{\"layout\":[\"fixed\",\"auto\"]},\"Z1r068mLL\":{\"layout\":[\"fixed\",\"auto\"]},\"HzoCn65zP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramerhJ3jwY9Jl=withCSS(Component,css,\"framer-NSBP1\");export default FramerhJ3jwY9Jl;FramerhJ3jwY9Jl.displayName=\"3dthd Vs Sketchup Best Tiny House Design Software\";FramerhJ3jwY9Jl.defaultProps={height:23736,width:1920};addFonts(FramerhJ3jwY9Jl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4S-EiAou6Y.woff2\",weight:\"900\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...NavigationBarHomeFonts,...MaterialFonts,...BTextLinkFonts,...PhosphorFonts,...ElementsAccordionFonts,...CCTATryForFreeFonts,...VideoFonts,...GeneralFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhJ3jwY9Jl\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xOD6nCGqo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z1r068mLL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HzoCn65zP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1920\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"23736\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "color", "height", "id", "question", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AWSjGYVqE", "LkqmyFFrQ", "y1pMpCSSw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1fkgyu", "args", "onTap1qr0qrw", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "ComponentViewportProvider", "ComponentPresetsProvider", "css", "FramershPUWbsE_", "withCSS", "shPUWbsE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "NavigationBarHomeFonts", "getFonts", "M9ba2Xc1X_default", "MaterialFonts", "Icon", "BTextLinkFonts", "nPDkOPDCd_default", "PhosphorFonts", "ElementsAccordionFonts", "shPUWbsE_default", "CCTATryForFreeFonts", "TY0FMcfig_default", "VideoFonts", "Video", "GeneralFooterFonts", "THxHuXp1T_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "SVG", "css", "FramerhJ3jwY9Jl", "withCSS", "hJ3jwY9Jl_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
