{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/TgLfGv8nJM9LYEW3sJvc/1KtXzfM5Gewtd6Aershd/ev8xy9444.js", "ssg:https://framerusercontent.com/modules/fvRguyHkWBIhXsjnYWDf/3oRT3IZptQ1XBFw2wbxu/QS4j5vzH1.js", "ssg:https://framerusercontent.com/modules/9h2FGYsFKIq36kXTout6/PQ6lo3RM40Tc1nV6pXVW/sOWMFtpFI.js", "ssg:https://framerusercontent.com/modules/u119sJFHMBOMumgi3E61/8l804CvDHzeGJDoatBH4/wILl0_9Sl.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";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});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);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();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (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===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,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:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.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:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// 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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nNFF8q4Bijbn7F0UUlWQ/Iicezk71e4sOAGcR7og6/qd3tTC1Qh.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tpUYLaGBJFnvQoS2FAzb/Loi57G9q5hZvRAnCOXXB/uwp_E0w7C.js\";import ButtonForm from\"https://framerusercontent.com/modules/dA39F7Vc5m3JBLwvOnJ3/qCkt6eCI5bDYXCTE5GsB/k7T52SPDd.js\";const ButtonFormFonts=getFonts(ButtonForm);const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"NB8fJR4HC\",\"nGlYvwb23\",\"tS7Ur4yxn\"];const serializationHash=\"framer-MaoOY\";const variantClassNames={NB8fJR4HC:\"framer-v-c1qkjv\",nGlYvwb23:\"framer-v-1okr5he\",tS7Ur4yxn:\"framer-v-y8wt4y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"NB8fJR4HC\",Phone:\"tS7Ur4yxn\",Tablet:\"nGlYvwb23\"};const getProps=({addressColour,height,id,imageVideo,inputBgColour,inputLabelColour,titleColour,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,I9yU8gYV2:(_ref=inputBgColour!==null&&inputBgColour!==void 0?inputBgColour:props.I9yU8gYV2)!==null&&_ref!==void 0?_ref:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",lmKalu6uN:(_ref1=imageVideo!==null&&imageVideo!==void 0?imageVideo:props.lmKalu6uN)!==null&&_ref1!==void 0?_ref1:\"https://framerusercontent.com/assets/MXXvdpdFbprFLBp4RsuivKyaO9M.mp4\",uFsHFiGEA:(_ref2=inputLabelColour!==null&&inputLabelColour!==void 0?inputLabelColour:props.uFsHFiGEA)!==null&&_ref2!==void 0?_ref2:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(87, 72, 69))\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"NB8fJR4HC\",zeiBa_BjV:(_ref4=addressColour!==null&&addressColour!==void 0?addressColour:props.zeiBa_BjV)!==null&&_ref4!==void 0?_ref4:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(87, 72, 69))\",zUq8k8pIu:(_ref5=titleColour!==null&&titleColour!==void 0?titleColour:props.zUq8k8pIu)!==null&&_ref5!==void 0?_ref5:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(87, 72, 69))\"};};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,zUq8k8pIu,zeiBa_BjV,lmKalu6uN,uFsHFiGEA,I9yU8gYV2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NB8fJR4HC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onEnd17bp32f=activeVariantCallback(async(...args)=>{setVariant(\"NB8fJR4HC\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"nGlYvwb23\",\"tS7Ur4yxn\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-c1qkjv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NB8fJR4HC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({nGlYvwb23:{\"data-framer-name\":\"Tablet\"},tS7Ur4yxn:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e5j7fd\",layoutDependency:layoutDependency,layoutId:\"Zk7kRpB7N\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2m2sc\",layoutDependency:layoutDependency,layoutId:\"HIgl7QrI3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1393q9q\",\"data-styles-preset\":\"uwp_E0w7C\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-zUq8k8pIu-ev8xy9444))\"},children:\"Let\u2019s talk about how we can support your home\"})}),className:\"framer-1j29931\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AP3Xs9mTy\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-zUq8k8pIu-ev8xy9444)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-zUq8k8pIu-ev8xy9444\":zUq8k8pIu},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vbl1ci\",\"data-framer-name\":\"Form Box\",layoutDependency:layoutDependency,layoutId:\"bQuPKypdP\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/6c1d258a-39f4-477f-9118-cd03e5955b43/submit\",className:\"framer-w7qrfj\",layoutDependency:layoutDependency,layoutId:\"FEfbRjS7w\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7hjjyh\",layoutDependency:layoutDependency,layoutId:\"cSMg85bre\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1i5f9kh\",layoutDependency:layoutDependency,layoutId:\"Oq9GBMfcz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-komhcw\",\"data-styles-preset\":\"qd3tTC1Qh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-uFsHFiGEA-ev8xy9444))\"},children:\"Name\"})}),className:\"framer-1737dkm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k8GB0a58R\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-uFsHFiGEA-ev8xy9444)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-uFsHFiGEA-ev8xy9444\":uFsHFiGEA},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1yawxpg\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"PKskITh4o\",placeholder:\"Jane Smith\",style:{\"--framer-input-background\":I9yU8gYV2,\"--framer-input-border-radius-bottom-left\":\"12px\",\"--framer-input-border-radius-bottom-right\":\"12px\",\"--framer-input-border-radius-top-left\":\"12px\",\"--framer-input-border-radius-top-right\":\"12px\",\"--framer-input-font-color\":\"var(--token-9a73a47c-9ef5-4aba-b37b-efe545204acd, rgb(51, 51, 51))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-0e2d5f6b-b873-4f15-9668-77abf28b0600, rgb(145, 145, 145))\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-bnm55v\",layoutDependency:layoutDependency,layoutId:\"tJNWMAhF8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-komhcw\",\"data-styles-preset\":\"qd3tTC1Qh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-uFsHFiGEA-ev8xy9444))\"},children:\"Email\"})}),className:\"framer-1mqob8i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"onIWMY501\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-uFsHFiGEA-ev8xy9444)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-uFsHFiGEA-ev8xy9444\":uFsHFiGEA},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-73s3js\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"boSFaG9Y_\",placeholder:\"jane@framer.com\",style:{\"--framer-input-background\":I9yU8gYV2,\"--framer-input-border-radius-bottom-left\":\"12px\",\"--framer-input-border-radius-bottom-right\":\"12px\",\"--framer-input-border-radius-top-left\":\"12px\",\"--framer-input-border-radius-top-right\":\"12px\",\"--framer-input-font-color\":\"var(--token-9a73a47c-9ef5-4aba-b37b-efe545204acd, rgb(51, 51, 51))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-0e2d5f6b-b873-4f15-9668-77abf28b0600, rgb(145, 145, 145))\"},type:\"email\"})]})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1v4faxk\",layoutDependency:layoutDependency,layoutId:\"wLaL0xkAE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-komhcw\",\"data-styles-preset\":\"qd3tTC1Qh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-uFsHFiGEA-ev8xy9444))\"},children:\"Message\"})}),className:\"framer-pj8qvy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"djCkZs8Dx\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-uFsHFiGEA-ev8xy9444)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-uFsHFiGEA-ev8xy9444\":uFsHFiGEA},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1afne4x\",inputName:\"Message\",layoutDependency:layoutDependency,layoutId:\"QI2a1eHSo\",placeholder:\"Your message...\",style:{\"--framer-input-background\":I9yU8gYV2,\"--framer-input-border-radius-bottom-left\":\"12px\",\"--framer-input-border-radius-bottom-right\":\"12px\",\"--framer-input-border-radius-top-left\":\"12px\",\"--framer-input-border-radius-top-right\":\"12px\",\"--framer-input-font-color\":\"var(--token-9a73a47c-9ef5-4aba-b37b-efe545204acd, rgb(51, 51, 51))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-0e2d5f6b-b873-4f15-9668-77abf28b0600, rgb(145, 145, 145))\"},type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px) - 44px) / 2, 1px)`,...addPropertyOverrides({nGlYvwb23:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px)`},tS7Ur4yxn:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v6u4uc-container\",layoutDependency:layoutDependency,layoutId:\"qvnAT8Rim-container\",children:/*#__PURE__*/_jsx(ButtonForm,{height:\"100%\",id:\"qvnAT8Rim\",layoutId:\"qvnAT8Rim\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"LK_sC1q_u\",success:\"ZqpEnnrgv\"},\"NeeXpgls2\"),width:\"100%\"})})})]})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15i45d0\",layoutDependency:layoutDependency,layoutId:\"zpjoK4okx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kk87lx-container\",layoutDependency:layoutDependency,layoutId:\"OfSc8EOr4-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"OfSc8EOr4\",isMixedBorderRadius:false,layoutId:\"OfSc8EOr4\",loop:true,muted:true,objectFit:\"cover\",onEnd:onEnd17bp32f,playing:true,posterEnabled:false,srcFile:lmKalu6uN,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1az7scv\",\"data-framer-name\":\"Address\",layoutDependency:layoutDependency,layoutId:\"CC6DoGHbF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-komhcw\",\"data-styles-preset\":\"qd3tTC1Qh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-zeiBa_BjV-ev8xy9444))\"},children:\"hello@txengo.com\"})}),className:\"framer-1pbm0ys\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"myb7hHtCc\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-zeiBa_BjV-ev8xy9444)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-zeiBa_BjV-ev8xy9444\":zeiBa_BjV},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-komhcw\",\"data-styles-preset\":\"qd3tTC1Qh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-zeiBa_BjV-ev8xy9444))\"},children:\"5 Calvert Avenue, London E2 7JP\"})}),className:\"framer-69lro8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"do_xMdMVW\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-zeiBa_BjV-ev8xy9444)\",\"--variable-reference-zeiBa_BjV-ev8xy9444\":zeiBa_BjV},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-komhcw\",\"data-styles-preset\":\"qd3tTC1Qh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-zeiBa_BjV-ev8xy9444))\"},children:\"+44 (0)20 7059 9786\"})}),className:\"framer-jvjrzu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LGFRQC5Nv\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-zeiBa_BjV-ev8xy9444)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-zeiBa_BjV-ev8xy9444\":zeiBa_BjV},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MaoOY.framer-8702qa, .framer-MaoOY .framer-8702qa { display: block; }\",\".framer-MaoOY.framer-c1qkjv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-MaoOY .framer-e5j7fd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MaoOY .framer-1f2m2sc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-MaoOY .framer-1j29931 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MaoOY .framer-1vbl1ci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MaoOY .framer-w7qrfj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MaoOY .framer-7hjjyh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MaoOY .framer-1i5f9kh, .framer-MaoOY .framer-bnm55v { 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; padding: 0px; position: relative; width: 1px; }\",\".framer-MaoOY .framer-1737dkm, .framer-MaoOY .framer-1mqob8i, .framer-MaoOY .framer-pj8qvy { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",'.framer-MaoOY .framer-1yawxpg, .framer-MaoOY .framer-73s3js { --framer-input-focused-border-color: var(--token-5bb78610-7e66-4cae-99e7-c56efc88cac4, #7669e1); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-MaoOY .framer-1v4faxk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-MaoOY .framer-1afne4x { --framer-input-focused-border-color: var(--token-5bb78610-7e66-4cae-99e7-c56efc88cac4, #7669e1); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Raleway\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-MaoOY .framer-1v6u4uc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MaoOY .framer-15i45d0 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MaoOY .framer-kk87lx-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-MaoOY .framer-1az7scv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MaoOY .framer-1pbm0ys, .framer-MaoOY .framer-69lro8, .framer-MaoOY .framer-jvjrzu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MaoOY.framer-c1qkjv, .framer-MaoOY .framer-e5j7fd, .framer-MaoOY .framer-1f2m2sc, .framer-MaoOY .framer-1vbl1ci, .framer-MaoOY .framer-w7qrfj, .framer-MaoOY .framer-7hjjyh, .framer-MaoOY .framer-1i5f9kh, .framer-MaoOY .framer-bnm55v, .framer-MaoOY .framer-1v4faxk, .framer-MaoOY .framer-15i45d0, .framer-MaoOY .framer-1az7scv { gap: 0px; } .framer-MaoOY.framer-c1qkjv > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-MaoOY.framer-c1qkjv > :first-child, .framer-MaoOY .framer-1f2m2sc > :first-child, .framer-MaoOY .framer-1vbl1ci > :first-child, .framer-MaoOY .framer-w7qrfj > :first-child, .framer-MaoOY .framer-1i5f9kh > :first-child, .framer-MaoOY .framer-bnm55v > :first-child, .framer-MaoOY .framer-1v4faxk > :first-child, .framer-MaoOY .framer-15i45d0 > :first-child, .framer-MaoOY .framer-1az7scv > :first-child { margin-top: 0px; } .framer-MaoOY.framer-c1qkjv > :last-child, .framer-MaoOY .framer-1f2m2sc > :last-child, .framer-MaoOY .framer-1vbl1ci > :last-child, .framer-MaoOY .framer-w7qrfj > :last-child, .framer-MaoOY .framer-1i5f9kh > :last-child, .framer-MaoOY .framer-bnm55v > :last-child, .framer-MaoOY .framer-1v4faxk > :last-child, .framer-MaoOY .framer-15i45d0 > :last-child, .framer-MaoOY .framer-1az7scv > :last-child { margin-bottom: 0px; } .framer-MaoOY .framer-e5j7fd > * { margin: 0px; margin-left: calc(44px / 2); margin-right: calc(44px / 2); } .framer-MaoOY .framer-e5j7fd > :first-child, .framer-MaoOY .framer-7hjjyh > :first-child { margin-left: 0px; } .framer-MaoOY .framer-e5j7fd > :last-child, .framer-MaoOY .framer-7hjjyh > :last-child { margin-right: 0px; } .framer-MaoOY .framer-1f2m2sc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-MaoOY .framer-1vbl1ci > *, .framer-MaoOY .framer-1i5f9kh > *, .framer-MaoOY .framer-bnm55v > *, .framer-MaoOY .framer-1v4faxk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MaoOY .framer-w7qrfj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MaoOY .framer-7hjjyh > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-MaoOY .framer-15i45d0 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-MaoOY .framer-1az7scv > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-MaoOY.framer-v-1okr5he.framer-c1qkjv { width: 670px; }\",\".framer-MaoOY.framer-v-1okr5he .framer-e5j7fd, .framer-MaoOY.framer-v-y8wt4y .framer-e5j7fd, .framer-MaoOY.framer-v-y8wt4y .framer-7hjjyh { flex-direction: column; }\",\".framer-MaoOY.framer-v-1okr5he .framer-1f2m2sc, .framer-MaoOY.framer-v-y8wt4y .framer-1f2m2sc, .framer-MaoOY.framer-v-y8wt4y .framer-1i5f9kh, .framer-MaoOY.framer-v-y8wt4y .framer-bnm55v { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MaoOY.framer-v-1okr5he .framer-e5j7fd { gap: 0px; } .framer-MaoOY.framer-v-1okr5he .framer-e5j7fd > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-MaoOY.framer-v-1okr5he .framer-e5j7fd > :first-child { margin-top: 0px; } .framer-MaoOY.framer-v-1okr5he .framer-e5j7fd > :last-child { margin-bottom: 0px; } }\",\".framer-MaoOY.framer-v-y8wt4y.framer-c1qkjv { width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MaoOY.framer-v-y8wt4y .framer-e5j7fd, .framer-MaoOY.framer-v-y8wt4y .framer-7hjjyh { gap: 0px; } .framer-MaoOY.framer-v-y8wt4y .framer-e5j7fd > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-MaoOY.framer-v-y8wt4y .framer-e5j7fd > :first-child, .framer-MaoOY.framer-v-y8wt4y .framer-7hjjyh > :first-child { margin-top: 0px; } .framer-MaoOY.framer-v-y8wt4y .framer-e5j7fd > :last-child, .framer-MaoOY.framer-v-y8wt4y .framer-7hjjyh > :last-child { margin-bottom: 0px; } .framer-MaoOY.framer-v-y8wt4y .framer-7hjjyh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 484\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nGlYvwb23\":{\"layout\":[\"fixed\",\"auto\"]},\"tS7Ur4yxn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zUq8k8pIu\":\"titleColour\",\"zeiBa_BjV\":\"addressColour\",\"lmKalu6uN\":\"imageVideo\",\"uFsHFiGEA\":\"inputLabelColour\",\"I9yU8gYV2\":\"inputBgColour\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerev8xy9444=withCSS(Component,css,\"framer-MaoOY\");export default Framerev8xy9444;Framerev8xy9444.displayName=\"Section/Apato Contact\";Framerev8xy9444.defaultProps={height:484,width:1100};addPropertyControls(Framerev8xy9444,{variant:{options:[\"NB8fJR4HC\",\"nGlYvwb23\",\"tS7Ur4yxn\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},zUq8k8pIu:{defaultValue:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(87, 72, 69))\",title:\"Title Colour\",type:ControlType.Color},zeiBa_BjV:{defaultValue:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(87, 72, 69))\",title:\"Address Colour\",type:ControlType.Color},lmKalu6uN:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcFile\"])&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,MXXvdpdFbprFLBp4RsuivKyaO9M.mp4?originalFilename=5353260-hd_1080_1920_25fps.mp4\",description:undefined,hidden:undefined,title:\"Image/Video\"},uFsHFiGEA:{defaultValue:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(87, 72, 69))\",title:\"Input Label Colour\",type:ControlType.Color},I9yU8gYV2:{defaultValue:'var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255)) /* {\"name\":\"txengo-bg\"} */',title:\"Input Bg Colour\",type:ControlType.Color}});addFonts(Framerev8xy9444,[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5N7AW67SFRYDQX4PD7CVQBBKU4KFZBF6/IRJRILZOM2VYFNQSOPRIBLLVGYQMZYXX/VHOUC36AWF2BXBRYVUE5TB5CZAVHYGQV.woff2\",weight:\"500\"}]},...ButtonFormFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerev8xy9444\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"484\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nGlYvwb23\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tS7Ur4yxn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"zUq8k8pIu\\\":\\\"titleColour\\\",\\\"zeiBa_BjV\\\":\\\"addressColour\\\",\\\"lmKalu6uN\\\":\\\"imageVideo\\\",\\\"uFsHFiGEA\\\":\\\"inputLabelColour\\\",\\\"I9yU8gYV2\\\":\\\"inputBgColour\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/foRgDorp5l8nBtNM8PNT/j4g4WY8WjqHJ3jCSMUBD/PwOYRWBuf.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"qWql7qjMX\",\"Pdr1XxYZk\"];const serializationHash=\"framer-ROZhe\";const variantClassNames={Pdr1XxYZk:\"framer-v-1rlp5xt\",qWql7qjMX:\"framer-v-1nf2spo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"qWql7qjMX\",Underline:\"Pdr1XxYZk\"};const getProps=({color,height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,kjWafoz_W:(_ref=color!==null&&color!==void 0?color:props.kjWafoz_W)!==null&&_ref!==void 0?_ref:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"qWql7qjMX\",Wdf80MlbU:(_ref2=title!==null&&title!==void 0?title:props.Wdf80MlbU)!==null&&_ref2!==void 0?_ref2:\"Artistic.\"};};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,Wdf80MlbU,kjWafoz_W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qWql7qjMX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nf2spo\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"qWql7qjMX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Pdr1XxYZk:{\"data-framer-name\":\"Underline\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vl42pb\",layoutDependency:layoutDependency,layoutId:\"zx9yoliEz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1plfro0\",\"data-styles-preset\":\"PwOYRWBuf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-kjWafoz_W-QS4j5vzH1))\"},children:\"Artistic.\"})}),className:\"framer-yqo4f2\",\"data-framer-name\":\"We specialize in transforming residential interiors, commercial venues, and aviation projects, delivering exceptional quality tailored to your needs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lCyxLZixq\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-kjWafoz_W-QS4j5vzH1)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-kjWafoz_W-QS4j5vzH1\":kjWafoz_W},text:Wdf80MlbU,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1la1mxc\",layoutDependency:layoutDependency,layoutId:\"cq9CACX3o\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18yz9f6\",layoutDependency:layoutDependency,layoutId:\"qhGGkjXUN\",style:{backgroundColor:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\"}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ROZhe.framer-1abh5st, .framer-ROZhe .framer-1abh5st { display: block; }\",\".framer-ROZhe.framer-1nf2spo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZhe .framer-vl42pb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZhe .framer-yqo4f2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ROZhe .framer-1la1mxc { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-ROZhe .framer-18yz9f6 { flex: none; height: 2px; overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ROZhe.framer-1nf2spo, .framer-ROZhe .framer-vl42pb, .framer-ROZhe .framer-1la1mxc { gap: 0px; } .framer-ROZhe.framer-1nf2spo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ROZhe.framer-1nf2spo > :first-child, .framer-ROZhe .framer-1la1mxc > :first-child { margin-top: 0px; } .framer-ROZhe.framer-1nf2spo > :last-child, .framer-ROZhe .framer-1la1mxc > :last-child { margin-bottom: 0px; } .framer-ROZhe .framer-vl42pb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ROZhe .framer-vl42pb > :first-child { margin-left: 0px; } .framer-ROZhe .framer-vl42pb > :last-child { margin-right: 0px; } .framer-ROZhe .framer-1la1mxc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-ROZhe.framer-v-1rlp5xt .framer-18yz9f6 { width: 14px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 62\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Pdr1XxYZk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Wdf80MlbU\":\"title\",\"kjWafoz_W\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQS4j5vzH1=withCSS(Component,css,\"framer-ROZhe\");export default FramerQS4j5vzH1;FramerQS4j5vzH1.displayName=\"Footer/Apato Titles\";FramerQS4j5vzH1.defaultProps={height:30,width:62};addPropertyControls(FramerQS4j5vzH1,{variant:{options:[\"qWql7qjMX\",\"Pdr1XxYZk\"],optionTitles:[\"Default\",\"Underline\"],title:\"Variant\",type:ControlType.Enum},Wdf80MlbU:{defaultValue:\"Artistic.\",displayTextArea:false,title:\"Title\",type:ControlType.String},kjWafoz_W:{defaultValue:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",title:\"Color\",type:ControlType.Color}});addFonts(FramerQS4j5vzH1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQS4j5vzH1\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"30\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"62\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Pdr1XxYZk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Wdf80MlbU\\\":\\\"title\\\",\\\"kjWafoz_W\\\":\\\"color\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/fv6VSjK8tQTY96OrWpiN/UldMTROwYVGb8H08M9cH/PDW_GtvxB.js\";import FooterLink from\"https://framerusercontent.com/modules/a8EEGJrM0FZZ5JkWYWev/NXrtnuWhtU1qHxC9lN6q/n1lmwW_6R.js\";import UnderscoreName from\"https://framerusercontent.com/modules/fvRguyHkWBIhXsjnYWDf/3oRT3IZptQ1XBFw2wbxu/QS4j5vzH1.js\";const FooterLinkFonts=getFonts(FooterLink);const UnderscoreNameFonts=getFonts(UnderscoreName);const cycleOrder=[\"dsjaOzZZI\",\"CyYu5O5ZW\",\"cFQWkPZUF\"];const serializationHash=\"framer-4pdVB\";const variantClassNames={cFQWkPZUF:\"framer-v-1a26tbl\",CyYu5O5ZW:\"framer-v-35gci3\",dsjaOzZZI:\"framer-v-1bulhc5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"dsjaOzZZI\",Phone:\"cFQWkPZUF\",Tablet:\"CyYu5O5ZW\"};const getProps=({addressColour,categoryHeadersColour,height,id,linkColour,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,bdMuSZ1Y8:(_ref=addressColour!==null&&addressColour!==void 0?addressColour:props.bdMuSZ1Y8)!==null&&_ref!==void 0?_ref:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(168, 205, 240))\",T2Avr_gR8:(_ref1=categoryHeadersColour!==null&&categoryHeadersColour!==void 0?categoryHeadersColour:props.T2Avr_gR8)!==null&&_ref1!==void 0?_ref1:\"var(--token-0e2d5f6b-b873-4f15-9668-77abf28b0600, rgb(145, 145, 145))\",v2GpuqE6u:(_ref2=linkColour!==null&&linkColour!==void 0?linkColour:props.v2GpuqE6u)!==null&&_ref2!==void 0?_ref2:\"var(--token-a930bb74-f6f4-42ad-b1e7-ea0a7606ca3c, rgb(175, 216, 254))\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"dsjaOzZZI\"};};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,bdMuSZ1Y8,v2GpuqE6u,T2Avr_gR8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dsjaOzZZI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"cFQWkPZUF\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bulhc5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dsjaOzZZI\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-d7e82a63-6275-451e-9e51-da16d2cc7cc5, rgb(195, 219, 98))\",...style},...addPropertyOverrides({cFQWkPZUF:{\"data-framer-name\":\"Phone\"},CyYu5O5ZW:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wlrb88\",\"data-framer-name\":\"Section\",layoutDependency:layoutDependency,layoutId:\"TgrEu70i4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xcpnef\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"kbCzQl9Ig\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ndtlmr\",\"data-framer-name\":\"Address\",layoutDependency:layoutDependency,layoutId:\"eVQqqma3X\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-97zhdq\",layoutDependency:layoutDependency,layoutId:\"ynGksB12c\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19bsr4j\",layoutDependency:layoutDependency,layoutId:\"PZfm6WyLI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15v5p7\",\"data-styles-preset\":\"PDW_GtvxB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bdMuSZ1Y8-sOWMFtpFI))\"},children:\"hello@txengo.com\"})}),className:\"framer-1r4gizl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mIXvI6FSJ\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bdMuSZ1Y8-sOWMFtpFI)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-bdMuSZ1Y8-sOWMFtpFI\":bdMuSZ1Y8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15v5p7\",\"data-styles-preset\":\"PDW_GtvxB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bdMuSZ1Y8-sOWMFtpFI))\"},children:\"5 Calvert Avenue, London E2 7JP\"})}),className:\"framer-fpvdk5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Dwu1Peiof\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bdMuSZ1Y8-sOWMFtpFI)\",\"--variable-reference-bdMuSZ1Y8-sOWMFtpFI\":bdMuSZ1Y8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15v5p7\",\"data-styles-preset\":\"PDW_GtvxB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bdMuSZ1Y8-sOWMFtpFI))\"},children:\"+44 (0)20 7059 9786\"})}),className:\"framer-1olx61w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zphZoMSe6\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bdMuSZ1Y8-sOWMFtpFI)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-bdMuSZ1Y8-sOWMFtpFI\":bdMuSZ1Y8},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uz13j5\",layoutDependency:layoutDependency,layoutId:\"MZa9Q5DvG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wl7a0e\",layoutDependency:layoutDependency,layoutId:\"tNiKLxc2b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15v5p7\",\"data-styles-preset\":\"PDW_GtvxB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-T2Avr_gR8-sOWMFtpFI))\"},children:\"Projects\"})}),className:\"framer-1eo8zpk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q8bxdRZJa\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-T2Avr_gR8-sOWMFtpFI)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-T2Avr_gR8-sOWMFtpFI\":T2Avr_gR8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fqTM0wOOr\"},implicitPathVariables:undefined},{href:{webPageId:\"fqTM0wOOr\"},implicitPathVariables:undefined},{href:{webPageId:\"fqTM0wOOr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+30,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+30},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iitpmn-container\",layoutDependency:layoutDependency,layoutId:\"XYjrr4ymF-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"XYjrr4ymF\",layoutId:\"XYjrr4ymF\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Hospitality\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DatWsd2dU\"},implicitPathVariables:undefined},{href:{webPageId:\"DatWsd2dU\"},implicitPathVariables:undefined},{href:{webPageId:\"DatWsd2dU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+59,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+59},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+59}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2n8veb-container\",layoutDependency:layoutDependency,layoutId:\"p_7TY5dwS-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"p_7TY5dwS\",layoutId:\"p_7TY5dwS\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks1[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Residential\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks1[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vUrAqgoAj\"},implicitPathVariables:undefined},{href:{webPageId:\"vUrAqgoAj\"},implicitPathVariables:undefined},{href:{webPageId:\"vUrAqgoAj\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+88,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+88},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dx3rd7-container\",layoutDependency:layoutDependency,layoutId:\"cBeencGv2-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"cBeencGv2\",layoutId:\"cBeencGv2\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks2[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Luxury Travel\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks2[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MzbYQAEkb\"},implicitPathVariables:undefined},{href:{webPageId:\"MzbYQAEkb\"},implicitPathVariables:undefined},{href:{webPageId:\"MzbYQAEkb\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+117,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+117},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+117}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5m9875-container\",layoutDependency:layoutDependency,layoutId:\"ngOfG2T2i-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"ngOfG2T2i\",layoutId:\"ngOfG2T2i\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks3[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Apato\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks3[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12nr0ed\",layoutDependency:layoutDependency,layoutId:\"RhqwdGrL5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15v5p7\",\"data-styles-preset\":\"PDW_GtvxB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-T2Avr_gR8-sOWMFtpFI))\"},children:\"Txengo\"})}),className:\"framer-1dk0vou\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XNnHkPdHm\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-T2Avr_gR8-sOWMFtpFI)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-T2Avr_gR8-sOWMFtpFI\":T2Avr_gR8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EBt5iv2fI\"},implicitPathVariables:undefined},{href:{webPageId:\"EBt5iv2fI\"},implicitPathVariables:undefined},{href:{webPageId:\"EBt5iv2fI\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+30,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+30},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11jnoja-container\",layoutDependency:layoutDependency,layoutId:\"T0fDv1c6w-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"T0fDv1c6w\",layoutId:\"T0fDv1c6w\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks4[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"About Us\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks4[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+59,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+59},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+59}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xh3gdi-container\",layoutDependency:layoutDependency,layoutId:\"P9f4N65Qc-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"P9f4N65Qc\",layoutId:\"P9f4N65Qc\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:\"https://www.instagram.com/txengo/?hl=en\",variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Instagram\",ZP7knmw9U:v2GpuqE6u})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+88,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+88},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ae5tdj-container\",layoutDependency:layoutDependency,layoutId:\"QbiI04wbv-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"QbiI04wbv\",layoutId:\"QbiI04wbv\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:\"https://www.linkedin.com/company/txengo/?originalSubdomain=uk\",variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Linkedin\",ZP7knmw9U:v2GpuqE6u})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{vNJjITI8p:\"privacy-policy\"},unresolvedPathSlugs:{vNJjITI8p:{collectionId:\"XhrbuAsgl\",collectionItemId:\"z2oAC6N7X\"}},webPageId:\"cVu2Z92H3\"},implicitPathVariables:undefined},{href:{pathVariables:{vNJjITI8p:\"privacy-policy\"},unresolvedPathSlugs:{vNJjITI8p:{collectionId:\"XhrbuAsgl\",collectionItemId:\"z2oAC6N7X\"}},webPageId:\"cVu2Z92H3\"},implicitPathVariables:undefined},{href:{pathVariables:{vNJjITI8p:\"privacy-policy\"},unresolvedPathSlugs:{vNJjITI8p:{collectionId:\"XhrbuAsgl\",collectionItemId:\"z2oAC6N7X\"}},webPageId:\"cVu2Z92H3\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+117,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+117},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+117}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9f6h1z-container\",layoutDependency:layoutDependency,layoutId:\"la7mIb9bv-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"la7mIb9bv\",layoutId:\"la7mIb9bv\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks5[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Privacy\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks5[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ethb24\",layoutDependency:layoutDependency,layoutId:\"nWoYSDBCH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15v5p7\",\"data-styles-preset\":\"PDW_GtvxB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-T2Avr_gR8-sOWMFtpFI))\"},children:\"Curated\"})}),className:\"framer-lhw37x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NpZ2_pysF\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-T2Avr_gR8-sOWMFtpFI)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-T2Avr_gR8-sOWMFtpFI\":T2Avr_gR8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XdZG2qfID\"},implicitPathVariables:undefined},{href:{webPageId:\"XdZG2qfID\"},implicitPathVariables:undefined},{href:{webPageId:\"XdZG2qfID\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+30,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+30},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16r0m3k-container\",layoutDependency:layoutDependency,layoutId:\"NuizrvJYT-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"NuizrvJYT\",layoutId:\"NuizrvJYT\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks6[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Collect Art\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks6[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mn_ltVzrG\"},implicitPathVariables:undefined},{href:{webPageId:\"mn_ltVzrG\"},implicitPathVariables:undefined},{href:{webPageId:\"mn_ltVzrG\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+50+0+0+59,...addPropertyOverrides({cFQWkPZUF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+0+25+120+0+0+59},CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+0+0+0+25+0+0+59}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kdtp2x-container\",layoutDependency:layoutDependency,layoutId:\"fEvRqCxXT-container\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"fEvRqCxXT\",layoutId:\"fEvRqCxXT\",lSSTAAR5N:\"var(--token-64289e6f-4dc9-4f54-8d10-c7f0cd08ab73, rgb(255, 255, 255))\",style:{height:\"100%\"},U6R4tdCF8:resolvedLinks7[0],variant:\"VYgxwUQvX\",width:\"100%\",xR6_4fmrv:\"Blog\",ZP7knmw9U:v2GpuqE6u,...addPropertyOverrides({cFQWkPZUF:{U6R4tdCF8:resolvedLinks7[2]},CyYu5O5ZW:{U6R4tdCF8:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nlbpj4\",layoutDependency:layoutDependency,layoutId:\"wskqXHAMf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+270+-1,...addPropertyOverrides({CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+207+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-106bwgy-container\",layoutDependency:layoutDependency,layoutId:\"wLMfbhCDf-container\",children:/*#__PURE__*/_jsx(UnderscoreName,{height:\"100%\",id:\"wLMfbhCDf\",kjWafoz_W:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",layoutId:\"wLMfbhCDf\",variant:\"qWql7qjMX\",Wdf80MlbU:\"Artistic.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+270+-1,...addPropertyOverrides({CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+207+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3fviwe-container\",layoutDependency:layoutDependency,layoutId:\"UySq2xozI-container\",children:/*#__PURE__*/_jsx(UnderscoreName,{height:\"100%\",id:\"UySq2xozI\",kjWafoz_W:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",layoutId:\"UySq2xozI\",variant:\"qWql7qjMX\",Wdf80MlbU:\"Personalised.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+270+-1,...addPropertyOverrides({CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+207+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2dzza9-container\",layoutDependency:layoutDependency,layoutId:\"K7M4MnxhK-container\",children:/*#__PURE__*/_jsx(UnderscoreName,{height:\"100%\",id:\"K7M4MnxhK\",kjWafoz_W:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",layoutId:\"K7M4MnxhK\",variant:\"qWql7qjMX\",Wdf80MlbU:\"Aesthethic\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+270+-1,...addPropertyOverrides({CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+207+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1buu9hq-container\",layoutDependency:layoutDependency,layoutId:\"TOg4VuKUy-container\",children:/*#__PURE__*/_jsx(UnderscoreName,{height:\"100%\",id:\"TOg4VuKUy\",kjWafoz_W:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",layoutId:\"TOg4VuKUy\",variant:\"qWql7qjMX\",Wdf80MlbU:\"Tailored\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+270+-1,...addPropertyOverrides({CyYu5O5ZW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+44+207+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hvzx7k-container\",layoutDependency:layoutDependency,layoutId:\"J4y7TRnHc-container\",children:/*#__PURE__*/_jsx(UnderscoreName,{height:\"100%\",id:\"J4y7TRnHc\",kjWafoz_W:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(176, 216, 254))\",layoutId:\"J4y7TRnHc\",variant:\"qWql7qjMX\",Wdf80MlbU:\"Optimised\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a5g6ow\",layoutDependency:layoutDependency,layoutId:\"KRmRYdjbV\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1edtp4z\",\"data-framer-name\":\"Apato_Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Bw5iWrt1M\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1358 416\"><path d=\"M 200.903 85.591 L 203.437 84.584 L 203.437 66.866 L 260.112 66.866 L 260.112 319.899 L 203.435 319.899 L 203.435 294.083 L 200.401 293.077 C 184.207 311.802 156.383 324.961 121.967 324.961 C 54.162 324.961 0 266.761 0 193.39 C 0 120.021 56.173 61.819 127.014 61.819 C 160.925 61.819 184.191 71.442 200.905 85.608 L 200.905 85.588 Z M 203.437 238.935 L 203.437 130.648 C 186.237 117.489 161.932 109.394 134.103 109.394 C 91.593 109.394 56.675 145.834 56.675 193.39 C 56.675 240.945 91.593 277.388 134.105 277.388 C 162.451 277.388 188.75 266.761 203.435 238.935 Z M 352.105 301.677 L 352.105 413.786 L 295.427 413.786 L 295.427 66.864 L 352.105 66.864 L 352.105 92.158 L 355.139 93.165 C 371.332 74.945 398.152 61.786 432.566 61.786 C 500.892 61.786 554.533 119.985 554.533 193.356 C 554.533 266.725 498.864 324.927 427.521 324.927 C 393.61 324.927 370.844 316.327 352.121 301.643 Z M 352.105 143.788 L 352.105 261.697 C 368.8 271.823 392.586 277.388 420.43 277.388 C 462.939 277.388 497.858 240.945 497.858 193.39 C 497.858 145.834 462.939 109.391 420.43 109.391 C 392.603 109.391 366.789 118.493 352.105 143.805 Z M 790.961 85.591 L 793.493 84.584 L 793.493 66.866 L 850.168 66.866 L 850.168 319.899 L 793.493 319.899 L 793.493 294.083 L 790.459 293.077 C 774.266 311.802 746.439 324.961 712.025 324.961 C 644.218 324.961 590.058 266.761 590.058 193.39 C 590.058 120.021 646.231 61.819 717.072 61.819 C 750.981 61.819 774.249 71.442 790.961 85.608 L 790.961 85.588 Z M 793.493 238.935 L 793.493 130.648 C 776.293 117.489 751.988 109.394 724.161 109.394 C 681.651 109.394 646.733 145.834 646.733 193.39 C 646.733 240.945 681.651 277.388 724.161 277.388 C 752.507 277.388 778.808 266.761 793.493 238.935 Z M 1066.26 311.802 C 1052.077 318.893 1032.867 322.431 1014.125 322.431 C 963.016 322.431 924.059 290.029 924.059 232.346 L 924.059 112.413 L 885.084 112.413 L 885.084 66.868 C 889.26 66.877 893.41 66.209 897.373 64.891 C 901.519 64.037 905.611 62.934 909.626 61.59 C 910.462 61.303 911.302 61.001 912.138 60.7 C 913.81 60.097 915.465 59.449 917.102 58.756 C 922.37 56.537 927.459 53.914 932.322 50.91 C 932.841 50.592 933.362 50.274 933.864 49.953 C 935.406 49 936.915 47.993 938.39 46.972 C 951.281 38.088 962.53 26.94 972.101 13.53 C 975.216 9.179 978.093 4.663 980.717 0 L 980.717 66.866 L 1049.545 66.866 L 1049.545 112.411 L 980.717 112.411 L 980.717 230.318 C 980.717 260.175 997.429 272.829 1020.193 272.829 C 1033.856 272.829 1046.511 271.304 1056.118 267.263 L 1066.243 311.802 Z M 1221.865 61.802 C 1299.295 61.802 1357.998 120.004 1357.998 193.373 C 1357.998 266.744 1299.295 324.944 1221.865 324.944 C 1144.438 324.944 1086.237 266.744 1086.237 193.373 C 1086.237 120.004 1144.942 61.805 1221.865 61.805 Z M 1221.865 277.388 C 1266.909 277.388 1301.323 240.945 1301.323 193.39 C 1301.323 145.837 1266.909 109.394 1221.865 109.394 C 1176.824 109.394 1142.912 146.339 1142.912 193.39 C 1142.912 240.443 1177.326 277.388 1221.865 277.388 Z\" fill=\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(168, 205, 240)) /* {&quot;name&quot;:&quot;apato-blue&quot;} */\"></path></svg>',svgContentId:11131887286,withExternalLayout:true,...addPropertyOverrides({cFQWkPZUF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 448 137\"><path d=\"M 66.277 28.187 L 67.113 27.856 L 67.113 22.021 L 85.81 22.021 L 85.81 105.351 L 67.112 105.351 L 67.112 96.85 L 66.112 96.518 C 60.769 102.685 51.59 107.018 40.236 107.018 C 17.868 107.018 0 87.852 0 63.688 C 0 39.526 18.531 20.359 41.901 20.359 C 53.089 20.359 60.764 23.528 66.278 28.193 L 66.278 28.187 Z M 67.113 78.688 L 67.113 43.026 C 61.439 38.692 53.421 36.026 44.24 36.026 C 30.216 36.026 18.697 48.027 18.697 63.688 C 18.697 79.35 30.216 91.351 44.241 91.351 C 53.592 91.351 62.268 87.852 67.112 78.688 Z M 116.158 99.35 L 116.158 136.271 L 97.461 136.271 L 97.461 22.02 L 116.158 22.02 L 116.158 30.35 L 117.159 30.682 C 122.501 24.681 131.349 20.348 142.702 20.348 C 165.243 20.348 182.939 39.514 182.939 63.677 C 182.939 87.84 164.574 107.007 141.038 107.007 C 129.851 107.007 122.34 104.175 116.164 99.339 Z M 116.158 47.353 L 116.158 86.184 C 121.666 89.518 129.513 91.351 138.699 91.351 C 152.722 91.351 164.242 79.35 164.242 63.688 C 164.242 48.027 152.722 36.025 138.699 36.025 C 129.519 36.025 121.003 39.023 116.158 47.359 Z M 260.936 28.187 L 261.771 27.856 L 261.771 22.021 L 280.468 22.021 L 280.468 105.351 L 261.771 105.351 L 261.771 96.85 L 260.77 96.518 C 255.428 102.685 246.248 107.018 234.895 107.018 C 212.526 107.018 194.658 87.852 194.658 63.688 C 194.658 39.526 213.19 20.359 236.56 20.359 C 247.746 20.359 255.422 23.528 260.936 28.193 L 260.936 28.187 Z M 261.771 78.688 L 261.771 43.026 C 256.097 38.692 248.078 36.026 238.898 36.026 C 224.875 36.026 213.355 48.027 213.355 63.688 C 213.355 79.35 224.875 91.351 238.898 91.351 C 248.25 91.351 256.926 87.852 261.771 78.688 Z M 351.756 102.685 C 347.077 105.02 340.739 106.185 334.557 106.185 C 317.696 106.185 304.844 95.514 304.844 76.518 L 304.844 37.021 L 291.986 37.021 L 291.986 22.022 C 293.364 22.024 294.733 21.805 296.04 21.37 C 297.408 21.089 298.758 20.726 300.083 20.283 C 300.359 20.189 300.636 20.089 300.912 19.99 C 301.463 19.792 302.009 19.578 302.549 19.35 C 304.287 18.619 305.966 17.755 307.57 16.766 C 307.741 16.661 307.913 16.557 308.079 16.451 C 308.588 16.137 309.085 15.805 309.572 15.469 C 313.825 12.543 317.536 8.872 320.693 4.456 C 321.721 3.023 322.67 1.536 323.536 0 L 323.536 22.021 L 346.242 22.021 L 346.242 37.02 L 323.536 37.02 L 323.536 75.85 C 323.536 85.682 329.049 89.85 336.558 89.85 C 341.066 89.85 345.241 89.348 348.41 88.017 L 351.75 102.685 Z M 403.09 20.353 C 428.633 20.353 447.999 39.521 447.999 63.683 C 447.999 87.846 428.633 107.013 403.09 107.013 C 377.546 107.013 358.346 87.846 358.346 63.683 C 358.346 39.521 377.713 20.354 403.09 20.354 Z M 403.09 91.351 C 417.949 91.351 429.302 79.35 429.302 63.688 C 429.302 48.028 417.949 36.026 403.09 36.026 C 388.231 36.026 377.043 48.193 377.043 63.688 C 377.043 79.184 388.396 91.351 403.09 91.351 Z\" fill=\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(168, 205, 240)) /* {&quot;name&quot;:&quot;apato-blue&quot;} */\"></path></svg>',svgContentId:11045484818},CyYu5O5ZW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 816 250\"><path d=\"M 120.719 51.437 L 122.242 50.832 L 122.242 40.184 L 156.297 40.184 L 156.297 192.247 L 122.241 192.247 L 122.241 176.733 L 120.417 176.128 C 110.687 187.381 93.968 195.289 73.288 195.289 C 32.545 195.289 0 160.313 0 116.22 C 0 72.128 33.753 37.151 76.32 37.151 C 96.697 37.151 110.677 42.934 120.721 51.447 L 120.721 51.435 Z M 122.242 143.591 L 122.242 78.514 C 111.907 70.606 97.302 65.741 80.58 65.741 C 55.037 65.741 34.055 87.641 34.055 116.22 C 34.055 144.799 55.037 166.7 80.581 166.7 C 97.614 166.7 113.417 160.313 122.241 143.591 Z M 211.574 181.296 L 211.574 248.67 L 177.517 248.67 L 177.517 40.182 L 211.574 40.182 L 211.574 55.384 L 213.397 55.989 C 223.127 45.039 239.243 37.131 259.922 37.131 C 300.978 37.131 333.21 72.106 333.21 116.2 C 333.21 160.292 299.759 195.269 256.891 195.269 C 236.514 195.269 222.834 190.101 211.584 181.276 Z M 211.574 86.411 L 211.574 157.27 C 221.606 163.355 235.899 166.7 252.63 166.7 C 278.173 166.7 299.154 144.799 299.154 116.22 C 299.154 87.641 278.173 65.74 252.63 65.74 C 235.909 65.74 220.398 71.21 211.574 86.421 Z M 475.275 51.437 L 476.797 50.832 L 476.797 40.184 L 510.852 40.184 L 510.852 192.247 L 476.797 192.247 L 476.797 176.733 L 474.974 176.128 C 465.244 187.381 448.523 195.289 427.844 195.289 C 387.1 195.289 354.556 160.313 354.556 116.22 C 354.556 72.128 388.31 37.151 430.877 37.151 C 451.252 37.151 465.233 42.934 475.275 51.447 L 475.275 51.435 Z M 476.797 143.591 L 476.797 78.514 C 466.462 70.606 451.857 65.741 435.136 65.741 C 409.593 65.741 388.611 87.641 388.611 116.22 C 388.611 144.799 409.593 166.7 435.136 166.7 C 452.169 166.7 467.973 160.313 476.797 143.591 Z M 640.698 187.381 C 632.176 191.642 620.633 193.769 609.371 193.769 C 578.66 193.769 555.252 174.296 555.252 139.631 L 555.252 67.556 L 531.832 67.556 L 531.832 40.185 C 534.342 40.191 536.835 39.789 539.217 38.997 C 541.708 38.484 544.167 37.821 546.579 37.013 C 547.082 36.841 547.586 36.659 548.089 36.478 C 549.094 36.116 550.088 35.727 551.071 35.31 C 554.237 33.977 557.295 32.4 560.217 30.595 C 560.529 30.404 560.842 30.213 561.144 30.02 C 562.07 29.447 562.977 28.842 563.863 28.228 C 571.609 22.889 578.369 16.19 584.119 8.131 C 585.992 5.516 587.72 2.802 589.297 0 L 589.297 40.184 L 630.654 40.184 L 630.654 67.555 L 589.297 67.555 L 589.297 138.412 C 589.297 156.355 599.339 163.96 613.017 163.96 C 621.227 163.96 628.831 163.043 634.604 160.615 L 640.688 187.381 Z M 734.199 37.141 C 780.725 37.141 815.999 72.118 815.999 116.21 C 815.999 160.303 780.725 195.279 734.199 195.279 C 687.674 195.279 652.702 160.303 652.702 116.21 C 652.702 72.118 687.977 37.142 734.199 37.142 Z M 734.199 166.7 C 761.265 166.7 781.943 144.799 781.943 116.22 C 781.943 87.642 761.265 65.741 734.199 65.741 C 707.134 65.741 686.757 87.944 686.757 116.22 C 686.757 144.497 707.436 166.7 734.199 166.7 Z\" fill=\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(168, 205, 240)) /* {&quot;name&quot;:&quot;apato-blue&quot;} */\"></path></svg>',svgContentId:8625298347}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4pdVB.framer-sgrxlz, .framer-4pdVB .framer-sgrxlz { display: block; }\",\".framer-4pdVB.framer-1bulhc5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 44px 72px 330px 72px; position: relative; width: 1440px; }\",\".framer-4pdVB .framer-1wlrb88 { 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: 0px; position: relative; width: 100%; }\",\".framer-4pdVB .framer-xcpnef { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4pdVB .framer-1ndtlmr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4pdVB .framer-97zhdq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 245px; }\",\".framer-4pdVB .framer-19bsr4j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4pdVB .framer-1r4gizl, .framer-4pdVB .framer-fpvdk5, .framer-4pdVB .framer-1olx61w, .framer-4pdVB .framer-1eo8zpk, .framer-4pdVB .framer-1dk0vou, .framer-4pdVB .framer-lhw37x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4pdVB .framer-1uz13j5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4pdVB .framer-wl7a0e, .framer-4pdVB .framer-12nr0ed, .framer-4pdVB .framer-1ethb24 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4pdVB .framer-iitpmn-container, .framer-4pdVB .framer-2n8veb-container, .framer-4pdVB .framer-dx3rd7-container, .framer-4pdVB .framer-5m9875-container, .framer-4pdVB .framer-11jnoja-container, .framer-4pdVB .framer-xh3gdi-container, .framer-4pdVB .framer-1ae5tdj-container, .framer-4pdVB .framer-9f6h1z-container, .framer-4pdVB .framer-16r0m3k-container, .framer-4pdVB .framer-kdtp2x-container { flex: none; height: 19px; position: relative; width: auto; }\",\".framer-4pdVB .framer-nlbpj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 28px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4pdVB .framer-106bwgy-container, .framer-4pdVB .framer-3fviwe-container, .framer-4pdVB .framer-2dzza9-container, .framer-4pdVB .framer-1buu9hq-container, .framer-4pdVB .framer-1hvzx7k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4pdVB .framer-a5g6ow { bottom: -142px; flex: none; height: 416px; left: calc(50.00000000000002% - 1358px / 2); overflow: hidden; position: absolute; width: 1358px; z-index: 1; }\",\".framer-4pdVB .framer-1edtp4z { flex: none; height: 416px; left: calc(50.00000000000002% - 1358px / 2); position: absolute; top: calc(50.00000000000002% - 416px / 2); width: 1358px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4pdVB.framer-1bulhc5, .framer-4pdVB .framer-1wlrb88, .framer-4pdVB .framer-xcpnef, .framer-4pdVB .framer-1ndtlmr, .framer-4pdVB .framer-97zhdq, .framer-4pdVB .framer-19bsr4j, .framer-4pdVB .framer-wl7a0e, .framer-4pdVB .framer-12nr0ed, .framer-4pdVB .framer-1ethb24 { gap: 0px; } .framer-4pdVB.framer-1bulhc5 > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-4pdVB.framer-1bulhc5 > :first-child, .framer-4pdVB .framer-1wlrb88 > :first-child, .framer-4pdVB .framer-1ndtlmr > :first-child, .framer-4pdVB .framer-97zhdq > :first-child, .framer-4pdVB .framer-19bsr4j > :first-child, .framer-4pdVB .framer-wl7a0e > :first-child, .framer-4pdVB .framer-12nr0ed > :first-child, .framer-4pdVB .framer-1ethb24 > :first-child { margin-top: 0px; } .framer-4pdVB.framer-1bulhc5 > :last-child, .framer-4pdVB .framer-1wlrb88 > :last-child, .framer-4pdVB .framer-1ndtlmr > :last-child, .framer-4pdVB .framer-97zhdq > :last-child, .framer-4pdVB .framer-19bsr4j > :last-child, .framer-4pdVB .framer-wl7a0e > :last-child, .framer-4pdVB .framer-12nr0ed > :last-child, .framer-4pdVB .framer-1ethb24 > :last-child { margin-bottom: 0px; } .framer-4pdVB .framer-1wlrb88 > *, .framer-4pdVB .framer-97zhdq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-4pdVB .framer-xcpnef > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4pdVB .framer-xcpnef > :first-child { margin-left: 0px; } .framer-4pdVB .framer-xcpnef > :last-child { margin-right: 0px; } .framer-4pdVB .framer-1ndtlmr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-4pdVB .framer-19bsr4j > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-4pdVB .framer-wl7a0e > *, .framer-4pdVB .framer-12nr0ed > *, .framer-4pdVB .framer-1ethb24 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-4pdVB.framer-v-35gci3.framer-1bulhc5 { gap: 46px; padding: 44px 32px 270px 32px; width: 670px; }\",\".framer-4pdVB.framer-v-35gci3 .framer-1wlrb88, .framer-4pdVB.framer-v-1a26tbl .framer-1wlrb88, .framer-4pdVB.framer-v-1a26tbl .framer-19bsr4j { order: 0; }\",\".framer-4pdVB.framer-v-35gci3 .framer-xcpnef { padding: 25px 0px 0px 0px; }\",\".framer-4pdVB.framer-v-35gci3 .framer-nlbpj4 { order: 1; }\",\".framer-4pdVB.framer-v-35gci3 .framer-a5g6ow { order: 2; }\",\".framer-4pdVB.framer-v-35gci3 .framer-1edtp4z { height: 250px; left: calc(50.00000000000002% - 816px / 2); top: calc(50.00000000000002% - 250px / 2); width: 816px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4pdVB.framer-v-35gci3.framer-1bulhc5 { gap: 0px; } .framer-4pdVB.framer-v-35gci3.framer-1bulhc5 > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-4pdVB.framer-v-35gci3.framer-1bulhc5 > :first-child { margin-top: 0px; } .framer-4pdVB.framer-v-35gci3.framer-1bulhc5 > :last-child { margin-bottom: 0px; } }\",\".framer-4pdVB.framer-v-1a26tbl.framer-1bulhc5 { padding: 24px 16px 140px 16px; width: 390px; }\",\".framer-4pdVB.framer-v-1a26tbl .framer-xcpnef { flex-direction: column; gap: 44px; padding: 25px 0px 0px 0px; }\",\".framer-4pdVB.framer-v-1a26tbl .framer-1ndtlmr, .framer-4pdVB.framer-v-1a26tbl .framer-1uz13j5 { flex: none; width: 100%; }\",\".framer-4pdVB.framer-v-1a26tbl .framer-97zhdq { width: 100%; }\",\".framer-4pdVB.framer-v-1a26tbl .framer-a5g6ow { align-content: center; align-items: center; bottom: -40px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -29px; order: 1; padding: 0px; right: -29px; width: unset; }\",\".framer-4pdVB.framer-v-1a26tbl .framer-1edtp4z { height: 137px; left: unset; position: relative; top: unset; width: 448px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4pdVB.framer-v-1a26tbl .framer-xcpnef, .framer-4pdVB.framer-v-1a26tbl .framer-a5g6ow { gap: 0px; } .framer-4pdVB.framer-v-1a26tbl .framer-xcpnef > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-4pdVB.framer-v-1a26tbl .framer-xcpnef > :first-child, .framer-4pdVB.framer-v-1a26tbl .framer-a5g6ow > :first-child { margin-top: 0px; } .framer-4pdVB.framer-v-1a26tbl .framer-xcpnef > :last-child, .framer-4pdVB.framer-v-1a26tbl .framer-a5g6ow > :last-child { margin-bottom: 0px; } .framer-4pdVB.framer-v-1a26tbl .framer-a5g6ow > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 672\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CyYu5O5ZW\":{\"layout\":[\"fixed\",\"auto\"]},\"cFQWkPZUF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bdMuSZ1Y8\":\"addressColour\",\"v2GpuqE6u\":\"linkColour\",\"T2Avr_gR8\":\"categoryHeadersColour\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersOWMFtpFI=withCSS(Component,css,\"framer-4pdVB\");export default FramersOWMFtpFI;FramersOWMFtpFI.displayName=\"Footer/Apato\";FramersOWMFtpFI.defaultProps={height:672,width:1440};addPropertyControls(FramersOWMFtpFI,{variant:{options:[\"dsjaOzZZI\",\"CyYu5O5ZW\",\"cFQWkPZUF\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},bdMuSZ1Y8:{defaultValue:\"var(--token-00c5d19b-36df-4930-b9db-4ac033ba1542, rgb(168, 205, 240))\",title:\"Address Colour\",type:ControlType.Color},v2GpuqE6u:{defaultValue:\"var(--token-a930bb74-f6f4-42ad-b1e7-ea0a7606ca3c, rgb(175, 216, 254))\",title:\"Link Colour\",type:ControlType.Color},T2Avr_gR8:{defaultValue:\"var(--token-0e2d5f6b-b873-4f15-9668-77abf28b0600, rgb(145, 145, 145))\",title:\"Category Headers Colour\",type:ControlType.Color}});addFonts(FramersOWMFtpFI,[{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\"}]},...FooterLinkFonts,...UnderscoreNameFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersOWMFtpFI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"672\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CyYu5O5ZW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cFQWkPZUF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"bdMuSZ1Y8\\\":\\\"addressColour\\\",\\\"v2GpuqE6u\\\":\\\"linkColour\\\",\\\"T2Avr_gR8\\\":\\\"categoryHeadersColour\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Raleway-500\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Raleway\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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\"}]}];export const css=['.framer-pwWFP .framer-styles-preset-mvo0hc:not(.rich-text-wrapper), .framer-pwWFP .framer-styles-preset-mvo0hc.rich-text-wrapper h2 { --framer-font-family: \"Raleway\", \"Raleway Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-pwWFP\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ButtonFormFonts", "getFonts", "k7T52SPDd_default", "VideoFonts", "Video", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "addressColour", "height", "id", "imageVideo", "inputBgColour", "inputLabelColour", "titleColour", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zUq8k8pIu", "zeiBa_BjV", "lmKalu6uN", "uFsHFiGEA", "I9yU8gYV2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onEnd17bp32f", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "FormContainer", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "css", "Framerev8xy9444", "withCSS", "ev8xy9444_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Wdf80MlbU", "kjWafoz_W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerQS4j5vzH1", "withCSS", "QS4j5vzH1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FooterLinkFonts", "getFonts", "n1lmwW_6R_default", "UnderscoreNameFonts", "QS4j5vzH1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "addressColour", "categoryHeadersColour", "height", "id", "linkColour", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "bdMuSZ1Y8", "v2GpuqE6u", "T2Avr_gR8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "SVG", "css", "FramersOWMFtpFI", "withCSS", "sOWMFtpFI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
