{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/3qv3et5BEbc9kfLlnPgW/XLBv2W5a7i76EbZ3ibMV/AUA3UuQNu.js", "ssg:https://framerusercontent.com/modules/hJwzKZguYLlu6DrdL3FN/vHipKCthkK0ECnvsl1Jr/nbSzgPBnv.js", "ssg:https://framerusercontent.com/modules/1z0Mj5K5BJG2kgDiwRye/peYVSg1S1TNHA9W38oUv/vJc8P_kY8.js", "ssg:https://framerusercontent.com/modules/2MFgu56Vn5MEUr0bNAHs/6lwO9BDhll3q4aZelGr0/augiA20Il.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===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&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=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay: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:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.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=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options: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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3ahXz9hVd1KY6TFokiZu/WJFj03FiEUKW2drwvkvr/fgijnI4_p.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hgKnCAZUMA7JyVY13K1x/G6jbhdIOjDr3b01recPW/ScuSmT7Q9.js\";const enabledGestures={vuDv6RXz0:{hover:true}};const cycleOrder=[\"vuDv6RXz0\",\"ajimPh1Tw\"];const serializationHash=\"framer-0jpBa\";const variantClassNames={ajimPh1Tw:\"framer-v-7kiz4r\",vuDv6RXz0:\"framer-v-1jkgd8r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:20,delay:0,mass:1,stiffness:300,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"vuDv6RXz0\",Mobile:\"ajimPh1Tw\"};const getProps=({height,id,image,link,number,text,width,...props})=>{return{...props,ddUN3HNhh:text??props.ddUN3HNhh??\"Interior Design\",nAnKYJCIO:link??props.nAnKYJCIO,variant:humanReadableVariantMap[props.variant]??props.variant??\"vuDv6RXz0\",whNDt_sW8:image??props.whNDt_sW8??{src:\"https://framerusercontent.com/images/q2m07VpQ659mnRaWGr9jHvtvO70.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/q2m07VpQ659mnRaWGr9jHvtvO70.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/q2m07VpQ659mnRaWGr9jHvtvO70.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/q2m07VpQ659mnRaWGr9jHvtvO70.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/q2m07VpQ659mnRaWGr9jHvtvO70.jpg 3979w\"},YCQIgSung:number??props.YCQIgSung??\"01\"};};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,YCQIgSung,ddUN3HNhh,whNDt_sW8,nAnKYJCIO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vuDv6RXz0\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ajimPh1Tw\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:nAnKYJCIO,nodeId:\"vuDv6RXz0\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1jkgd8r\",className,classNames)} framer-dmy77p`,\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"vuDv6RXz0\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},variants:{\"vuDv6RXz0-hover\":{\"--border-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\",\"--border-top-width\":\"4px\"}},...addPropertyOverrides({\"vuDv6RXz0-hover\":{\"data-framer-name\":undefined},ajimPh1Tw:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7ojdj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"PTQCCA0kb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99)))\"},children:\"01\"})}),className:\"framer-12fpfrw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CnzmZLPHO\",style:{\"--extracted-r6o4lv\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YCQIgSung,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-syu38p\",\"data-styles-preset\":\"ScuSmT7Q9\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99)))\"},children:\"Architectural Design\"})}),className:\"framer-x5j3di\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kUESovs1A\",style:{\"--extracted-a0htzi\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},text:ddUN3HNhh,variants:{\"vuDv6RXz0-hover\":{\"--extracted-a0htzi\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\",opacity:1},ajimPh1Tw:{\"--extracted-a0htzi\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"vuDv6RXz0-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-syu38p\",\"data-styles-preset\":\"ScuSmT7Q9\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32)))\"},children:\"Architectural Design\"})})},ajimPh1Tw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-syu38p\",\"data-styles-preset\":\"ScuSmT7Q9\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32)))\"},children:\"Architectural Design\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:523,intrinsicWidth:430,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.5000000000000002-175)),pixelHeight:523,pixelWidth:430,sizes:\"288px\",...toResponsiveImage(whNDt_sW8)},className:\"framer-whmxv9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"r1h9Dyn8l\",style:{opacity:0,rotate:11},variants:{\"vuDv6RXz0-hover\":{opacity:1,rotate:0}},...addPropertyOverrides({\"vuDv6RXz0-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1620,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.5000000000000002-213)),pixelHeight:1620,pixelWidth:1080,sizes:\"351px\",...toResponsiveImage(whNDt_sW8)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kkfyd2\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"GjuCtvrdw\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yza00e\",\"data-framer-name\":\"Arrow-up\",layoutDependency:layoutDependency,layoutId:\"yc_ZZPNsR\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ghcp33\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VyWQXXPcL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:10176611840,withExternalLayout:true,...addPropertyOverrides({\"vuDv6RXz0-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 30 0 C 46.569 0 60 13.431 60 30 C 60 46.569 46.569 60 30 60 C 13.431 60 0 46.569 0 30 C 0 13.431 13.431 0 30 0 Z\" fill=\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:10548754366}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4aixl\",\"data-framer-name\":\"Arrow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qyy6m90_s\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 0.815 30 C 0.815 13.882 13.882 0.815 30 0.815 C 46.118 0.815 59.185 13.882 59.185 30 C 59.185 46.118 46.118 59.185 30 59.185 C 13.882 59.185 0.815 46.118 0.815 30 Z\" fill=\"transparent\" stroke-width=\"1.629\" stroke=\"rgb(99,99,99)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 37.69 24.488 L 36.705 33.801 C 36.641 34.316 36.182 34.688 35.665 34.643 C 35.419 34.622 35.192 34.504 35.034 34.315 C 34.875 34.126 34.798 33.882 34.82 33.636 L 35.566 26.593 L 22.607 37.265 C 22.413 37.425 22.163 37.503 21.912 37.482 C 21.664 37.46 21.434 37.34 21.276 37.147 C 21.117 36.955 21.043 36.707 21.069 36.459 C 21.096 36.208 21.221 35.978 21.416 35.818 L 34.374 25.146 L 27.319 24.528 C 27.067 24.51 26.834 24.391 26.671 24.198 C 26.509 24.005 26.432 23.754 26.46 23.503 C 26.487 23.249 26.614 23.017 26.813 22.857 C 27.011 22.697 27.265 22.622 27.518 22.647 L 36.848 23.464 C 37.097 23.486 37.326 23.606 37.484 23.799 C 37.643 23.992 37.717 24.24 37.691 24.488 Z\" fill=\"rgb(99,99,99)\"></path></svg>',svgContentId:10749430687,withExternalLayout:true,...addPropertyOverrides({\"vuDv6RXz0-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 0.815 30 C 0.815 13.882 13.882 0.815 30 0.815 C 46.118 0.815 59.185 13.882 59.185 30 C 59.185 46.118 46.118 59.185 30 59.185 C 13.882 59.185 0.815 46.118 0.815 30 Z\" fill=\"transparent\" stroke-width=\"1.629\" stroke=\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 37.69 24.488 L 36.705 33.801 C 36.641 34.316 36.182 34.688 35.665 34.643 C 35.419 34.622 35.192 34.504 35.034 34.315 C 34.875 34.126 34.798 33.882 34.82 33.636 L 35.566 26.593 L 22.607 37.265 C 22.413 37.425 22.163 37.503 21.912 37.482 C 21.664 37.46 21.434 37.34 21.276 37.147 C 21.117 36.955 21.043 36.707 21.069 36.459 C 21.096 36.208 21.221 35.978 21.416 35.818 L 34.374 25.146 L 27.319 24.528 C 27.067 24.51 26.834 24.391 26.671 24.198 C 26.509 24.005 26.432 23.754 26.46 23.503 C 26.487 23.249 26.614 23.017 26.813 22.857 C 27.011 22.697 27.265 22.622 27.518 22.647 L 36.848 23.464 C 37.097 23.486 37.326 23.606 37.484 23.799 C 37.643 23.992 37.717 24.24 37.691 24.488 Z\" fill=\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245)) /* {&quot;name&quot;:&quot;Cream&quot;} */\"></path></svg>',svgContentId:9562832742}},baseVariant,gestureVariant)})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0jpBa.framer-dmy77p, .framer-0jpBa .framer-dmy77p { display: block; }\",\".framer-0jpBa.framer-1jkgd8r { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 50px 0px 50px 0px; position: relative; text-decoration: none; width: 1720px; }\",\".framer-0jpBa .framer-1y7ojdj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0jpBa .framer-12fpfrw, .framer-0jpBa .framer-x5j3di { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0jpBa .framer-whmxv9 { flex: none; height: 350px; overflow: visible; position: absolute; right: 522px; top: calc(50.00000000000002% - 350px / 2); width: 288px; z-index: 1; }\",\".framer-0jpBa .framer-kkfyd2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60px; }\",\".framer-0jpBa .framer-1yza00e { flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; }\",\".framer-0jpBa .framer-1ghcp33 { bottom: -60px; flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; width: 60px; }\",\".framer-0jpBa .framer-1y4aixl { flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 60px / 2); width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0jpBa .framer-1y7ojdj, .framer-0jpBa .framer-kkfyd2 { gap: 0px; } .framer-0jpBa .framer-1y7ojdj > *, .framer-0jpBa .framer-kkfyd2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0jpBa .framer-1y7ojdj > :first-child, .framer-0jpBa .framer-kkfyd2 > :first-child { margin-left: 0px; } .framer-0jpBa .framer-1y7ojdj > :last-child, .framer-0jpBa .framer-kkfyd2 > :last-child { margin-right: 0px; } }\",\".framer-0jpBa.framer-v-7kiz4r.framer-1jkgd8r { align-content: flex-start; align-items: flex-start; cursor: unset; flex-direction: column; gap: 30px; justify-content: flex-start; width: 390px; }\",\".framer-0jpBa.framer-v-7kiz4r .framer-1y7ojdj { flex-direction: column; width: 100%; }\",\".framer-0jpBa.framer-v-7kiz4r .framer-x5j3di { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0jpBa.framer-v-7kiz4r.framer-1jkgd8r, .framer-0jpBa.framer-v-7kiz4r .framer-1y7ojdj { gap: 0px; } .framer-0jpBa.framer-v-7kiz4r.framer-1jkgd8r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0jpBa.framer-v-7kiz4r.framer-1jkgd8r > :first-child, .framer-0jpBa.framer-v-7kiz4r .framer-1y7ojdj > :first-child { margin-top: 0px; } .framer-0jpBa.framer-v-7kiz4r.framer-1jkgd8r > :last-child, .framer-0jpBa.framer-v-7kiz4r .framer-1y7ojdj > :last-child { margin-bottom: 0px; } .framer-0jpBa.framer-v-7kiz4r .framer-1y7ojdj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-0jpBa.framer-v-1jkgd8r.hover .framer-whmxv9 { height: 426px; right: 490px; top: calc(50.00000000000002% - 426px / 2); width: 351px; }\",\".framer-0jpBa.framer-v-1jkgd8r.hover .framer-1ghcp33 { bottom: 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-0jpBa[data-border=\"true\"]::after, .framer-0jpBa [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 177\n * @framerIntrinsicWidth 1720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ajimPh1Tw\":{\"layout\":[\"fixed\",\"auto\"]},\"sseqGE_o9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YCQIgSung\":\"number\",\"ddUN3HNhh\":\"text\",\"whNDt_sW8\":\"image\",\"nAnKYJCIO\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAUA3UuQNu=withCSS(Component,css,\"framer-0jpBa\");export default FramerAUA3UuQNu;FramerAUA3UuQNu.displayName=\"Service Item v1\";FramerAUA3UuQNu.defaultProps={height:177,width:1720};addPropertyControls(FramerAUA3UuQNu,{variant:{options:[\"vuDv6RXz0\",\"ajimPh1Tw\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},YCQIgSung:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String},ddUN3HNhh:{defaultValue:\"Interior Design\",displayTextArea:false,title:\"Text\",type:ControlType.String},whNDt_sW8:{__defaultAssetReference:\"data:framer/asset-reference,q2m07VpQ659mnRaWGr9jHvtvO70.jpg?originalFilename=f548f42368bb5497802045ea5f19f052.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},nAnKYJCIO:{title:\"Link\",type:ControlType.Link}});addFonts(FramerAUA3UuQNu,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAUA3UuQNu\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ajimPh1Tw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sseqGE_o9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"177\",\"framerIntrinsicWidth\":\"1720\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"YCQIgSung\\\":\\\"number\\\",\\\"ddUN3HNhh\\\":\\\"text\\\",\\\"whNDt_sW8\\\":\\\"image\\\",\\\"nAnKYJCIO\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AUA3UuQNu.map", "// Generated by Framer (d894e1b)\nimport{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{addFonts as r,addPropertyControls as a,ControlType as n,cx as i,Image as o,RichText as l,useLocaleInfo as s,useVariantState as d,withCSS as m}from\"framer\";import{LayoutGroup as p,motion as c,MotionConfigContext as f}from\"framer-motion\";import*as h from\"react\";import*as u from\"https://framerusercontent.com/modules/gJrv8SuV8x5szyhchX7I/4quV4ZwaLBaJ48vmx1PC/EkcJCN_ee.js\";import*as g from\"https://framerusercontent.com/modules/e83dAW2EcAdAepPFJZ9l/8iffDj9F5zWBZzW0A3ew/heOoeJ1WZ.js\";import*as x from\"https://framerusercontent.com/modules/xayf2Hyri9Fik7ekmj0G/e3U8iNwZDFIu4wWrmQ6V/tvVjcrvpd.js\";let y=[\"oxDutCA2x\"],w=\"framer-RHBxi\",v={oxDutCA2x:\"framer-v-h8if5u\"};function b(e,...t){let r={};return null==t||t.forEach(t=>t&&Object.assign(r,e[t])),r;}let k={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},H=e=>\"object\"==typeof e&&null!==e&&\"string\"==typeof e.src?e:\"string\"==typeof e?{src:e}:void 0,R=({value:t,children:r})=>{let a=h.useContext(f),n=null!=t?t:a.transition,i=h.useMemo(()=>({...a,transition:n}),[JSON.stringify(n)]);return /*#__PURE__*/e(f.Provider,{value:i,children:r});},S=({clientName:e,height:t,highlight:r,id:a,image:n,text:i,width:o,...l})=>{var s,d,m,p;return{...l,KGDoud13Y:null!==(s=null!=r?r:l.KGDoud13Y)&&void 0!==s?s:\"Neon Studio elevated our Retail Store and I could not be happier with the result. \",nl60AVbtv:null!==(d=null!=n?n:l.nl60AVbtv)&&void 0!==d?d:{src:\"https://framerusercontent.com/images/naq8TlSSKUQMCejuqSR7wHuo.png\",srcSet:\"https://framerusercontent.com/images/naq8TlSSKUQMCejuqSR7wHuo.png?scale-down-to=512 512w, https://framerusercontent.com/images/naq8TlSSKUQMCejuqSR7wHuo.png 808w\"},UemZHJY7n:null!==(m=null!=e?e:l.UemZHJY7n)&&void 0!==m?m:\"Grace - Glory Retail, Arkansas\",vMhTnmFcZ:null!==(p=null!=i?i:l.vMhTnmFcZ)&&void 0!==p?p:\"When we decided to design our fashion boutique, we knew that we needed something exceptional to make us stand out in the crowded retail landscape. Neon Studio exceeded our expectations at every step of the way.  From the very first consultation, their team demonstrated an in-depth understanding of our vision and brand identity. They crafted concepts and designs that not only matched our branding but also seamlessly integrated with the layout of our store.  The end result was nothing short of spectacular. With over 20 neon signs strategically placed throughout our store, Neon Studio not only enhanced wayfinding but also transformed our visual merchandising displays into eye-catching works of art. \"};},N=(e,t)=>t.join(\"-\")+e.layoutDependency,B=/*#__PURE__*/h.forwardRef(function(r,a){let{activeLocale:n}=s(),{style:m,className:f,layoutId:w,variant:b,nl60AVbtv:B,KGDoud13Y:C,vMhTnmFcZ:D,UemZHJY7n:T,...A}=S(r),{baseVariant:I,classNames:j,gestureVariant:z,setGestureState:q,setVariant:V,transition:_,variants:F}=d({cycleOrder:y,defaultVariant:\"oxDutCA2x\",transitions:k,variant:b,variantClassNames:v}),G=N(r,F),K=h.useRef(null),M=h.useId(),J=[u.className,g.className,x.className];return /*#__PURE__*/e(p,{id:null!=w?w:M,children:/*#__PURE__*/e(c.div,{initial:b,animate:F,onHoverStart:()=>q({isHovered:!0}),onHoverEnd:()=>q({isHovered:!1}),onTapStart:()=>q({isPressed:!0}),onTap:()=>q({isPressed:!1}),onTapCancel:()=>q({isPressed:!1}),className:i(\"framer-RHBxi\",...J,j),style:{display:\"contents\"},children:/*#__PURE__*/e(R,{value:_,children:/*#__PURE__*/e(c.div,{...A,className:i(\"framer-h8if5u\",f),\"data-framer-name\":\"Desktop\",layoutDependency:G,layoutId:\"oxDutCA2x\",ref:null!=a?a:K,style:{...m},children:/*#__PURE__*/t(c.div,{className:\"framer-15ovfd3\",\"data-framer-name\":\"Text\",layoutDependency:G,layoutId:\"rcPeQ8thg\",children:[/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(c.h4,{className:\"framer-styles-preset-txrmkf\",\"data-styles-preset\":\"EkcJCN_ee\",children:\"I hired Archies to design and build my dream home, and I could not be happier with the result.\"})}),className:\"framer-5crftt\",layoutDependency:G,layoutId:\"psDMX652z\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:C,verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(c.h6,{className:\"framer-styles-preset-9zymk0\",\"data-styles-preset\":\"heOoeJ1WZ\",children:\"From the initial consultation to the final walk-through, the Archies team was professional, attentive, and a pleasure to work with. They took the time to listen to my needs and preferences, and they brought their expertise to the table to create a home that is not only beautiful but also functional and sustainable. I was especially impressed by their attention to detail and their ability to incorporate unique design elements that truly make my home one of a kind. I highly recommend Archies for anyone who is looking for a top-notch architecture and design firm\"})}),className:\"framer-g7nga0\",layoutDependency:G,layoutId:\"dgrV0GKDu\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:D,verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/t(c.div,{className:\"framer-1tzprgk\",\"data-framer-name\":\"Client\",layoutDependency:G,layoutId:\"NVx0m8iNH\",children:[/*#__PURE__*/e(o,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:139,intrinsicWidth:139,pixelHeight:139,pixelWidth:139,sizes:\"95px\",...H(B)},className:\"framer-156y7pt\",\"data-framer-name\":\"Image\",layoutDependency:G,layoutId:\"qDQKCuwoi\"}),/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(c.h6,{className:\"framer-styles-preset-1g597da\",\"data-styles-preset\":\"tvVjcrvpd\",children:\"Dereck Lawson\"})}),className:\"framer-8rzcbh\",layoutDependency:G,layoutId:\"hyaHC3DLb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:T,verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})})});}),C=['.framer-RHBxi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RHBxi .framer-tn1wn7 { display: block; }\",\".framer-RHBxi .framer-h8if5u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1032px; }\",\".framer-RHBxi .framer-15ovfd3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-RHBxi .framer-5crftt, .framer-RHBxi .framer-g7nga0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RHBxi .framer-1tzprgk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RHBxi .framer-156y7pt { aspect-ratio: 1 / 1; flex: none; height: 95px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 95px); }\",\".framer-RHBxi .framer-8rzcbh { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RHBxi .framer-h8if5u, .framer-RHBxi .framer-15ovfd3, .framer-RHBxi .framer-1tzprgk { gap: 0px; } .framer-RHBxi .framer-h8if5u > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-RHBxi .framer-h8if5u > :first-child, .framer-RHBxi .framer-1tzprgk > :first-child { margin-left: 0px; } .framer-RHBxi .framer-h8if5u > :last-child, .framer-RHBxi .framer-1tzprgk > :last-child { margin-right: 0px; } .framer-RHBxi .framer-15ovfd3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-RHBxi .framer-15ovfd3 > :first-child { margin-top: 0px; } .framer-RHBxi .framer-15ovfd3 > :last-child { margin-bottom: 0px; } .framer-RHBxi .framer-1tzprgk > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",...u.css,...g.css,...x.css],D=m(B,C,\"framer-RHBxi\");export default D;D.displayName=\"Testimony Item\",D.defaultProps={height:448,width:1032},a(D,{nl60AVbtv:{__defaultAssetReference:\"data:framer/asset-reference,naq8TlSSKUQMCejuqSR7wHuo.png?originalFilename=Review_Grace.png&preferredSize=auto\",title:\"Image\",type:n.ResponsiveImage},KGDoud13Y:{defaultValue:\"Neon Studio elevated our Retail Store and I could not be happier with the result. \",displayTextArea:!1,title:\"Highlight\",type:n.String},vMhTnmFcZ:{defaultValue:\"When we decided to design our fashion boutique, we knew that we needed something exceptional to make us stand out in the crowded retail landscape. Neon Studio exceeded our expectations at every step of the way.  From the very first consultation, their team demonstrated an in-depth understanding of our vision and brand identity. They crafted concepts and designs that not only matched our branding but also seamlessly integrated with the layout of our store.  The end result was nothing short of spectacular. With over 20 neon signs strategically placed throughout our store, Neon Studio not only enhanced wayfinding but also transformed our visual merchandising displays into eye-catching works of art. \",displayTextArea:!1,placeholder:\"\",title:\"Text\",type:n.String},UemZHJY7n:{defaultValue:\"Grace - Glory Retail, Arkansas\",displayTextArea:!1,placeholder:\"\",title:\"Client Name\",type:n.String}}),r(D,[...u.fonts,...g.fonts,...x.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernbSzgPBnv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"nl60AVbtv\\\":\\\"image\\\",\\\"KGDoud13Y\\\":\\\"highlight\\\",\\\"vMhTnmFcZ\\\":\\\"text\\\",\\\"UemZHJY7n\\\":\\\"clientName\\\"}\",\"framerIntrinsicWidth\":\"1032\",\"framerIntrinsicHeight\":\"448\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nbSzgPBnv.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={stXikc61Y:{hover:true}};const serializationHash=\"framer-cb06y\";const variantClassNames={stXikc61Y:\"framer-v-1wg5lqu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"stXikc61Y\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wg5lqu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"stXikc61Y\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"stXikc61Y-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zdcn7v\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CkTjJY_qt-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:10176611840,withExternalLayout:true,...addPropertyOverrides({\"stXikc61Y-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 30 0 C 46.569 0 60 13.431 60 30 C 60 46.569 46.569 60 30 60 C 13.431 60 0 46.569 0 30 C 0 13.431 13.431 0 30 0 Z\" fill=\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:10548754366}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nfjuy0\",\"data-framer-name\":\"Arrow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"e7LX4478F\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 0.815 30 C 0.815 13.882 13.882 0.815 30 0.815 C 46.118 0.815 59.185 13.882 59.185 30 C 59.185 46.118 46.118 59.185 30 59.185 C 13.882 59.185 0.815 46.118 0.815 30 Z\" fill=\"transparent\" stroke-width=\"1.629\" stroke=\"rgb(99,99,99)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 37.69 24.488 L 36.705 33.801 C 36.641 34.316 36.182 34.688 35.665 34.643 C 35.419 34.622 35.192 34.504 35.034 34.315 C 34.875 34.126 34.798 33.882 34.82 33.636 L 35.566 26.593 L 22.607 37.265 C 22.413 37.425 22.163 37.503 21.912 37.482 C 21.664 37.46 21.434 37.34 21.276 37.147 C 21.117 36.955 21.043 36.707 21.069 36.459 C 21.096 36.208 21.221 35.978 21.416 35.818 L 34.374 25.146 L 27.319 24.528 C 27.067 24.51 26.834 24.391 26.671 24.198 C 26.509 24.005 26.432 23.754 26.46 23.503 C 26.487 23.249 26.614 23.017 26.813 22.857 C 27.011 22.697 27.265 22.622 27.518 22.647 L 36.848 23.464 C 37.097 23.486 37.326 23.606 37.484 23.799 C 37.643 23.992 37.717 24.24 37.691 24.488 Z\" fill=\"rgb(99,99,99)\"></path></svg>',svgContentId:10749430687,withExternalLayout:true,...addPropertyOverrides({\"stXikc61Y-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"M 37.69 24.488 L 36.705 33.801 C 36.641 34.316 36.182 34.688 35.665 34.643 C 35.419 34.622 35.192 34.504 35.034 34.315 C 34.875 34.126 34.798 33.882 34.82 33.636 L 35.566 26.593 L 22.607 37.265 C 22.413 37.425 22.163 37.503 21.912 37.482 C 21.664 37.46 21.434 37.34 21.276 37.147 C 21.117 36.955 21.043 36.707 21.069 36.459 C 21.096 36.208 21.221 35.978 21.416 35.818 L 34.374 25.146 L 27.319 24.528 C 27.067 24.51 26.834 24.391 26.671 24.198 C 26.509 24.005 26.432 23.754 26.46 23.503 C 26.487 23.249 26.614 23.017 26.813 22.857 C 27.011 22.697 27.265 22.622 27.518 22.647 L 36.848 23.464 C 37.097 23.486 37.326 23.606 37.484 23.799 C 37.643 23.992 37.717 24.24 37.691 24.488 Z\" fill=\"var(--token-c43bdd45-b772-44b6-952e-6172d5cfc789, rgb(232, 227, 223)) /* {&quot;name&quot;:&quot;Beige&quot;} */\"></path></svg>',svgContentId:9011518293}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cb06y.framer-op2vu9, .framer-cb06y .framer-op2vu9 { display: block; }\",\".framer-cb06y.framer-1wg5lqu { cursor: pointer; height: 60px; overflow: hidden; position: relative; width: 60px; }\",\".framer-cb06y .framer-zdcn7v { bottom: -60px; flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; width: 60px; }\",\".framer-cb06y .framer-nfjuy0 { flex: none; height: 60px; left: calc(50.00000000000002% - 60px / 2); position: absolute; top: calc(50.00000000000002% - 60px / 2); width: 60px; }\",\".framer-cb06y.framer-v-1wg5lqu.hover .framer-zdcn7v { bottom: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mqdqoyiSc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervJc8P_kY8=withCSS(Component,css,\"framer-cb06y\");export default FramervJc8P_kY8;FramervJc8P_kY8.displayName=\"Arrow-up\";FramervJc8P_kY8.defaultProps={height:60,width:60};addFonts(FramervJc8P_kY8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervJc8P_kY8\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"60\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mqdqoyiSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vJc8P_kY8.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import ServiceItemV1 from\"#framer/local/canvasComponent/AUA3UuQNu/AUA3UuQNu.js\";import Button from\"#framer/local/canvasComponent/EBt5du5OP/EBt5du5OP.js\";import NavigationCopy from\"#framer/local/canvasComponent/I1hiL6dch/I1hiL6dch.js\";import TestimonyItem from\"#framer/local/canvasComponent/nbSzgPBnv/nbSzgPBnv.js\";import Footer from\"#framer/local/canvasComponent/ohRzTAm4m/ohRzTAm4m.js\";import FaqItem from\"#framer/local/canvasComponent/pS5yB3Mgg/pS5yB3Mgg.js\";import ArrowUp from\"#framer/local/canvasComponent/vJc8P_kY8/vJc8P_kY8.js\";import*as sharedStyle6 from\"#framer/local/css/EitRXYMx7/EitRXYMx7.js\";import*as sharedStyle3 from\"#framer/local/css/EkcJCN_ee/EkcJCN_ee.js\";import*as sharedStyle4 from\"#framer/local/css/fgijnI4_p/fgijnI4_p.js\";import*as sharedStyle5 from\"#framer/local/css/fSfyTPiuw/fSfyTPiuw.js\";import*as sharedStyle1 from\"#framer/local/css/heOoeJ1WZ/heOoeJ1WZ.js\";import*as sharedStyle from\"#framer/local/css/vADoqVWaK/vADoqVWaK.js\";import*as sharedStyle2 from\"#framer/local/css/XCewzXnwC/XCewzXnwC.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const ButtonFonts=getFonts(Button);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const VideoFonts=getFonts(Video);const ArrowUpFonts=getFonts(ArrowUp);const ServiceItemV1Fonts=getFonts(ServiceItemV1);const TestimonyItemFonts=getFonts(TestimonyItem);const SlideshowFonts=getFonts(Slideshow);const FaqItemFonts=getFonts(FaqItem);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const breakpoints={cpiuN3vTg:\"(min-width: 1440px) and (max-width: 1919px)\",sAqNOPTGL:\"(max-width: 809px)\",UPT17grgh:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oKIcN\";const variantClassNames={cpiuN3vTg:\"framer-v-1l7t8be\",sAqNOPTGL:\"framer-v-s2ch0z\",UPT17grgh:\"framer-v-1rm9jlj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,x:0,y:80};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation2={opacity:1,rotate:0,rotateX:10,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:10,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"WQLkyLRf1\",Desktop:\"cpiuN3vTg\",Phone:\"sAqNOPTGL\",Tablet:\"UPT17grgh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"UPT17grgh\",\"sAqNOPTGL\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UPT17grgh\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"sAqNOPTGL\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"cpiuN3vTg\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:componentViewport?.width||\"100vw\"},sAqNOPTGL:{height:64,width:componentViewport?.width||\"100vw\"},UPT17grgh:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"1920px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kactrh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{style:{width:\"100%\"},variant:\"W9fWkW2sn\"}},children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"Ts3ufGzfK\",layoutId:\"Ts3ufGzfK\",style:{height:\"100%\",width:\"100%\"},variant:\"kx9tTkFPU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:30,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"Aesop Retail Sign on Home page banner\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:2650,pixelHeight:1440,pixelWidth:2650,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/r6hqvlFHshFnnSjUXm02MpbMrQ.png\",srcSet:\"https://framerusercontent.com/images/r6hqvlFHshFnnSjUXm02MpbMrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/r6hqvlFHshFnnSjUXm02MpbMrQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r6hqvlFHshFnnSjUXm02MpbMrQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/r6hqvlFHshFnnSjUXm02MpbMrQ.png 2650w\"},className:\"framer-1pfc4he\",\"data-framer-appear-id\":\"1pfc4he\",\"data-framer-name\":\"Hero\",initial:animation1,optimized:true,style:{transformPerspective:500},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yg7o70\",\"data-framer-name\":\"Container\",id:\"1yg7o70\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oz4891\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d9p30i\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1l6tyq8\",\"data-styles-preset\":\"vADoqVWaK\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-13311b2b-6f35-4bd5-8cab-03697d3f3c2d, rgb(255, 255, 255))\"},children:\"We create signage that stands out, \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-13311b2b-6f35-4bd5-8cab-03697d3f3c2d, rgb(255, 255, 255))\"},children:\"by fitting in\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1l6tyq8\",\"data-styles-preset\":\"vADoqVWaK\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"We create signage\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"that stands out, \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"by fitting in\"})]})}),className:\"framer-1k8qmyz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ibo2ex hidden-1rm9jlj hidden-s2ch0z\",\"data-framer-name\":\"Arrow\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yuwtpd\",\"data-framer-name\":\"Arrow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 87\"><path d=\"M 34.755 85.244 L 62.037 57.952 C 63.504 56.421 63.479 53.997 61.979 52.498 C 60.48 50.998 58.058 50.972 56.527 52.44 L 35.897 73.073 L 35.897 4.514 C 35.897 2.361 34.152 0.616 32 0.616 C 29.848 0.616 28.103 2.361 28.103 4.514 L 28.103 73.075 L 7.473 52.44 C 5.952 50.918 3.484 50.918 1.963 52.44 C 0.441 53.962 0.441 56.43 1.963 57.952 L 29.243 85.244 C 30.765 86.765 33.232 86.765 34.754 85.244 Z\" fill=\"rgb(99,99,99)\"></path></svg>',svgContentId:10951113062,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vaqv8\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckp0iz\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-9zymk0\",\"data-styles-preset\":\"heOoeJ1WZ\",style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"By distilling elements from your brand, we create custom pieces you never could have imagined - yet are unmistakably yours.\"})}),className:\"framer-pxck2p\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"n9RRAoNVN\"},implicitPathVariables:undefined},{href:{webPageId:\"n9RRAoNVN\"},implicitPathVariables:undefined},{href:{webPageId:\"n9RRAoNVN\"},implicitPathVariables:undefined},{href:{webPageId:\"n9RRAoNVN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c1ypd6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{p2zIxbG0l:resolvedLinks[1]},sAqNOPTGL:{p2zIxbG0l:resolvedLinks[3]},UPT17grgh:{p2zIxbG0l:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"EJU3v8079\",layoutId:\"EJU3v8079\",p2zIxbG0l:resolvedLinks[0],tSfdQPlm8:\"Start a Project\",variant:\"D5I9ley2Z\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pevzpj\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qv3rn1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:799,intrinsicWidth:1200,pixelHeight:799,pixelWidth:1200,positionX:\"left\",positionY:\"center\",sizes:\"655px\",src:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg\",srcSet:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg 1200w\"}},sAqNOPTGL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:799,intrinsicWidth:1200,pixelHeight:799,pixelWidth:1200,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg\",srcSet:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg 1200w\"}},UPT17grgh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:799,intrinsicWidth:1200,pixelHeight:799,pixelWidth:1200,positionX:\"left\",positionY:\"center\",sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg\",srcSet:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg 1200w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:799,intrinsicWidth:1200,pixelHeight:799,pixelWidth:1200,positionX:\"left\",positionY:\"center\",sizes:\"657px\",src:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg\",srcSet:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg 1200w\"},className:\"framer-r700zs\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wcri0f-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vNWcWKnNy\",isMixedBorderRadius:false,layoutId:\"vNWcWKnNy\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qUVyKqkk8Woo3Yf1zR0vezHkpk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UPT17grgh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:799,intrinsicWidth:1200,pixelHeight:799,pixelWidth:1200,positionX:\"left\",positionY:\"center\",sizes:`max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - 160px) / 2, 1px) - 654px, 1px)`,src:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg\",srcSet:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:799,intrinsicWidth:1200,pixelHeight:799,pixelWidth:1200,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg\",srcSet:\"https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRYlMnjOzJ2gLpMEJC19Kkzbg.jpg 1200w\"},className:\"framer-wh2z2g hidden-72rtr7 hidden-1l7t8be hidden-s2ch0z\",\"data-framer-name\":\"image\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yh6vrp\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-btmqvb\",\"data-framer-name\":\"Element\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e6x1ws\",\"data-framer-name\":\"Line\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 71\"><path d=\"M 0.231 70.561 L 27.79 0.232 L 33.564 0.232 L 5.928 70.561 Z\" fill=\"rgb(232,227,223)\"></path></svg>',svgContentId:9297051867,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",children:[\"About \",/*#__PURE__*/_jsx(\"br\",{}),\"Neon Studio\"]})}),className:\"framer-1kmo8we\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162t2gq\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4vl908\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-txrmkf\",\"data-styles-preset\":\"EkcJCN_ee\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"A\\xa0design and signage studio\\xa0that helps brands\\xa0attract customers and naviganate spaces through visual storytelling. \"})}),className:\"framer-i6b01q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1byg4l7\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"By distilling elements from your brand, we create custom pieces you never could have imagine - yet are unmistakably yours.  Our work is painstainking and precise - yet we work hard to make it look easy and effortless. \"})}),className:\"framer-11hs2sd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u6b9ke\",\"data-framer-name\":\"Our Values\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qk9zdm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivkcfq\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gak0u7\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",children:[\"Our \",/*#__PURE__*/_jsx(\"br\",{}),\"Values\"]})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",children:[\"Our \",/*#__PURE__*/_jsx(\"br\",{}),\"Values\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",children:[\"Our \",/*#__PURE__*/_jsx(\"br\",{}),\"Values\"]})}),className:\"framer-xfzv8l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0668m\",\"data-framer-name\":\"Arrow\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c3oagy\",\"data-framer-name\":\"Arrow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 53\"><path d=\"M 21.179 51.93 L 37.804 35.304 C 38.698 34.371 38.682 32.895 37.769 31.981 C 36.855 31.068 35.379 31.052 34.446 31.946 L 21.875 44.516 L 21.875 2.75 C 21.875 1.438 20.812 0.375 19.5 0.375 C 18.188 0.375 17.125 1.438 17.125 2.75 L 17.125 44.517 L 4.554 31.946 C 3.627 31.019 2.123 31.019 1.196 31.946 C 0.269 32.873 0.269 34.377 1.196 35.304 L 17.82 51.93 C 18.747 52.857 20.251 52.857 21.178 51.93 Z\" fill=\"var(--token-13311b2b-6f35-4bd5-8cab-03697d3f3c2d, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11702112995,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2500,pixelHeight:1667,pixelWidth:2500,src:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg\",srcSet:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg 2500w\"}},sAqNOPTGL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2500,pixelHeight:1667,pixelWidth:2500,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`,src:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg\",srcSet:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg 2500w\"}},UPT17grgh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2500,pixelHeight:1667,pixelWidth:2500,src:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg\",srcSet:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2500,pixelHeight:1667,pixelWidth:2500,sizes:\"1280px\",src:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg\",srcSet:\"https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BNCtkV6N4lg1aVdfspjAilPyMI.jpeg 2500w\"},className:\"framer-hjq2pd\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azu9eb\",\"data-framer-name\":\"Values\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tjwzed\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ri79ee\",\"data-framer-name\":\"Value Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4far6d-container\",children:/*#__PURE__*/_jsx(ArrowUp,{height:\"100%\",id:\"lnFIHVZTx\",layoutId:\"lnFIHVZTx\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tw54xt\",\"data-styles-preset\":\"EitRXYMx7\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:[\"Bold \",/*#__PURE__*/_jsx(\"br\",{}),\"Signage\"]})}),className:\"framer-13ydqvh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jh0qiu\",\"data-framer-name\":\"Value Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qtltvh-container\",children:/*#__PURE__*/_jsx(ArrowUp,{height:\"100%\",id:\"K3I0C6QCX\",layoutId:\"K3I0C6QCX\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tw54xt\",\"data-styles-preset\":\"EitRXYMx7\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:[\"Timeless\",/*#__PURE__*/_jsx(\"br\",{}),\"Design\"]})}),className:\"framer-1yg7p2i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1onc80u\",\"data-framer-name\":\"Value Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-c6ps8m-container\",children:/*#__PURE__*/_jsx(ArrowUp,{height:\"100%\",id:\"U5ZBpY1Pr\",layoutId:\"U5ZBpY1Pr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tw54xt\",\"data-styles-preset\":\"EitRXYMx7\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:[\"Innovation and\",/*#__PURE__*/_jsx(\"br\",{}),\"Collaboration\"]})}),className:\"framer-1ryi3ql\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12h9fsl\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ezxjq\",\"data-framer-name\":\"Value Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ggppp4-container\",children:/*#__PURE__*/_jsx(ArrowUp,{height:\"100%\",id:\"pCcwsLkEA\",layoutId:\"pCcwsLkEA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tw54xt\",\"data-styles-preset\":\"EitRXYMx7\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:[\"Honesty and \",/*#__PURE__*/_jsx(\"br\",{}),\"Integrity\"]})}),className:\"framer-1dtcql0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mvj6q\",\"data-framer-name\":\"Value Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-n243jk-container\",children:/*#__PURE__*/_jsx(ArrowUp,{height:\"100%\",id:\"XZesN7g0q\",layoutId:\"XZesN7g0q\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tw54xt\",\"data-styles-preset\":\"EitRXYMx7\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:[\"Attention to \",/*#__PURE__*/_jsx(\"br\",{}),\"Detail\"]})}),className:\"framer-1q8cjjx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wboqkb\",\"data-framer-name\":\"Value Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x9z2c5-container\",children:/*#__PURE__*/_jsx(ArrowUp,{height:\"100%\",id:\"VZ8NzlbM6\",layoutId:\"VZ8NzlbM6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-tw54xt\",\"data-styles-preset\":\"EitRXYMx7\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:[\"Quality \",/*#__PURE__*/_jsx(\"br\",{}),\"Craftsmanship\"]})}),className:\"framer-qhjfm5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ofmmvk\",\"data-framer-name\":\"Our Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbapv7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n3p37s\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",children:\"Our Services\"})}),className:\"framer-odrh86\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cwkket\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gkWmvb4XE\"},implicitPathVariables:undefined},{href:{webPageId:\"gkWmvb4XE\"},implicitPathVariables:undefined},{href:{webPageId:\"gkWmvb4XE\"},implicitPathVariables:undefined},{href:{webPageId:\"gkWmvb4XE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ywssm2-container\",\"data-framer-name\":\"Interior\",name:\"Interior\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{nAnKYJCIO:resolvedLinks1[1]},sAqNOPTGL:{nAnKYJCIO:resolvedLinks1[3],variant:\"ajimPh1Tw\"},UPT17grgh:{nAnKYJCIO:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ServiceItemV1,{ddUN3HNhh:\"Interior Signage\",height:\"100%\",id:\"mLgxusYSN\",layoutId:\"mLgxusYSN\",name:\"Interior\",nAnKYJCIO:resolvedLinks1[0],style:{width:\"100%\"},variant:\"vuDv6RXz0\",whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/VGHtPeuuDLtjNAhQK9f66YNsw.png\",srcSet:\"https://framerusercontent.com/images/VGHtPeuuDLtjNAhQK9f66YNsw.png?scale-down-to=1024 843w,https://framerusercontent.com/images/VGHtPeuuDLtjNAhQK9f66YNsw.png 1097w\"},\"\"),width:\"100%\",YCQIgSung:\"01\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hXsp18d1Q\"},implicitPathVariables:undefined},{href:{webPageId:\"hXsp18d1Q\"},implicitPathVariables:undefined},{href:{webPageId:\"hXsp18d1Q\"},implicitPathVariables:undefined},{href:{webPageId:\"hXsp18d1Q\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7wtl6s-container\",\"data-framer-name\":\"Exterior\",name:\"Exterior\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{nAnKYJCIO:resolvedLinks2[1],whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/hJtqE5rf6LGCJB6reKLrscIO7oU.png\",srcSet:\"https://framerusercontent.com/images/hJtqE5rf6LGCJB6reKLrscIO7oU.png?scale-down-to=1024 843w,https://framerusercontent.com/images/hJtqE5rf6LGCJB6reKLrscIO7oU.png 1097w\"},\"\")},sAqNOPTGL:{nAnKYJCIO:resolvedLinks2[3],variant:\"ajimPh1Tw\"},UPT17grgh:{nAnKYJCIO:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ServiceItemV1,{ddUN3HNhh:\"Exterior Signage\",height:\"100%\",id:\"AkP04Rt2c\",layoutId:\"AkP04Rt2c\",name:\"Exterior\",nAnKYJCIO:resolvedLinks2[0],style:{width:\"100%\"},variant:\"vuDv6RXz0\",whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/hJtqE5rf6LGCJB6reKLrscIO7oU.png\",srcSet:\"https://framerusercontent.com/images/hJtqE5rf6LGCJB6reKLrscIO7oU.png?scale-down-to=1024 843w,https://framerusercontent.com/images/hJtqE5rf6LGCJB6reKLrscIO7oU.png 1097w\"},\"Exterior Signage\"),width:\"100%\",YCQIgSung:\"02\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PCwRYSEcn\"},implicitPathVariables:undefined},{href:{webPageId:\"PCwRYSEcn\"},implicitPathVariables:undefined},{href:{webPageId:\"PCwRYSEcn\"},implicitPathVariables:undefined},{href:{webPageId:\"PCwRYSEcn\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bp5acs-container\",\"data-framer-name\":\"Wayfinding\",name:\"Wayfinding\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{nAnKYJCIO:resolvedLinks3[1],whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/SKb22o9VEabyYoyjdNRPv2dKc.png\",srcSet:\"https://framerusercontent.com/images/SKb22o9VEabyYoyjdNRPv2dKc.png?scale-down-to=1024 711w,https://framerusercontent.com/images/SKb22o9VEabyYoyjdNRPv2dKc.png 1132w\"},\"\")},sAqNOPTGL:{nAnKYJCIO:resolvedLinks3[3],variant:\"ajimPh1Tw\"},UPT17grgh:{nAnKYJCIO:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ServiceItemV1,{ddUN3HNhh:\"Wayfinding\",height:\"100%\",id:\"dS2IFsKcf\",layoutId:\"dS2IFsKcf\",name:\"Wayfinding\",nAnKYJCIO:resolvedLinks3[0],style:{width:\"100%\"},variant:\"vuDv6RXz0\",whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/SKb22o9VEabyYoyjdNRPv2dKc.png\",srcSet:\"https://framerusercontent.com/images/SKb22o9VEabyYoyjdNRPv2dKc.png?scale-down-to=1024 711w,https://framerusercontent.com/images/SKb22o9VEabyYoyjdNRPv2dKc.png 1132w\"},\"Wayfinding Signs\"),width:\"100%\",YCQIgSung:\"03\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uSV1tBRcb\"},implicitPathVariables:undefined},{href:{webPageId:\"uSV1tBRcb\"},implicitPathVariables:undefined},{href:{webPageId:\"uSV1tBRcb\"},implicitPathVariables:undefined},{href:{webPageId:\"uSV1tBRcb\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cewvg-container\",\"data-framer-name\":\"Visual Branding\",name:\"Visual Branding\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{nAnKYJCIO:resolvedLinks4[1]},sAqNOPTGL:{nAnKYJCIO:resolvedLinks4[3],variant:\"ajimPh1Tw\"},UPT17grgh:{nAnKYJCIO:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ServiceItemV1,{ddUN3HNhh:\"Visual Branding\",height:\"100%\",id:\"anGSRXbxy\",layoutId:\"anGSRXbxy\",name:\"Visual Branding\",nAnKYJCIO:resolvedLinks4[0],style:{width:\"100%\"},variant:\"vuDv6RXz0\",whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/JR4LVoJxzToCGWCVVYb5OWRMpo.png\",srcSet:\"https://framerusercontent.com/images/JR4LVoJxzToCGWCVVYb5OWRMpo.png?scale-down-to=1024 682w,https://framerusercontent.com/images/JR4LVoJxzToCGWCVVYb5OWRMpo.png 1023w\"},\"\"),width:\"100%\",YCQIgSung:\"04\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Mx5LSCaey\"},implicitPathVariables:undefined},{href:{webPageId:\"Mx5LSCaey\"},implicitPathVariables:undefined},{href:{webPageId:\"Mx5LSCaey\"},implicitPathVariables:undefined},{href:{webPageId:\"Mx5LSCaey\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dembvz-container\",\"data-framer-name\":\"Design\",id:\"1dembvz\",name:\"Design\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{nAnKYJCIO:resolvedLinks5[1]},sAqNOPTGL:{nAnKYJCIO:resolvedLinks5[3],variant:\"ajimPh1Tw\"},UPT17grgh:{nAnKYJCIO:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(ServiceItemV1,{ddUN3HNhh:\"Design + Concept Creation\",height:\"100%\",id:\"QnMJ2r94j\",layoutId:\"QnMJ2r94j\",name:\"Design\",nAnKYJCIO:resolvedLinks5[0],style:{width:\"100%\"},variant:\"vuDv6RXz0\",whNDt_sW8:addImageAlt({src:\"https://framerusercontent.com/images/TP8EeyWnurzfuxGUbUrWCloOcw.jpg\",srcSet:\"https://framerusercontent.com/images/TP8EeyWnurzfuxGUbUrWCloOcw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/TP8EeyWnurzfuxGUbUrWCloOcw.jpg 1080w\"},\"\"),width:\"100%\",YCQIgSung:\"01\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2iqsq1\",\"data-framer-name\":\"Testimony\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1voncnq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wu3yzl\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-alignment\":\"left\"},children:[\"What Our Clients\",/*#__PURE__*/_jsx(\"br\",{}),\"Are Saying\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-alignment\":\"right\"},children:[\"What Our Clients\",/*#__PURE__*/_jsx(\"br\",{}),\"Are Saying\"]})}),className:\"framer-1k7l2ra\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egws3x hidden-s2ch0z\",\"data-framer-name\":\"Arrow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UPT17grgh:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 51 70\"><path d=\"M 27.3 68.74 L 49.196 46.784 C 50.374 45.552 50.353 43.603 49.15 42.396 C 47.947 41.19 46.002 41.169 44.774 42.35 L 28.217 58.949 L 28.217 3.794 C 28.217 2.062 26.817 0.658 25.089 0.658 C 23.362 0.658 21.961 2.062 21.961 3.794 L 21.961 58.951 L 5.405 42.35 C 4.183 41.125 2.203 41.125 0.982 42.35 C -0.239 43.574 -0.239 45.56 0.982 46.784 L 22.877 68.74 C 24.098 69.964 26.078 69.964 27.299 68.74 Z\" fill=\"var(--token-c43bdd45-b772-44b6-952e-6172d5cfc789, rgb(232, 227, 223)) /* {&quot;name&quot;:&quot;Beige&quot;} */\"></path></svg>',svgContentId:12333415380}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cxxxk2\",\"data-framer-name\":\"Arrow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 68 93\"><path d=\"M 36.927 91.122 L 65.915 61.949 C 67.473 60.312 67.446 57.721 65.853 56.118 C 64.26 54.515 61.686 54.487 60.06 56.056 L 38.141 78.113 L 38.141 4.825 C 38.141 2.524 36.287 0.658 34 0.658 C 31.713 0.658 29.859 2.524 29.859 4.825 L 29.859 78.115 L 7.94 56.056 C 6.324 54.429 3.702 54.429 2.085 56.056 C 0.469 57.683 0.469 60.321 2.085 61.949 L 31.071 91.122 C 32.688 92.749 35.309 92.749 36.926 91.122 Z\" fill=\"var(--token-c43bdd45-b772-44b6-952e-6172d5cfc789, rgb(232, 227, 223)) /* {&quot;name&quot;:&quot;Beige&quot;} */\"></path></svg>',svgContentId:9982045187,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7eqcf7\",\"data-framer-name\":\"Brands\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16wxyxp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13tfy6r\",\"data-framer-name\":\"Logo Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Warner Brothers Case study logo\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AlgWrYCHxQSiLgCUj1wf01woAzI.png\"},className:\"framer-172m57\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Puma Casestudy logo\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sI8PLPsQGnK28GD8AUsSXnMvP2A.png\"},className:\"framer-142ajb5\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Peloton Casestudy logo\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Usf1DOqUHpn5eKdxnCdoQgXHOyE.png\"},className:\"framer-evyfkb\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"HGTV Casestudy logo\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qwM7qx4oktm9ox5zhGeXvsJrDI.png\"},className:\"framer-1gjfb1s\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Hardrock Cafe logo\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uLDeTczsIQYDU4TdDVcifN2nU.png\"},className:\"framer-zx4ngh\",\"data-framer-name\":\"Placeholder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Netflix logo\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Hr7xgZAedoHwoAdeTLKPfrcSp10.png\"},className:\"framer-16p7sm8\",\"data-framer-name\":\"Placeholder\"})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12nqxha-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:0,arrowPadding:20,arrowPaddingBottom:155,arrowPaddingLeft:0,arrowPaddingRight:-346,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:70,leftArrow:\"https://framerusercontent.com/images/KVplLBqefNnu5xwsy4xAu4ZRtQ.svg\",rightArrow:\"https://framerusercontent.com/images/YwkPQ4k1LywfGQrpmEn0yVZxAs.svg\",showMouseControls:true}},sAqNOPTGL:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:0,arrowPadding:20,arrowPaddingBottom:20,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:70,leftArrow:\"https://framerusercontent.com/images/KVplLBqefNnu5xwsy4xAu4ZRtQ.svg\",rightArrow:\"https://framerusercontent.com/images/YwkPQ4k1LywfGQrpmEn0yVZxAs.svg\",showMouseControls:true},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0},UPT17grgh:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:0,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:70,leftArrow:\"https://framerusercontent.com/images/KVplLBqefNnu5xwsy4xAu4ZRtQ.svg\",rightArrow:\"https://framerusercontent.com/images/YwkPQ4k1LywfGQrpmEn0yVZxAs.svg\",showMouseControls:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:0,arrowPadding:20,arrowPaddingBottom:155,arrowPaddingLeft:0,arrowPaddingRight:-430,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:70,leftArrow:\"https://framerusercontent.com/images/KVplLBqefNnu5xwsy4xAu4ZRtQ.svg\",rightArrow:\"https://framerusercontent.com/images/YwkPQ4k1LywfGQrpmEn0yVZxAs.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",id:\"SOgYh3qk8\",intervalControl:4,itemAmount:1,layoutId:\"SOgYh3qk8\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:30,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hppfi3-container\",children:/*#__PURE__*/_jsx(TestimonyItem,{height:\"100%\",id:\"Z1zogXJyK\",KGDoud13Y:\"Neon Studio elevated our Retail Store and I could not be happier with the result\",layoutId:\"Z1zogXJyK\",style:{width:\"100%\"},UemZHJY7n:\"Grace - Glory Retail\",vMhTnmFcZ:\"When we decided to design our fashion boutique, we knew that we needed something exceptional to make us stand out in the crowded retail landscape. Neon Studio exceeded our expectations at every step of the way.  From the very first consultation, their team demonstrated an in-depth understanding of our vision and brand identity. They crafted concepts and designs that not only matched our branding but also seamlessly integrated with the layout of our store.  The end result was nothing short of spectacular. With over 20 neon signs strategically placed throughout our store, Neon Studio not only enhanced wayfinding but also transformed our visual merchandising displays into eye-catching works of art. \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sy494h-container\",children:/*#__PURE__*/_jsx(TestimonyItem,{height:\"100%\",id:\"APWqzxxu6\",KGDoud13Y:\"Neon Studio has been our go-to signage partner for both events and office signs\",layoutId:\"APWqzxxu6\",nl60AVbtv:addImageAlt({src:\"https://framerusercontent.com/images/IaV9ToMGBQELLYnWAkJLD22iKXI.jpeg\",srcSet:\"https://framerusercontent.com/images/IaV9ToMGBQELLYnWAkJLD22iKXI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IaV9ToMGBQELLYnWAkJLD22iKXI.jpeg 800w\"},\"\"),style:{width:\"100%\"},UemZHJY7n:\"Abby - Shopify\",vMhTnmFcZ:\"We adore our Neon Studio signs! They've taken our events to the next level and turned our office into a sleek, professional space.  Their quality is unmatched, and their signs have become Instagram favorites at our events. Neon Studio's attention to detail and craftsmanship shine through, especially when they incorporate our logo.  Their customer service is fantastic, always responsive and attentive. Plus, their turnaround times are lightning-fast.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6olfwh-container\",children:/*#__PURE__*/_jsx(TestimonyItem,{height:\"100%\",id:\"WPLU6PgYy\",KGDoud13Y:\"Our Trusted Partner in Creating Award-Winning Pop-Up Bars\",layoutId:\"WPLU6PgYy\",nl60AVbtv:addImageAlt({src:\"https://framerusercontent.com/images/gnIJR9kZS3p2sftCDexWrxDLY98.jpeg\",srcSet:\"https://framerusercontent.com/images/gnIJR9kZS3p2sftCDexWrxDLY98.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gnIJR9kZS3p2sftCDexWrxDLY98.jpeg 800w\"},\"\"),style:{width:\"100%\"},UemZHJY7n:\"Christopher, Fairlane Hotel\",vMhTnmFcZ:\"Since 2020, Neon Studio has been our go-to partner for crafting custom signage for our Fairlane pop-up bars in Nashville. Together, we've brought to life more than 10 distinct themed pop-up bars, all within the award-winning Fairland Hotel. In the world of pop-up bars, it's all about the details, and Neon Studio excels in delivering signage that perfectly complements each theme. Their craftsmanship and attention to aesthetic nuances have been pivotal in our achievements.  Neon Studio isn't just a signage provider; they're an essential part of our team, helping us achieve excellence and recognition in the industry. We look forward to many more successful collaborations with them in the future.\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zxfb2\",\"data-framer-name\":\"Statistic Number\",children:isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkmoqz hidden-1l7t8be\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1130ox0\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gz6tph\",\"data-border\":true,\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0kua1\",\"data-framer-name\":\"01\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"30+\"})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"30+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"30+\"})}),className:\"framer-12ae5qm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"Years of Experience\"})}),className:\"framer-1ezonrf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7gt1yr\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"4\"})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"4\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"4\"})}),className:\"framer-13j11mg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"Global Locations\"})}),className:\"framer-1hcqqx2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-faw83a\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oeuuse\",\"data-framer-name\":\"01\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"10,000+\"})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"10,000+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"10,000+\"})}),className:\"framer-yfj955\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"Projects\"})}),className:\"framer-1fc42f1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hrebg\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"60%\"})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"60%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"60%\"})}),className:\"framer-1freaah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"Purchase a second (or third) sign\"})}),className:\"framer-h1o5gz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dejlcz\",\"data-framer-name\":\"03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"98%\"})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-npvjub\",\"data-styles-preset\":\"fSfyTPiuw\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"98%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-color\":\"var(--token-62950d64-8538-47af-9d99-046fe63b622f, rgb(32, 32, 32))\"},children:\"98%\"})}),className:\"framer-ypu7n6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-color\":\"var(--token-c2c66e0a-88a8-4130-b735-5007542feadb, rgb(99, 99, 99))\"},children:\"Client Satisfaction\"})}),className:\"framer-ntfq0o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jsyrhy\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:160,pixelHeight:500,pixelWidth:320,src:\"https://framerusercontent.com/images/ICBoqDZc9m6ywUPWDb8aGGyEj0.png\"},className:\"framer-1k7xfip\",\"data-framer-name\":\"NS_Graphic\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13razvy\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8pcg4l\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nvd5hz\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-alignment\":\"left\"},children:\"FAQ\"})}),className:\"framer-f70phv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfauaq\",\"data-framer-name\":\"Accordion\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) * 0.8, 1px)`},sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) / 1.5, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 300px) * 0.7222, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1juh60w-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{variant:\"IjNq7M5_w\"},sAqNOPTGL:{variant:\"IjNq7M5_w\"},UPT17grgh:{variant:\"IjNq7M5_w\"}},children:/*#__PURE__*/_jsx(FaqItem,{bpINjI_ll:\"What is the design process like?\",height:\"100%\",id:\"N2lrA3QEL\",layoutId:\"N2lrA3QEL\",Nd03syeQt:\"Our design process typically starts with an initial consultation to discuss your needs and preferences. From there, we develop a design concept and present it to you for feedback. Once the design is finalized, we move on to the construction phase. Throughout the process, we keep you informed and involved to ensure that the end result is exactly what you envisioned.\",style:{width:\"100%\"},VAOrHpSye:\"01\",variant:\"jGPpUgTdg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) * 0.8, 1px)`},sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) / 1.5, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 300px) * 0.7222, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hat2qz-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{variant:\"IjNq7M5_w\"},sAqNOPTGL:{variant:\"IjNq7M5_w\"},UPT17grgh:{variant:\"IjNq7M5_w\"}},children:/*#__PURE__*/_jsx(FaqItem,{bpINjI_ll:\"What is your approach to custom projects?\",height:\"100%\",id:\"xeFZyqr9q\",layoutId:\"xeFZyqr9q\",Nd03syeQt:\"At the heart of our work lies a deep commitment to bringing your unique visions to life through bespoke signage solutions. We thrive on the challenge of custom projects, embracing each opportunity to think outside the box and create something truly one-of-a-kind.\\n\\nOur journey begins with a deep dive into your brand\u2019s story, values, and aesthetic preferences. This initial collaboration is crucial, as it forms the foundation of a design that is not just tailored, but meticulously crafted to reflect your identity and meet your specific needs.\\n\\nOur team of seasoned designers and skilled craftsmen are masters of their trade, combining creativity with precision to transform ideas into tangible artistry. Whether it\u2019s a custom LED, lit-up or metal sign , or a personalized project for a retail space, office, caf\\xe9, bar, restaurant, or beauty store - each project is a blank canvas awaiting our expert touch.\\n\\nThroughout the process, we maintain open lines of communication, ensuring that your insights and feedback are woven into the fabric of the final design. The result? Custom signage that not only captures attention but tells your story with authenticity and flair, making a lasting impression on everyone who sees it.\\n\",style:{width:\"100%\"},VAOrHpSye:\"02\",variant:\"jGPpUgTdg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) * 0.8, 1px)`},sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) / 1.5, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 300px) * 0.7222, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mawhkz-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{variant:\"IjNq7M5_w\"},sAqNOPTGL:{variant:\"IjNq7M5_w\"},UPT17grgh:{variant:\"IjNq7M5_w\"}},children:/*#__PURE__*/_jsx(FaqItem,{bpINjI_ll:\"What types of projects do you work on?\",height:\"100%\",id:\"upkSUPy0o\",layoutId:\"upkSUPy0o\",Nd03syeQt:\"Our expertise in signage spans a vibrant array of sectors, where we bring brands to life and spaces to vibrancy. In the bustling worlds of retail and hospitality, we craft signs that are not just seen, but remembered \u2013 whether it\u2019s a chic boutique, a cozy caf\\xe9, a lively bar, a renowned restaurant, or an elegant beauty store.\\n\\nIn office settings, we understand the power of a first impression. That\u2019s why we design signage that speaks volumes about your brand, fostering a sense of belonging and professionalism. Beyond that, our portfolio shines with lit up signs,metal signs, custom and bespoke signage projects designed from the ground up.\\n\\nEvery sign we create is a story waiting to be told, and we\u2019re here to help you tell yours in the most compelling way possible, ensuring your business doesn\u2019t just blend in, but truly stands out.\",style:{width:\"100%\"},VAOrHpSye:\"03\",variant:\"jGPpUgTdg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) * 0.8, 1px)`},sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) / 1.5, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 300px) * 0.7222, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nh7cse-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{variant:\"IjNq7M5_w\"},sAqNOPTGL:{variant:\"IjNq7M5_w\"},UPT17grgh:{variant:\"IjNq7M5_w\"}},children:/*#__PURE__*/_jsx(FaqItem,{bpINjI_ll:\"What is the timeline for a typical project?\",height:\"100%\",id:\"rLCd6I7BD\",layoutId:\"rLCd6I7BD\",Nd03syeQt:\"The timeline for a project can vary based on factors such as the complexity of the design, the size of the signage, and the materials used. On average, most of our projects are fabricated within 10 business days, ensuring a swift turnaround time without compromising on quality. We strive to work efficiently, while dedicating the necessary attention to detail to ensure that every aspect of your project meets our high standards. During our initial consultation, we will provide a detailed timeline tailored to your specific project, and we remain committed to keeping you informed and updated throughout the process.\",style:{width:\"100%\"},VAOrHpSye:\"04\",variant:\"jGPpUgTdg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) * 0.8, 1px)`},sAqNOPTGL:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`},UPT17grgh:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px) / 1.5, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 300px) * 0.7222, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zs0gmb-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{variant:\"IjNq7M5_w\"},sAqNOPTGL:{variant:\"IjNq7M5_w\"},UPT17grgh:{variant:\"IjNq7M5_w\"}},children:/*#__PURE__*/_jsx(FaqItem,{bpINjI_ll:\"How much does a project cost?\",height:\"100%\",id:\"oVbdY71bn\",layoutId:\"oVbdY71bn\",Nd03syeQt:\"The cost of a project depends on various factors including the size, complexity, materials used, and specific requirements of the design. During our initial consultation, we will discuss your budget and provide a detailed quote based on your specific needs and preferences. We are committed to providing transparent pricing and ensuring that you receive value for your investment. Our team is also available to discuss payment plans and financing options to help make your signage project more affordable.\",style:{width:\"100%\"},VAOrHpSye:\"05\",variant:\"jGPpUgTdg\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u9v3wj\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n57wn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n9RRAoNVN\"},nodeId:\"o5gEYCavM\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`,src:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png\",srcSet:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png 1600w\"}},sAqNOPTGL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 60px)`,src:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png\",srcSet:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png 1600w\"}},UPT17grgh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 100px)`,src:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png\",srcSet:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png 1600w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 200px)`,src:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png\",srcSet:\"https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hqHlE98BBf8hudT8nSiEi29eHI.png 1600w\"},className:\"framer-afbzwq framer-lux5qc\",\"data-framer-name\":\"Banner Image\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbn03z\",\"data-framer-name\":\"Text Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"Interested in\"})}),className:\"framer-19w17o1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qv6mn hidden-s2ch0z\",\"data-framer-name\":\"Arrow\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1i4wxz9\",\"data-framer-name\":\"Vector_8_\",fill:\"black\",intrinsicHeight:70,intrinsicWidth:59,svg:'<svg width=\"59\" height=\"70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M48.192.095 11.126 6.014a3.792 3.792 0 0 0 1.196 7.487l28.027-4.475L1.223 63.02a3.792 3.792 0 1 0 6.141 4.45L46.49 13.474l4.475 28.028a3.792 3.792 0 1 0 7.487-1.196L52.533 3.241A3.792 3.792 0 0 0 48.192.095Z\" fill=\"#FAF8F5\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1okhdxm\",\"data-framer-name\":\"Text Bottom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1puv50k\",\"data-styles-preset\":\"XCewzXnwC\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"joining our trade \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:\"program? \"})]})}),className:\"framer-n8ywvn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-9zymk0\",\"data-styles-preset\":\"heOoeJ1WZ\",style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:[\"Get best-in-the-business service\",/*#__PURE__*/_jsx(\"br\",{}),\"with a dedicated Designer and Project Manager, white-glove delivery plus a 30% trade discount.  \"]})})},UPT17grgh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-9zymk0\",\"data-styles-preset\":\"heOoeJ1WZ\",style:{\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:[\"Get best-in-the-business service\",/*#__PURE__*/_jsx(\"br\",{}),\"with a dedicated Designer and Project Manager, white-glove delivery plus a 30% trade discount.  \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1e4odg9\",\"data-styles-preset\":\"fgijnI4_p\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, rgb(250, 248, 245))\"},children:[\"Get best-in-the-business service\",/*#__PURE__*/_jsx(\"br\",{}),\"with a dedicated Designer and Project Manager, white-glove delivery plus a 30% trade discount.  \"]})}),className:\"framer-1d7yi5q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtcl19\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpiuN3vTg:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`},sAqNOPTGL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`},UPT17grgh:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:890,width:\"1920px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yd74yy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sAqNOPTGL:{variant:\"BCvyNeTrd\"},UPT17grgh:{variant:\"gGzQNTU4w\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"EnfDKK2ta\",layoutId:\"EnfDKK2ta\",style:{width:\"100%\"},variant:\"yQOtqRkcz\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oKIcN.framer-lux5qc, .framer-oKIcN .framer-lux5qc { display: block; }\",\".framer-oKIcN.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, #faf8f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-oKIcN .framer-1kactrh-container { flex: none; height: 80px; position: relative; width: 1920px; }\",\".framer-oKIcN .framer-1pfc4he { -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.25)); align-content: center; align-items: center; display: flex; filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.25)); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1yg7o70 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; max-width: 1920px; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-oz4891 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 80px 0px 0px 120px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1d9p30i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1180px; }\",\".framer-oKIcN .framer-1k8qmyz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oKIcN .framer-1ibo2ex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 56%; transform: translate(-50%, -50%); width: min-content; z-index: 1; }\",\".framer-oKIcN .framer-1yuwtpd { background-color: rgba(0, 0, 0, 0); flex: none; height: 87px; position: relative; width: 64px; }\",\".framer-oKIcN .framer-1vaqv8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 10px 80px 0px; position: relative; width: min-content; }\",\".framer-oKIcN .framer-1ckp0iz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; min-height: 104px; overflow: hidden; padding: 0px; position: relative; width: 596px; }\",\".framer-oKIcN .framer-pxck2p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 46%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oKIcN .framer-c1ypd6-container { flex: none; height: auto; position: sticky; top: 0px; width: auto; will-change: transform; z-index: 1; }\",\".framer-oKIcN .framer-pevzpj, .framer-oKIcN .framer-7eqcf7, .framer-oKIcN .framer-4zxfb2 { align-content: center; align-items: center; background-color: var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, #faf8f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-qv3rn1 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1920px; overflow: hidden; padding: 350px 100px 350px 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-r700zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 700px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 657px; z-index: 1; }\",\".framer-oKIcN .framer-wcri0f-container { flex: none; height: 706px; position: relative; width: 644px; }\",\".framer-oKIcN .framer-wh2z2g { aspect-ratio: 0.6666666666666666 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 1px; }\",\".framer-oKIcN .framer-yh6vrp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 667px; overflow: hidden; padding: 0px; position: absolute; top: 334px; width: min-content; z-index: 1; }\",\".framer-oKIcN .framer-btmqvb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 20px; width: 53px; z-index: 1; }\",\".framer-oKIcN .framer-1e6x1ws { flex: none; height: 71px; position: relative; width: 34px; }\",\".framer-oKIcN .framer-1kmo8we, .framer-oKIcN .framer-xfzv8l, .framer-oKIcN .framer-odrh86, .framer-oKIcN .framer-12ae5qm, .framer-oKIcN .framer-1ezonrf, .framer-oKIcN .framer-1hcqqx2, .framer-oKIcN .framer-yfj955, .framer-oKIcN .framer-1fc42f1, .framer-oKIcN .framer-1freaah, .framer-oKIcN .framer-h1o5gz, .framer-oKIcN .framer-ypu7n6, .framer-oKIcN .framer-ntfq0o, .framer-oKIcN .framer-19w17o1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oKIcN .framer-162t2gq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 553px; }\",\".framer-oKIcN .framer-4vl908 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-i6b01q, .framer-oKIcN .framer-11hs2sd, .framer-oKIcN .framer-1k7l2ra, .framer-oKIcN .framer-n8ywvn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oKIcN .framer-1byg4l7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 130px 0px 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-u6b9ke { align-content: center; align-items: center; background-color: var(--token-c43bdd45-b772-44b6-952e-6172d5cfc789, #e8e3df); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-qk9zdm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px 0px 0px 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-ivkcfq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1gak0u7, .framer-oKIcN .framer-1n3p37s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-oKIcN .framer-h0668m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-oKIcN .framer-c3oagy { flex: none; height: 53px; position: relative; width: 39px; }\",\".framer-oKIcN .framer-hjq2pd { flex: none; height: 750px; overflow: hidden; position: relative; width: 1280px; }\",\".framer-oKIcN .framer-1azu9eb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px 100px 145px 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-tjwzed { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1ri79ee, .framer-oKIcN .framer-1jh0qiu, .framer-oKIcN .framer-1onc80u, .framer-oKIcN .framer-7ezxjq, .framer-oKIcN .framer-11mvj6q, .framer-oKIcN .framer-wboqkb, .framer-oKIcN .framer-a0kua1, .framer-oKIcN .framer-oeuuse, .framer-oKIcN .framer-1hrebg, .framer-oKIcN .framer-1dejlcz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-4far6d-container, .framer-oKIcN .framer-qtltvh-container, .framer-oKIcN .framer-c6ps8m-container, .framer-oKIcN .framer-1ggppp4-container, .framer-oKIcN .framer-n243jk-container, .framer-oKIcN .framer-x9z2c5-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-oKIcN .framer-13ydqvh, .framer-oKIcN .framer-1yg7p2i, .framer-oKIcN .framer-1ryi3ql, .framer-oKIcN .framer-1dtcql0, .framer-oKIcN .framer-1q8cjjx, .framer-oKIcN .framer-qhjfm5, .framer-oKIcN .framer-13j11mg, .framer-oKIcN .framer-f70phv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oKIcN .framer-12h9fsl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 250px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1ofmmvk, .framer-oKIcN .framer-13razvy, .framer-oKIcN .framer-1u9v3wj { align-content: center; align-items: center; background-color: var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, #faf8f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1sbapv7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 82px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 150px 100px 150px 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-cwkket { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-ywssm2-container, .framer-oKIcN .framer-7wtl6s-container, .framer-oKIcN .framer-1bp5acs-container, .framer-oKIcN .framer-4cewvg-container, .framer-oKIcN .framer-1dembvz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oKIcN .framer-2iqsq1 { align-content: center; align-items: center; background-color: var(--token-68677a42-227b-45fe-a9cc-9bdebc0a78bf, #faf8f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1voncnq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 150px 100px 350px 100px; position: relative; width: 1px; z-index: 2; }\",\".framer-oKIcN .framer-wu3yzl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 70px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-oKIcN .framer-1egws3x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 63%; overflow: hidden; padding: 0px; position: absolute; top: 127px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-oKIcN .framer-cxxxk2 { flex: none; height: 93px; position: relative; width: 68px; }\",\".framer-oKIcN .framer-16wxyxp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 0px 100px 100px 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-13tfy6r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-172m57, .framer-oKIcN .framer-142ajb5 { flex: none; height: 90px; opacity: 0.9; overflow: hidden; position: relative; width: 15%; }\",\".framer-oKIcN .framer-evyfkb { flex: none; height: 90px; opacity: 0.5; overflow: hidden; position: relative; width: 15%; }\",\".framer-oKIcN .framer-1gjfb1s, .framer-oKIcN .framer-zx4ngh, .framer-oKIcN .framer-16p7sm8 { flex: none; height: 90px; opacity: 0.7; overflow: hidden; position: relative; width: 15%; }\",\".framer-oKIcN .framer-12nqxha-container { flex: none; height: 404px; position: relative; width: 75%; }\",\".framer-oKIcN .framer-1hppfi3-container, .framer-oKIcN .framer-sy494h-container, .framer-oKIcN .framer-6olfwh-container { height: auto; position: relative; width: 1032px; }\",\".framer-oKIcN .framer-lkmoqz { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 146px; height: min-content; justify-content: center; max-width: 1920px; overflow: hidden; padding: 350px 100px 350px 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-1130ox0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1gz6tph { --border-bottom-width: 0.5px; --border-color: rgba(99, 99, 99, 0.5); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-7gt1yr { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-faw83a { 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: 20px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-jsyrhy { align-content: center; align-items: center; background-color: var(--token-c43bdd45-b772-44b6-952e-6172d5cfc789, #e8e3df); border-bottom-left-radius: 90px; border-bottom-right-radius: 90px; border-top-left-radius: 90px; border-top-right-radius: 90px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 160px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 100px; top: calc(47.15261958997724% - 160px / 2); width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oKIcN .framer-1k7xfip { aspect-ratio: 0.64 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); overflow: visible; position: relative; width: 91px; }\",\".framer-oKIcN .framer-8pcg4l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 200px 100px 200px 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-nvd5hz { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 70px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-oKIcN .framer-dfauaq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-oKIcN .framer-1juh60w-container { flex: none; height: auto; pointer-events: auto; position: relative; width: 100%; }\",\".framer-oKIcN .framer-hat2qz-container, .framer-oKIcN .framer-mawhkz-container, .framer-oKIcN .framer-nh7cse-container, .framer-oKIcN .framer-zs0gmb-container { cursor: pointer; flex: none; height: auto; pointer-events: auto; position: relative; width: 100%; }\",\".framer-oKIcN .framer-11n57wn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 100px; position: relative; width: 1px; }\",\".framer-oKIcN .framer-afbzwq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 250px 150px 250px; position: relative; text-decoration: none; width: 100%; z-index: 1; }\",\".framer-oKIcN .framer-1sbn03z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-2qv6mn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-oKIcN .framer-1i4wxz9 { aspect-ratio: 0.8428571428571429 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 59px; }\",\".framer-oKIcN .framer-1okhdxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 250px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1d7yi5q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; height: auto; position: absolute; right: 0px; white-space: pre-wrap; width: 249px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oKIcN .framer-1rtcl19 { align-content: center; align-items: center; background-color: var(--token-62950d64-8538-47af-9d99-046fe63b622f, #202020); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oKIcN .framer-1yd74yy-container { flex: none; height: auto; position: relative; width: 1920px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKIcN.framer-72rtr7, .framer-oKIcN .framer-1pfc4he, .framer-oKIcN .framer-1yg7o70, .framer-oKIcN .framer-1d9p30i, .framer-oKIcN .framer-1ibo2ex, .framer-oKIcN .framer-1vaqv8, .framer-oKIcN .framer-1ckp0iz, .framer-oKIcN .framer-pevzpj, .framer-oKIcN .framer-r700zs, .framer-oKIcN .framer-yh6vrp, .framer-oKIcN .framer-btmqvb, .framer-oKIcN .framer-162t2gq, .framer-oKIcN .framer-4vl908, .framer-oKIcN .framer-1byg4l7, .framer-oKIcN .framer-u6b9ke, .framer-oKIcN .framer-qk9zdm, .framer-oKIcN .framer-1gak0u7, .framer-oKIcN .framer-h0668m, .framer-oKIcN .framer-1azu9eb, .framer-oKIcN .framer-tjwzed, .framer-oKIcN .framer-1ri79ee, .framer-oKIcN .framer-1jh0qiu, .framer-oKIcN .framer-1onc80u, .framer-oKIcN .framer-12h9fsl, .framer-oKIcN .framer-7ezxjq, .framer-oKIcN .framer-11mvj6q, .framer-oKIcN .framer-wboqkb, .framer-oKIcN .framer-1ofmmvk, .framer-oKIcN .framer-1sbapv7, .framer-oKIcN .framer-1n3p37s, .framer-oKIcN .framer-cwkket, .framer-oKIcN .framer-2iqsq1, .framer-oKIcN .framer-1voncnq, .framer-oKIcN .framer-wu3yzl, .framer-oKIcN .framer-1egws3x, .framer-oKIcN .framer-7eqcf7, .framer-oKIcN .framer-16wxyxp, .framer-oKIcN .framer-4zxfb2, .framer-oKIcN .framer-lkmoqz, .framer-oKIcN .framer-1130ox0, .framer-oKIcN .framer-1gz6tph, .framer-oKIcN .framer-a0kua1, .framer-oKIcN .framer-7gt1yr, .framer-oKIcN .framer-faw83a, .framer-oKIcN .framer-oeuuse, .framer-oKIcN .framer-1hrebg, .framer-oKIcN .framer-1dejlcz, .framer-oKIcN .framer-jsyrhy, .framer-oKIcN .framer-13razvy, .framer-oKIcN .framer-8pcg4l, .framer-oKIcN .framer-nvd5hz, .framer-oKIcN .framer-dfauaq, .framer-oKIcN .framer-1u9v3wj, .framer-oKIcN .framer-11n57wn, .framer-oKIcN .framer-afbzwq, .framer-oKIcN .framer-1sbn03z, .framer-oKIcN .framer-2qv6mn, .framer-oKIcN .framer-1okhdxm, .framer-oKIcN .framer-1rtcl19 { gap: 0px; } .framer-oKIcN.framer-72rtr7 > *, .framer-oKIcN .framer-1yg7o70 > *, .framer-oKIcN .framer-1vaqv8 > *, .framer-oKIcN .framer-cwkket > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oKIcN.framer-72rtr7 > :first-child, .framer-oKIcN .framer-1pfc4he > :first-child, .framer-oKIcN .framer-1yg7o70 > :first-child, .framer-oKIcN .framer-1vaqv8 > :first-child, .framer-oKIcN .framer-162t2gq > :first-child, .framer-oKIcN .framer-qk9zdm > :first-child, .framer-oKIcN .framer-1gak0u7 > :first-child, .framer-oKIcN .framer-1azu9eb > :first-child, .framer-oKIcN .framer-1ri79ee > :first-child, .framer-oKIcN .framer-1jh0qiu > :first-child, .framer-oKIcN .framer-1onc80u > :first-child, .framer-oKIcN .framer-7ezxjq > :first-child, .framer-oKIcN .framer-11mvj6q > :first-child, .framer-oKIcN .framer-wboqkb > :first-child, .framer-oKIcN .framer-1sbapv7 > :first-child, .framer-oKIcN .framer-1n3p37s > :first-child, .framer-oKIcN .framer-cwkket > :first-child, .framer-oKIcN .framer-1voncnq > :first-child, .framer-oKIcN .framer-lkmoqz > :first-child, .framer-oKIcN .framer-1130ox0 > :first-child, .framer-oKIcN .framer-a0kua1 > :first-child, .framer-oKIcN .framer-7gt1yr > :first-child, .framer-oKIcN .framer-oeuuse > :first-child, .framer-oKIcN .framer-1hrebg > :first-child, .framer-oKIcN .framer-1dejlcz > :first-child, .framer-oKIcN .framer-nvd5hz > :first-child, .framer-oKIcN .framer-dfauaq > :first-child, .framer-oKIcN .framer-11n57wn > :first-child, .framer-oKIcN .framer-afbzwq > :first-child { margin-top: 0px; } .framer-oKIcN.framer-72rtr7 > :last-child, .framer-oKIcN .framer-1pfc4he > :last-child, .framer-oKIcN .framer-1yg7o70 > :last-child, .framer-oKIcN .framer-1vaqv8 > :last-child, .framer-oKIcN .framer-162t2gq > :last-child, .framer-oKIcN .framer-qk9zdm > :last-child, .framer-oKIcN .framer-1gak0u7 > :last-child, .framer-oKIcN .framer-1azu9eb > :last-child, .framer-oKIcN .framer-1ri79ee > :last-child, .framer-oKIcN .framer-1jh0qiu > :last-child, .framer-oKIcN .framer-1onc80u > :last-child, .framer-oKIcN .framer-7ezxjq > :last-child, .framer-oKIcN .framer-11mvj6q > :last-child, .framer-oKIcN .framer-wboqkb > :last-child, .framer-oKIcN .framer-1sbapv7 > :last-child, .framer-oKIcN .framer-1n3p37s > :last-child, .framer-oKIcN .framer-cwkket > :last-child, .framer-oKIcN .framer-1voncnq > :last-child, .framer-oKIcN .framer-lkmoqz > :last-child, .framer-oKIcN .framer-1130ox0 > :last-child, .framer-oKIcN .framer-a0kua1 > :last-child, .framer-oKIcN .framer-7gt1yr > :last-child, .framer-oKIcN .framer-oeuuse > :last-child, .framer-oKIcN .framer-1hrebg > :last-child, .framer-oKIcN .framer-1dejlcz > :last-child, .framer-oKIcN .framer-nvd5hz > :last-child, .framer-oKIcN .framer-dfauaq > :last-child, .framer-oKIcN .framer-11n57wn > :last-child, .framer-oKIcN .framer-afbzwq > :last-child { margin-bottom: 0px; } .framer-oKIcN .framer-1pfc4he > *, .framer-oKIcN .framer-1ri79ee > *, .framer-oKIcN .framer-1jh0qiu > *, .framer-oKIcN .framer-1onc80u > *, .framer-oKIcN .framer-7ezxjq > *, .framer-oKIcN .framer-11mvj6q > *, .framer-oKIcN .framer-wboqkb > *, .framer-oKIcN .framer-a0kua1 > *, .framer-oKIcN .framer-7gt1yr > *, .framer-oKIcN .framer-oeuuse > *, .framer-oKIcN .framer-1hrebg > *, .framer-oKIcN .framer-1dejlcz > *, .framer-oKIcN .framer-nvd5hz > *, .framer-oKIcN .framer-dfauaq > *, .framer-oKIcN .framer-afbzwq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oKIcN .framer-1d9p30i > *, .framer-oKIcN .framer-1ibo2ex > *, .framer-oKIcN .framer-1ckp0iz > *, .framer-oKIcN .framer-pevzpj > *, .framer-oKIcN .framer-r700zs > *, .framer-oKIcN .framer-yh6vrp > *, .framer-oKIcN .framer-btmqvb > *, .framer-oKIcN .framer-4vl908 > *, .framer-oKIcN .framer-1byg4l7 > *, .framer-oKIcN .framer-u6b9ke > *, .framer-oKIcN .framer-h0668m > *, .framer-oKIcN .framer-1ofmmvk > *, .framer-oKIcN .framer-2iqsq1 > *, .framer-oKIcN .framer-1egws3x > *, .framer-oKIcN .framer-7eqcf7 > *, .framer-oKIcN .framer-4zxfb2 > *, .framer-oKIcN .framer-jsyrhy > *, .framer-oKIcN .framer-13razvy > *, .framer-oKIcN .framer-1u9v3wj > *, .framer-oKIcN .framer-2qv6mn > *, .framer-oKIcN .framer-1rtcl19 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oKIcN .framer-1d9p30i > :first-child, .framer-oKIcN .framer-1ibo2ex > :first-child, .framer-oKIcN .framer-1ckp0iz > :first-child, .framer-oKIcN .framer-pevzpj > :first-child, .framer-oKIcN .framer-r700zs > :first-child, .framer-oKIcN .framer-yh6vrp > :first-child, .framer-oKIcN .framer-btmqvb > :first-child, .framer-oKIcN .framer-4vl908 > :first-child, .framer-oKIcN .framer-1byg4l7 > :first-child, .framer-oKIcN .framer-u6b9ke > :first-child, .framer-oKIcN .framer-h0668m > :first-child, .framer-oKIcN .framer-tjwzed > :first-child, .framer-oKIcN .framer-12h9fsl > :first-child, .framer-oKIcN .framer-1ofmmvk > :first-child, .framer-oKIcN .framer-2iqsq1 > :first-child, .framer-oKIcN .framer-wu3yzl > :first-child, .framer-oKIcN .framer-1egws3x > :first-child, .framer-oKIcN .framer-7eqcf7 > :first-child, .framer-oKIcN .framer-16wxyxp > :first-child, .framer-oKIcN .framer-4zxfb2 > :first-child, .framer-oKIcN .framer-1gz6tph > :first-child, .framer-oKIcN .framer-faw83a > :first-child, .framer-oKIcN .framer-jsyrhy > :first-child, .framer-oKIcN .framer-13razvy > :first-child, .framer-oKIcN .framer-8pcg4l > :first-child, .framer-oKIcN .framer-1u9v3wj > :first-child, .framer-oKIcN .framer-1sbn03z > :first-child, .framer-oKIcN .framer-2qv6mn > :first-child, .framer-oKIcN .framer-1okhdxm > :first-child, .framer-oKIcN .framer-1rtcl19 > :first-child { margin-left: 0px; } .framer-oKIcN .framer-1d9p30i > :last-child, .framer-oKIcN .framer-1ibo2ex > :last-child, .framer-oKIcN .framer-1ckp0iz > :last-child, .framer-oKIcN .framer-pevzpj > :last-child, .framer-oKIcN .framer-r700zs > :last-child, .framer-oKIcN .framer-yh6vrp > :last-child, .framer-oKIcN .framer-btmqvb > :last-child, .framer-oKIcN .framer-4vl908 > :last-child, .framer-oKIcN .framer-1byg4l7 > :last-child, .framer-oKIcN .framer-u6b9ke > :last-child, .framer-oKIcN .framer-h0668m > :last-child, .framer-oKIcN .framer-tjwzed > :last-child, .framer-oKIcN .framer-12h9fsl > :last-child, .framer-oKIcN .framer-1ofmmvk > :last-child, .framer-oKIcN .framer-2iqsq1 > :last-child, .framer-oKIcN .framer-wu3yzl > :last-child, .framer-oKIcN .framer-1egws3x > :last-child, .framer-oKIcN .framer-7eqcf7 > :last-child, .framer-oKIcN .framer-16wxyxp > :last-child, .framer-oKIcN .framer-4zxfb2 > :last-child, .framer-oKIcN .framer-1gz6tph > :last-child, .framer-oKIcN .framer-faw83a > :last-child, .framer-oKIcN .framer-jsyrhy > :last-child, .framer-oKIcN .framer-13razvy > :last-child, .framer-oKIcN .framer-8pcg4l > :last-child, .framer-oKIcN .framer-1u9v3wj > :last-child, .framer-oKIcN .framer-1sbn03z > :last-child, .framer-oKIcN .framer-2qv6mn > :last-child, .framer-oKIcN .framer-1okhdxm > :last-child, .framer-oKIcN .framer-1rtcl19 > :last-child { margin-right: 0px; } .framer-oKIcN .framer-162t2gq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-oKIcN .framer-qk9zdm > * { margin: 0px; margin-bottom: calc(180px / 2); margin-top: calc(180px / 2); } .framer-oKIcN .framer-1gak0u7 > *, .framer-oKIcN .framer-1n3p37s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oKIcN .framer-1azu9eb > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-oKIcN .framer-tjwzed > *, .framer-oKIcN .framer-wu3yzl > *, .framer-oKIcN .framer-16wxyxp > *, .framer-oKIcN .framer-1gz6tph > *, .framer-oKIcN .framer-faw83a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oKIcN .framer-12h9fsl > * { margin: 0px; margin-left: calc(180px / 2); margin-right: calc(180px / 2); } .framer-oKIcN .framer-1sbapv7 > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } .framer-oKIcN .framer-1voncnq > * { margin: 0px; margin-bottom: calc(130px / 2); margin-top: calc(130px / 2); } .framer-oKIcN .framer-lkmoqz > * { margin: 0px; margin-bottom: calc(146px / 2); margin-top: calc(146px / 2); } .framer-oKIcN .framer-1130ox0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-oKIcN .framer-8pcg4l > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-oKIcN .framer-11n57wn > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-oKIcN .framer-1sbn03z > *, .framer-oKIcN .framer-1okhdxm > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-oKIcN[data-border=\"true\"]::after, .framer-oKIcN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1440px) and (max-width: 1919px) { .framer-oKIcN.framer-72rtr7 { width: 1440px; } .framer-oKIcN .framer-1kactrh-container { order: 0; width: 100%; } .framer-oKIcN .framer-1pfc4he { order: 1; } .framer-oKIcN .framer-1yg7o70 { padding: 0px 50px 0px 50px; } .framer-oKIcN .framer-oz4891 { padding: 0px 0px 0px 70px; } .framer-oKIcN .framer-1d9p30i { width: 1070px; } .framer-oKIcN .framer-1k8qmyz, .framer-oKIcN .framer-1yuwtpd { order: 0; } .framer-oKIcN .framer-1ibo2ex { gap: 5px; top: 54%; } .framer-oKIcN .framer-1vaqv8 { border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 60px 10px 20px 0px; will-change: var(--framer-will-change-override, transform); } .framer-oKIcN .framer-1ckp0iz { padding: 10px 0px 0px 0px; width: 605px; } .framer-oKIcN .framer-pxck2p { left: 76px; top: 0px; transform: unset; } .framer-oKIcN .framer-pevzpj { order: 2; } .framer-oKIcN .framer-qv3rn1, .framer-oKIcN .framer-8pcg4l { padding: 250px 50px 250px 50px; } .framer-oKIcN .framer-r700zs { height: 773px; width: 655px; } .framer-oKIcN .framer-yh6vrp { left: 666px; top: 235px; } .framer-oKIcN .framer-162t2gq { flex: 0.7 0 0px; justify-content: flex-end; width: 1px; } .framer-oKIcN .framer-u6b9ke { order: 3; } .framer-oKIcN .framer-qk9zdm { gap: 150px; padding: 0px 0px 0px 50px; } .framer-oKIcN .framer-ivkcfq { gap: 90px; justify-content: flex-start; } .framer-oKIcN .framer-hjq2pd { flex: 1 0 0px; height: 500px; width: 1px; } .framer-oKIcN .framer-1azu9eb { padding: 0px 0px 145px 0px; } .framer-oKIcN .framer-tjwzed { padding: 0px 150px 0px 0px; } .framer-oKIcN .framer-12h9fsl { gap: 0px; } .framer-oKIcN .framer-1ofmmvk { order: 5; } .framer-oKIcN .framer-2iqsq1 { order: 6; } .framer-oKIcN .framer-1voncnq { padding: 150px 50px 250px 50px; } .framer-oKIcN .framer-1egws3x { left: unset; right: 561px; transform: unset; } .framer-oKIcN .framer-16wxyxp { padding: 0px 50px 100px 50px; } .framer-oKIcN .framer-12nqxha-container { height: 440px; } .framer-oKIcN .framer-4zxfb2 { min-height: 93px; order: 4; } .framer-oKIcN .framer-13razvy { order: 7; } .framer-oKIcN .framer-dfauaq { flex: 2 0 0px; } .framer-oKIcN .framer-1u9v3wj { order: 8; } .framer-oKIcN .framer-11n57wn { padding: 100px 50px 100px 50px; } .framer-oKIcN .framer-afbzwq { padding: 150px 100px 150px 100px; } .framer-oKIcN .framer-1okhdxm { align-content: flex-end; align-items: flex-end; flex-direction: column; padding: 0px 0px 0px 150px; } .framer-oKIcN .framer-n8ywvn { flex: none; width: 100%; } .framer-oKIcN .framer-1d7yi5q { bottom: unset; position: relative; right: unset; } .framer-oKIcN .framer-1rtcl19 { order: 9; } .framer-oKIcN .framer-1yd74yy-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKIcN .framer-1ibo2ex, .framer-oKIcN .framer-qk9zdm, .framer-oKIcN .framer-ivkcfq, .framer-oKIcN .framer-12h9fsl, .framer-oKIcN .framer-1okhdxm { gap: 0px; } .framer-oKIcN .framer-1ibo2ex > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-oKIcN .framer-1ibo2ex > :first-child, .framer-oKIcN .framer-ivkcfq > :first-child, .framer-oKIcN .framer-12h9fsl > :first-child { margin-left: 0px; } .framer-oKIcN .framer-1ibo2ex > :last-child, .framer-oKIcN .framer-ivkcfq > :last-child, .framer-oKIcN .framer-12h9fsl > :last-child { margin-right: 0px; } .framer-oKIcN .framer-qk9zdm > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-oKIcN .framer-qk9zdm > :first-child, .framer-oKIcN .framer-1okhdxm > :first-child { margin-top: 0px; } .framer-oKIcN .framer-qk9zdm > :last-child, .framer-oKIcN .framer-1okhdxm > :last-child { margin-bottom: 0px; } .framer-oKIcN .framer-ivkcfq > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-oKIcN .framer-12h9fsl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oKIcN .framer-1okhdxm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-oKIcN.framer-72rtr7 { width: 810px; } .framer-oKIcN .framer-1kactrh-container { width: 100%; } .framer-oKIcN .framer-1yg7o70 { align-content: flex-start; align-items: flex-start; gap: 25px; max-width: unset; order: 0; padding: 0px 50px 0px 50px; } .framer-oKIcN .framer-oz4891 { gap: 120px; justify-content: flex-start; padding: 80px 0px 0px 0px; } .framer-oKIcN .framer-1d9p30i, .framer-oKIcN .framer-1yd74yy-container { flex: 1 0 0px; width: 1px; } .framer-oKIcN .framer-1vaqv8 { align-content: flex-start; align-items: flex-start; } .framer-oKIcN .framer-qv3rn1 { gap: 60px; justify-content: flex-start; max-width: unset; padding: 150px 50px 150px 50px; } .framer-oKIcN .framer-r700zs { flex: 1 0 0px; height: 485px; width: 1px; } .framer-oKIcN .framer-yh6vrp { left: 55%; top: 138px; transform: translateX(-50%); } .framer-oKIcN .framer-btmqvb { order: 0; } .framer-oKIcN .framer-1kmo8we { order: 1; } .framer-oKIcN .framer-162t2gq { flex: 1 0 0px; padding: 0px; width: 1px; } .framer-oKIcN .framer-4vl908, .framer-oKIcN .framer-1byg4l7 { padding: 0px 30px 0px 0px; } .framer-oKIcN .framer-qk9zdm { gap: 100px; padding: 0px 0px 0px 50px; } .framer-oKIcN .framer-ivkcfq { gap: 90px; justify-content: flex-start; } .framer-oKIcN .framer-hjq2pd { flex: 1 0 0px; height: 328px; width: 1px; } .framer-oKIcN .framer-1azu9eb { padding: 0px 0px 100px 0px; } .framer-oKIcN .framer-12h9fsl { gap: 0px; padding: 0px; } .framer-oKIcN .framer-1sbapv7, .framer-oKIcN .framer-8pcg4l { padding: 150px 50px 150px 50px; } .framer-oKIcN .framer-1voncnq { gap: 100px; padding: 150px 50px 150px 50px; } .framer-oKIcN .framer-1egws3x { left: unset; right: 409px; top: 94px; transform: unset; } .framer-oKIcN .framer-cxxxk2 { height: 70px; order: 0; width: 51px; } .framer-oKIcN .framer-16wxyxp { padding: 0px 50px 50px 50px; } .framer-oKIcN .framer-12nqxha-container { height: 414px; width: 100%; } .framer-oKIcN .framer-lkmoqz { padding: 150px 50px 150px 50px; z-index: 2; } .framer-oKIcN .framer-faw83a { gap: 50px; } .framer-oKIcN .framer-oeuuse { overflow: visible; } .framer-oKIcN .framer-jsyrhy { right: 50px; top: calc(30.80495356037154% - 160px / 2); } .framer-oKIcN .framer-dfauaq { flex: 1 0 0px; gap: 0px; } .framer-oKIcN .framer-11n57wn { padding: 100px 50px 100px 50px; } .framer-oKIcN .framer-afbzwq { gap: 0px; padding: 150px 50px 150px 50px; } .framer-oKIcN .framer-1okhdxm { flex-direction: column; padding: 0px; } .framer-oKIcN .framer-n8ywvn { flex: none; width: 100%; } .framer-oKIcN .framer-1d7yi5q { bottom: unset; position: relative; right: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKIcN .framer-1yg7o70, .framer-oKIcN .framer-oz4891, .framer-oKIcN .framer-qv3rn1, .framer-oKIcN .framer-qk9zdm, .framer-oKIcN .framer-ivkcfq, .framer-oKIcN .framer-12h9fsl, .framer-oKIcN .framer-1voncnq, .framer-oKIcN .framer-faw83a, .framer-oKIcN .framer-dfauaq, .framer-oKIcN .framer-afbzwq, .framer-oKIcN .framer-1okhdxm { gap: 0px; } .framer-oKIcN .framer-1yg7o70 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oKIcN .framer-1yg7o70 > :first-child, .framer-oKIcN .framer-qk9zdm > :first-child, .framer-oKIcN .framer-1voncnq > :first-child, .framer-oKIcN .framer-dfauaq > :first-child, .framer-oKIcN .framer-afbzwq > :first-child, .framer-oKIcN .framer-1okhdxm > :first-child { margin-top: 0px; } .framer-oKIcN .framer-1yg7o70 > :last-child, .framer-oKIcN .framer-qk9zdm > :last-child, .framer-oKIcN .framer-1voncnq > :last-child, .framer-oKIcN .framer-dfauaq > :last-child, .framer-oKIcN .framer-afbzwq > :last-child, .framer-oKIcN .framer-1okhdxm > :last-child { margin-bottom: 0px; } .framer-oKIcN .framer-oz4891 > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-oKIcN .framer-oz4891 > :first-child, .framer-oKIcN .framer-qv3rn1 > :first-child, .framer-oKIcN .framer-ivkcfq > :first-child, .framer-oKIcN .framer-12h9fsl > :first-child, .framer-oKIcN .framer-faw83a > :first-child { margin-left: 0px; } .framer-oKIcN .framer-oz4891 > :last-child, .framer-oKIcN .framer-qv3rn1 > :last-child, .framer-oKIcN .framer-ivkcfq > :last-child, .framer-oKIcN .framer-12h9fsl > :last-child, .framer-oKIcN .framer-faw83a > :last-child { margin-right: 0px; } .framer-oKIcN .framer-qv3rn1 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-oKIcN .framer-qk9zdm > *, .framer-oKIcN .framer-1voncnq > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-oKIcN .framer-ivkcfq > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-oKIcN .framer-12h9fsl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oKIcN .framer-faw83a > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-oKIcN .framer-dfauaq > *, .framer-oKIcN .framer-afbzwq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oKIcN .framer-1okhdxm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-oKIcN.framer-72rtr7 { width: 390px; } .framer-oKIcN .framer-1kactrh-container { height: auto; width: 100%; } .framer-oKIcN .framer-1pfc4he { gap: 0px; height: 640px; } .framer-oKIcN .framer-1yg7o70 { padding: 50px 30px 0px 30px; } .framer-oKIcN .framer-oz4891 { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 50px 0px 0px 0px; } .framer-oKIcN .framer-1d9p30i { order: 0; width: 100%; } .framer-oKIcN .framer-1vaqv8 { align-content: flex-start; align-items: flex-start; padding: 50px 10px 80px 0px; width: 100%; } .framer-oKIcN .framer-1ckp0iz { width: 100%; } .framer-oKIcN .framer-pevzpj, .framer-oKIcN .framer-u6b9ke, .framer-oKIcN .framer-1ofmmvk, .framer-oKIcN .framer-2iqsq1, .framer-oKIcN .framer-7eqcf7, .framer-oKIcN .framer-4zxfb2, .framer-oKIcN .framer-13razvy, .framer-oKIcN .framer-1u9v3wj { flex-direction: column; } .framer-oKIcN .framer-qv3rn1 { flex: none; flex-direction: column; gap: 35px; justify-content: flex-start; max-width: unset; padding: 100px 30px 100px 30px; width: 100%; } .framer-oKIcN .framer-r700zs { height: 265px; width: 100%; } .framer-oKIcN .framer-yh6vrp { justify-content: flex-start; left: unset; position: relative; top: unset; width: 100%; } .framer-oKIcN .framer-btmqvb { height: 59px; left: 174px; order: 0; right: unset; top: 0px; width: 39px; } .framer-oKIcN .framer-1kmo8we { order: 1; } .framer-oKIcN .framer-162t2gq { gap: 15px; padding: 0px; width: 100%; } .framer-oKIcN .framer-1byg4l7 { padding: 0px; } .framer-oKIcN .framer-qk9zdm { flex: none; gap: 70px; padding: 0px 30px 0px 30px; width: 100%; } .framer-oKIcN .framer-ivkcfq { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-oKIcN .framer-1gak0u7 { align-content: center; align-items: center; flex-direction: row; gap: unset; justify-content: space-between; order: 1; width: 100%; } .framer-oKIcN .framer-hjq2pd { height: 220px; order: 0; width: 100%; } .framer-oKIcN .framer-1azu9eb { flex-direction: row; padding: 0px 0px 100px 0px; } .framer-oKIcN .framer-tjwzed { flex: 1 0 0px; flex-direction: column; gap: 50px; width: 1px; } .framer-oKIcN .framer-1ri79ee, .framer-oKIcN .framer-1jh0qiu, .framer-oKIcN .framer-1onc80u, .framer-oKIcN .framer-7ezxjq, .framer-oKIcN .framer-11mvj6q, .framer-oKIcN .framer-wboqkb, .framer-oKIcN .framer-a0kua1, .framer-oKIcN .framer-7gt1yr, .framer-oKIcN .framer-1hrebg, .framer-oKIcN .framer-1dejlcz, .framer-oKIcN .framer-n8ywvn { flex: none; width: 100%; } .framer-oKIcN .framer-12h9fsl { flex: 1 0 0px; flex-direction: column; gap: 50px; padding: 0px; width: 1px; } .framer-oKIcN .framer-1sbapv7 { flex: none; padding: 150px 30px 150px 30px; width: 100%; } .framer-oKIcN .framer-1voncnq { flex: none; gap: 60px; padding: 150px 30px 80px 30px; width: 100%; } .framer-oKIcN .framer-wu3yzl { padding: 0px 0px 60px 0px; } .framer-oKIcN .framer-16wxyxp { flex: none; padding: 0px 0px 100px 0px; width: 100%; } .framer-oKIcN .framer-13tfy6r { gap: 23px; justify-content: center; } .framer-oKIcN .framer-172m57, .framer-oKIcN .framer-142ajb5, .framer-oKIcN .framer-evyfkb, .framer-oKIcN .framer-1gjfb1s, .framer-oKIcN .framer-zx4ngh, .framer-oKIcN .framer-16p7sm8 { width: 28%; } .framer-oKIcN .framer-12nqxha-container { height: 690px; width: 100%; } .framer-oKIcN .framer-lkmoqz { flex: none; flex-direction: row; gap: 0px; padding: 100px 30px 70px 30px; width: 100%; z-index: 2; } .framer-oKIcN .framer-1130ox0 { flex: 1 0 0px; gap: 0px; width: 1px; } .framer-oKIcN .framer-1gz6tph { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex-direction: column; gap: 50px; } .framer-oKIcN .framer-faw83a { flex-direction: column; gap: 50px; padding: 0px 0px 50px 0px; } .framer-oKIcN .framer-oeuuse { flex: none; overflow: visible; width: 100%; } .framer-oKIcN .framer-jsyrhy { right: 30px; top: 100px; } .framer-oKIcN .framer-8pcg4l { flex: none; flex-direction: column; gap: 0px; padding: 100px 30px 100px 30px; width: 100%; } .framer-oKIcN .framer-nvd5hz { flex: none; width: 50%; } .framer-oKIcN .framer-dfauaq { flex: none; gap: 0px; width: 100%; } .framer-oKIcN .framer-11n57wn { flex: none; padding: 100px 30px 100px 30px; width: 100%; } .framer-oKIcN .framer-afbzwq { gap: 0px; padding: 100px 30px 100px 30px; } .framer-oKIcN .framer-19w17o1 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-oKIcN .framer-1okhdxm { flex-direction: column; padding: 0px; } .framer-oKIcN .framer-1d7yi5q { bottom: unset; position: relative; right: unset; width: 100%; } .framer-oKIcN .framer-1yd74yy-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oKIcN .framer-1pfc4he, .framer-oKIcN .framer-oz4891, .framer-oKIcN .framer-pevzpj, .framer-oKIcN .framer-qv3rn1, .framer-oKIcN .framer-162t2gq, .framer-oKIcN .framer-u6b9ke, .framer-oKIcN .framer-qk9zdm, .framer-oKIcN .framer-ivkcfq, .framer-oKIcN .framer-1gak0u7, .framer-oKIcN .framer-1azu9eb, .framer-oKIcN .framer-tjwzed, .framer-oKIcN .framer-12h9fsl, .framer-oKIcN .framer-1ofmmvk, .framer-oKIcN .framer-2iqsq1, .framer-oKIcN .framer-1voncnq, .framer-oKIcN .framer-7eqcf7, .framer-oKIcN .framer-13tfy6r, .framer-oKIcN .framer-4zxfb2, .framer-oKIcN .framer-lkmoqz, .framer-oKIcN .framer-1130ox0, .framer-oKIcN .framer-1gz6tph, .framer-oKIcN .framer-faw83a, .framer-oKIcN .framer-13razvy, .framer-oKIcN .framer-8pcg4l, .framer-oKIcN .framer-dfauaq, .framer-oKIcN .framer-1u9v3wj, .framer-oKIcN .framer-afbzwq, .framer-oKIcN .framer-1okhdxm { gap: 0px; } .framer-oKIcN .framer-1pfc4he > *, .framer-oKIcN .framer-oz4891 > *, .framer-oKIcN .framer-1130ox0 > *, .framer-oKIcN .framer-8pcg4l > *, .framer-oKIcN .framer-dfauaq > *, .framer-oKIcN .framer-afbzwq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oKIcN .framer-1pfc4he > :first-child, .framer-oKIcN .framer-oz4891 > :first-child, .framer-oKIcN .framer-pevzpj > :first-child, .framer-oKIcN .framer-qv3rn1 > :first-child, .framer-oKIcN .framer-162t2gq > :first-child, .framer-oKIcN .framer-u6b9ke > :first-child, .framer-oKIcN .framer-qk9zdm > :first-child, .framer-oKIcN .framer-ivkcfq > :first-child, .framer-oKIcN .framer-tjwzed > :first-child, .framer-oKIcN .framer-12h9fsl > :first-child, .framer-oKIcN .framer-1ofmmvk > :first-child, .framer-oKIcN .framer-2iqsq1 > :first-child, .framer-oKIcN .framer-1voncnq > :first-child, .framer-oKIcN .framer-7eqcf7 > :first-child, .framer-oKIcN .framer-4zxfb2 > :first-child, .framer-oKIcN .framer-1130ox0 > :first-child, .framer-oKIcN .framer-1gz6tph > :first-child, .framer-oKIcN .framer-faw83a > :first-child, .framer-oKIcN .framer-13razvy > :first-child, .framer-oKIcN .framer-8pcg4l > :first-child, .framer-oKIcN .framer-dfauaq > :first-child, .framer-oKIcN .framer-1u9v3wj > :first-child, .framer-oKIcN .framer-afbzwq > :first-child, .framer-oKIcN .framer-1okhdxm > :first-child { margin-top: 0px; } .framer-oKIcN .framer-1pfc4he > :last-child, .framer-oKIcN .framer-oz4891 > :last-child, .framer-oKIcN .framer-pevzpj > :last-child, .framer-oKIcN .framer-qv3rn1 > :last-child, .framer-oKIcN .framer-162t2gq > :last-child, .framer-oKIcN .framer-u6b9ke > :last-child, .framer-oKIcN .framer-qk9zdm > :last-child, .framer-oKIcN .framer-ivkcfq > :last-child, .framer-oKIcN .framer-tjwzed > :last-child, .framer-oKIcN .framer-12h9fsl > :last-child, .framer-oKIcN .framer-1ofmmvk > :last-child, .framer-oKIcN .framer-2iqsq1 > :last-child, .framer-oKIcN .framer-1voncnq > :last-child, .framer-oKIcN .framer-7eqcf7 > :last-child, .framer-oKIcN .framer-4zxfb2 > :last-child, .framer-oKIcN .framer-1130ox0 > :last-child, .framer-oKIcN .framer-1gz6tph > :last-child, .framer-oKIcN .framer-faw83a > :last-child, .framer-oKIcN .framer-13razvy > :last-child, .framer-oKIcN .framer-8pcg4l > :last-child, .framer-oKIcN .framer-dfauaq > :last-child, .framer-oKIcN .framer-1u9v3wj > :last-child, .framer-oKIcN .framer-afbzwq > :last-child, .framer-oKIcN .framer-1okhdxm > :last-child { margin-bottom: 0px; } .framer-oKIcN .framer-pevzpj > *, .framer-oKIcN .framer-u6b9ke > *, .framer-oKIcN .framer-1ofmmvk > *, .framer-oKIcN .framer-2iqsq1 > *, .framer-oKIcN .framer-7eqcf7 > *, .framer-oKIcN .framer-4zxfb2 > *, .framer-oKIcN .framer-13razvy > *, .framer-oKIcN .framer-1u9v3wj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oKIcN .framer-qv3rn1 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-oKIcN .framer-162t2gq > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-oKIcN .framer-qk9zdm > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-oKIcN .framer-ivkcfq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oKIcN .framer-1gak0u7 > *, .framer-oKIcN .framer-1gak0u7 > :first-child, .framer-oKIcN .framer-1gak0u7 > :last-child { margin: 0px; } .framer-oKIcN .framer-1azu9eb > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-oKIcN .framer-1azu9eb > :first-child, .framer-oKIcN .framer-13tfy6r > :first-child, .framer-oKIcN .framer-lkmoqz > :first-child { margin-left: 0px; } .framer-oKIcN .framer-1azu9eb > :last-child, .framer-oKIcN .framer-13tfy6r > :last-child, .framer-oKIcN .framer-lkmoqz > :last-child { margin-right: 0px; } .framer-oKIcN .framer-tjwzed > *, .framer-oKIcN .framer-12h9fsl > *, .framer-oKIcN .framer-1gz6tph > *, .framer-oKIcN .framer-faw83a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-oKIcN .framer-1voncnq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-oKIcN .framer-13tfy6r > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-oKIcN .framer-lkmoqz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oKIcN .framer-1okhdxm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10989\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cpiuN3vTg\":{\"layout\":[\"fixed\",\"auto\"]},\"UPT17grgh\":{\"layout\":[\"fixed\",\"auto\"]},\"sAqNOPTGL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-oKIcN\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10989,width:1920};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationCopyFonts,...ButtonFonts,...VideoFonts,...ArrowUpFonts,...ServiceItemV1Fonts,...TestimonyItemFonts,...SlideshowFonts,...FaqItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"10989\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cpiuN3vTg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UPT17grgh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sAqNOPTGL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "o1CAA2Z,IAAIA,GAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,IAAgBA,EAAc,CAAC,EAAE,EAAE,IAAIC,GAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,IAAUA,EAAQ,CAAC,EAAE,EACtvB,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQhH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAqBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC/6B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,GAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOlK,IAAIC,GAAoC,GAAY3B,GAAwB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,GAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,OAAAC,EAAO,cAAAC,EAAc,UAAUC,EAAc,OAAAC,GAAO,KAAA7B,EAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,GAASC,GAAmB,EAAQC,EAAiB5C,EAAO,IAAI,EAAQ6C,GAAgB7C,EAAO,IAAI,EAAQ8C,GAAWC,GAAc,EAAQC,GAAaC,GAAUpE,CAAK,EAGrjBqE,GAAiBJ,GAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,GAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,GAAaL,GAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAAlC,GAAK,MAAAE,GAAM,YAAAP,EAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,KAAqBpC,EAAYJ,GAAK,EAAOE,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,IAAqBI,KAAmB,gBAAwBC,GAAa7C,GAAK,EAAOE,GAAM,EAAE,EAAE,CAAC0C,GAAiBC,EAAY,CAAC,EAEpJG,EAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,MAAO,CAAC,IAAMkC,EAAiBC,GAAc9B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIzB,IAK1NsD,GAAoE,KAOpEF,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU7B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F4B,EAAU,IAAI,CAAC,GAAIE,GAAc9B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS+B,GAAOxD,GAAYwD,CAAK,CAAC,CAAE,EAAE,CAAC/B,CAAQ,CAAC,EACrHgC,GAAW,IAAI,CAAId,EAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,IAAiBjC,IAAM,CAACgC,EAAiB,UAAQtC,GAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,GAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,EAAiB,QAAQhD,EAAS,QAAQ,OAAOY,GAAM,EAAG,CAAC,EAAE,IAAMoD,GAAIC,EAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGvC,IAAU5C,EAAQ,IAAI,OAAO8C,EAAOqC,EAAS,GAAGvC,IAAU5C,EAAQ,MAAM,OAAO6C,EAAQsC,CAAS,EAAE,CAACvC,EAAQC,EAAQC,EAAO4B,CAAS,CAAC,EACvI,OAAAC,EAAU,IAAI,CAAIZ,IAAU9C,EAAS,SAASsD,KAAmB,YAAY,WAAW,IAAI5C,GAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,EAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,IAAsC,GAAG,IAAI,EAAE,CAACA,EAAM,CAAC,EAC8FhD,EAAK,QAAQ,CAAC,QAAAwC,GAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,IAAIuB,GAAI,KAAKhD,GAAK,IAAIhB,EAAS,SAASW,GAAqDsB,IAAStB,CAAC,EAAI,QAAQA,GAAmDuB,IAAQvB,CAAC,EAAI,OAAOA,GAAiDwB,IAAOxB,CAAC,EAAI,QAAQA,GAA+CyB,IAAMzB,CAAC,EAAI,SAAS2C,KAAmB,WAAW,OAAOX,EAAcD,EAAO,OAAU,aAAnpB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,IAAaoD,GAA+C,GAAG,GAAG,EAAKH,KAAmB,YAAW5C,GAAK,EAAE,EAA4f,SAASQ,EAAS,MAAMgC,GAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,GAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,GAAM,YAAY,QAAQA,GAAM,aAAa,CAAC,QAAQZ,EAAQ,IAAI,OAAO,4FAA4F,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAUD,EAAc,MAAM,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMqF,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAACxF,EAAc,MAAMA,EAAc,KAAKA,EAAc,QAAQA,EAAc,UAAUA,EAAc,IAAK,EAAEyF,GAAoB5E,GAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAACzF,EAAQ,IAAIA,EAAQ,KAAK,CAAC,EAAE,OAAO,CAAC,KAAKyF,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAUF,EAAQ,KAAM,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKyF,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAUF,EAAQ,GAAI,CAAC,EAAE,QAAQ,CAAC,KAAKyF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMzxF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECpE6J,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,OAAAC,EAAO,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,EAAM,WAAW,kBAAkB,UAAUJ,GAAMI,EAAM,UAAU,QAAQT,GAAwBS,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUL,GAAOK,EAAM,WAAW,CAAC,IAAI,0FAA0F,OAAO,qWAAqW,EAAE,UAAUH,GAAQG,EAAM,WAAW,IAAI,GAAUC,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASQ,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiBxB,GAAuBD,EAAM3B,CAAQ,EAAmFqD,GAAkBC,EAAG1D,GAAkB,GAA5F,CAAawC,GAAuBA,EAAS,CAAuE,EAAQmB,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQd,IAAc,YAA6Ce,GAAsBC,EAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB/C,EAAKgD,EAAY,CAAC,GAAGzB,GAAUqB,GAAgB,SAAsB5C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKiD,GAAK,CAAC,KAAKtB,EAAU,OAAO,YAAY,aAAa,GAAM,SAAsBuB,EAAMhD,EAAO,EAAE,CAAC,GAAG0B,EAAU,GAAGI,GAAgB,UAAU,GAAGQ,EAAGD,GAAkB,iBAAiBjB,EAAUQ,CAAU,CAAC,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAAKwB,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,GAAGpB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,iBAAiB,qEAAqE,qBAAqB,KAAK,CAAC,EAAE,GAAGrC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAS,CAAciB,EAAMhD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexB,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,EAAE,EAAE,KAAKb,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,qEAAqE,QAAQ,CAAC,EAAE,UAAU,CAAC,qBAAqB,qEAAqE,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,SAAsBgB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEU,EAAY,GAAgB3C,EAAKoD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,IAA2BP,GAAmB,GAAG,KAAKA,GAAmB,QAAQ,KAAK,kBAAkB,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,GAAGxD,GAAkBoC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,OAAO,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC,EAAE,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqE,IAA2BP,GAAmB,GAAG,KAAKA,GAAmB,QAAQ,KAAK,kBAAkB,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,GAAGxD,GAAkBoC,CAAS,CAAC,CAAC,CAAC,EAAEG,EAAYI,CAAc,CAAC,CAAC,EAAejC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBY,EAAMhD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKsD,EAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2KAA2K,aAAa,YAAY,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,IAAI,yWAAyW,aAAa,WAAW,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,EAAejC,EAAKsD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+lCAA+lC,aAAa,YAAY,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,IAAI,kyCAAkyC,aAAa,UAAU,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,gFAAgF,qTAAqT,4RAA4R,+IAA+I,wLAAwL,sQAAsQ,iHAAiH,yJAAyJ,oLAAoL,4gBAA4gB,oMAAoM,yFAAyF,sIAAsI,utBAAutB,gJAAgJ,wEAAwE,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASpmfC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kBAAkB,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,uIAAuI,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTp3D,IAAIC,GAAE,CAAC,WAAW,EAAlB,IAAqCC,GAAE,CAAC,UAAU,iBAAiB,EAAwF,IAAIC,GAAE,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAEC,GAAEC,GAAa,OAAOA,GAAjB,UAA2BA,IAAP,MAAoB,OAAOA,EAAE,KAAnB,SAAuBA,EAAY,OAAOA,GAAjB,SAAmB,CAAC,IAAIA,CAAC,EAAE,OAAOC,GAAE,CAAC,CAAC,MAAMC,EAAE,SAASC,CAAC,IAAI,CAAC,IAAIC,EAAIC,GAAWC,CAAC,EAAEC,EAAQL,GAAIE,EAAE,WAAWI,EAAIC,EAAQ,KAAK,CAAC,GAAGL,EAAE,WAAWG,CAAC,GAAG,CAAC,KAAK,UAAUA,CAAC,CAAC,CAAC,EAAE,OAAoBG,EAAEJ,EAAE,SAAS,CAAC,MAAME,EAAE,SAASL,CAAC,CAAC,CAAE,EAAEQ,GAAE,CAAC,CAAC,WAAWX,EAAE,OAAOE,EAAE,UAAUC,EAAE,GAAGC,EAAE,MAAMG,EAAE,KAAKC,EAAE,MAAMI,EAAE,GAAGC,CAAC,IAAI,CAAC,IAAIC,EAAEC,EAAEC,EAAEN,EAAE,MAAM,CAAC,GAAGG,EAAE,WAAkBC,EAAQX,GAAIU,EAAE,aAAtB,MAA2CC,IAAT,OAAWA,EAAE,qFAAqF,WAAkBC,EAAQR,GAAIM,EAAE,aAAtB,MAA2CE,IAAT,OAAWA,EAAE,CAAC,IAAI,oEAAoE,OAAO,kKAAkK,EAAE,WAAkBC,EAAQhB,GAAIa,EAAE,aAAtB,MAA2CG,IAAT,OAAWA,EAAE,iCAAiC,WAAkBN,EAAQF,GAAIK,EAAE,aAAtB,MAA2CH,IAAT,OAAWA,EAAE,msBAAmsB,CAAE,EAAEO,GAAE,CAACjB,EAAEE,IAAIA,EAAE,KAAK,GAAG,EAAEF,EAAE,iBAAiBkB,GAAiBC,EAAW,SAAS,EAAEf,EAAE,CAAC,GAAG,CAAC,aAAaG,CAAC,EAAEa,EAAE,EAAE,CAAC,MAAMJ,EAAE,UAAUK,EAAE,SAASC,EAAE,QAAQC,EAAE,UAAUL,EAAE,UAAUM,EAAE,UAAUC,EAAE,UAAUC,EAAE,GAAGC,CAAC,EAAEhB,GAAE,CAAC,EAAE,CAAC,YAAYiB,EAAE,WAAWC,EAAE,eAAeC,EAAE,gBAAgBC,EAAE,WAAWC,GAAE,WAAWC,EAAE,SAASC,CAAC,EAAEC,GAAE,CAAC,WAAWC,GAAE,eAAe,YAAY,YAAYtC,GAAE,QAAQyB,EAAE,kBAAkBc,EAAC,CAAC,EAAEC,EAAErB,GAAE,EAAEiB,CAAC,EAAEK,EAAIC,EAAO,IAAI,EAAEC,EAAIC,EAAM,EAAEC,EAAE,CAAGC,GAAYA,GAAYA,EAAS,EAAE,OAAoBlC,EAAEmC,EAAE,CAAC,GAASvB,GAAImB,EAAE,SAAsB/B,EAAEoC,EAAE,IAAI,CAAC,QAAQvB,EAAE,QAAQW,EAAE,aAAa,IAAIH,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,WAAW,IAAIA,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,WAAW,IAAIA,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,MAAM,IAAIA,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,YAAY,IAAIA,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,UAAUgB,EAAE,eAAe,GAAGJ,EAAEd,CAAC,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsBnB,EAAET,GAAE,CAAC,MAAMgC,EAAE,SAAsBvB,EAAEoC,EAAE,IAAI,CAAC,GAAGnB,EAAE,UAAUoB,EAAE,gBAAgB1B,CAAC,EAAE,mBAAmB,UAAU,iBAAiBiB,EAAE,SAAS,YAAY,IAAUlC,GAAImC,EAAE,MAAM,CAAC,GAAGvB,CAAC,EAAE,SAAsBgC,EAAEF,EAAE,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBR,EAAE,SAAS,YAAY,SAAS,CAAc5B,EAAEuC,EAAE,CAAC,sBAAsB,GAAG,SAAsBvC,EAAIwC,EAAS,CAAC,SAAsBxC,EAAEoC,EAAE,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gGAAgG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiBR,EAAE,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKd,EAAE,kBAAkB,MAAM,mBAAmB,EAAE,CAAC,EAAed,EAAEuC,EAAE,CAAC,sBAAsB,GAAG,SAAsBvC,EAAIwC,EAAS,CAAC,SAAsBxC,EAAEoC,EAAE,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,ujBAAujB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiBR,EAAE,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKb,EAAE,kBAAkB,MAAM,mBAAmB,EAAE,CAAC,EAAeuB,EAAEF,EAAE,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBR,EAAE,SAAS,YAAY,SAAS,CAAc5B,EAAEyC,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,GAAGpD,GAAEmB,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBoB,EAAE,SAAS,WAAW,CAAC,EAAe5B,EAAEuC,EAAE,CAAC,sBAAsB,GAAG,SAAsBvC,EAAIwC,EAAS,CAAC,SAAsBxC,EAAEoC,EAAE,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiBR,EAAE,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAE,kBAAkB,MAAM,mBAAmB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAEF,GAAE,CAAC,sZAAsZ,kFAAkF,mDAAmD,2RAA2R,+RAA+R,kMAAkM,0RAA0R,4KAA4K,sKAAsK,02BAA02B,GAAK4B,GAAI,GAAKA,GAAI,GAAKA,EAAG,EAAE3B,GAAE4B,EAAEnC,GAAEM,GAAE,cAAc,EAAS8B,GAAQ7B,GAAEA,GAAE,YAAY,iBAAiBA,GAAE,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAE8B,GAAE9B,GAAE,CAAC,UAAU,CAAC,wBAAwB,gHAAgH,MAAM,QAAQ,KAAK+B,EAAE,eAAe,EAAE,UAAU,CAAC,aAAa,qFAAqF,gBAAgB,GAAG,MAAM,YAAY,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,aAAa,osBAAosB,gBAAgB,GAAG,YAAY,GAAG,MAAM,OAAO,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,aAAa,iCAAiC,gBAAgB,GAAG,YAAY,GAAG,MAAM,cAAc,KAAKA,EAAE,MAAM,CAAC,CAAC,EAAEC,EAAEhC,GAAE,CAAC,GAAKiC,GAAM,GAAKA,GAAM,GAAKA,EAAK,CAAC,ECAn3T,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUuB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7B,EAAQ,GAAG8B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAxC,CAAQ,EAAEyC,GAAgB,CAAC,eAAe,YAAY,gBAAA9C,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBpB,GAAuBD,EAAMrB,CAAQ,EAAuC2C,EAAkBC,EAAGhD,GAAkB,GAAhD,CAAC,CAAuE,EAAQiD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBrC,EAAKsC,EAAY,CAAC,GAAGpB,GAAUgB,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBiD,EAAMrC,EAAO,IAAI,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,GAAG/B,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEmC,EAAYI,CAAc,EAAE,SAAS,CAAcxB,EAAKwC,EAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,iBAAiBX,EAAiB,SAAS,kBAAkB,QAAQ,EAAE,IAAI,2KAA2K,aAAa,YAAY,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,IAAI,yWAAyW,aAAa,WAAW,CAAC,EAAEmC,EAAYI,CAAc,CAAC,CAAC,EAAexB,EAAKwC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBX,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+lCAA+lC,aAAa,YAAY,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,IAAI,29BAA29B,aAAa,UAAU,CAAC,EAAEmC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,gFAAgF,qHAAqH,wJAAwJ,mLAAmL,sEAAsE,EAQrwMC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRk/C,IAAMI,GAAoBC,EAASC,EAAc,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAqCC,GAA0BC,GAAOC,CAAK,CAAC,EAAQC,GAAWR,EAASS,EAAK,EAAQC,GAAaV,EAASW,EAAO,EAAQC,GAAmBZ,EAASa,EAAa,EAAQC,GAAmBd,EAASe,EAAa,EAAQC,GAAehB,EAASiB,EAAS,EAAQC,GAAalB,EAASmB,EAAO,EAAQC,GAAYd,GAAOC,CAAK,EAAQc,GAAYrB,EAASsB,EAAM,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,GAAG,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,GAAG,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEf,GAASI,CAAK,EAAQY,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUT,CAAY,EAAE,GAAGS,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQnC,GAAY,EAAK,EAAQ4C,EAAe,OAA8MC,EAAkBC,EAAG5C,GAAkB,GAA/M,CAAa+B,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAShD,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASwC,CAAW,EAAtD,GAAyFS,GAAOC,GAAU,EAAQC,EAAa,IAAQ,CAACnD,GAAU,GAAiBwC,IAAc,YAA6CY,EAAa,IAASpD,GAAU,EAAiBwC,IAAc,YAAtB,GAAmEa,EAAa,IAASrD,GAAU,EAAiBwC,IAAc,YAAtB,GAAmEc,EAAsBC,EAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAzD,EAAiB,EAAE,SAAsB0D,EAAMC,EAAY,CAAC,GAAG5B,GAAUqB,EAAgB,SAAS,CAAcpC,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAe6C,EAAME,EAAO,IAAI,CAAC,GAAG3B,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIL,GAAKmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAAcb,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAMiB,GAAmB,OAAO,OAAO,EAAE,UAAU,CAAC,OAAO,GAAG,MAAMA,GAAmB,OAAO,OAAO,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,OAAO,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKzC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAKtC,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQwB,GAAU,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAMqD,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,OAAO,QAAQpD,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,GAAG,EAAE,SAAsBuD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,GAAG,UAAU,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAc1C,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qCAAqC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAc1C,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,mBAAmB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,mBAAmB,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,EAAY,GAAgB9B,EAAK,MAAM,CAAC,UAAU,8CAA8C,mBAAmB,QAAQ,SAAsBA,EAAKkD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,QAAQ,EAAE,IAAI,qiBAAqiB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE,SAAsBtB,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,6HAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkBZ,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKmD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BpD,EAAK8C,EAA0B,CAAC,OAAO,GAAG,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU8B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBpD,EAAKvC,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU2F,EAAc,CAAC,EAAE,UAAU,kBAAkB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,MAAM,QAAQiB,GAAmB,OAAO,OAAO,WAAW,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,MAAM,YAAYA,GAAmB,OAAO,OAAO,4BAA4B,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsBG,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAKjC,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,4FAA4F,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgBjC,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,0CAA0C,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsBvC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,2DAA2D,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKkD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,QAAQ,EAAE,IAAI,sNAAsN,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAelD,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,SAAsB1C,EAAK,KAAK,CAAC,CAAC,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,4NAA4N,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,OAAoB1C,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,OAAoB1C,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,OAAoB1C,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKkD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,QAAQ,EAAE,IAAI,yoBAAyoB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYiB,GAAmB,OAAO,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBvC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK/B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,QAAqB1C,EAAK,KAAK,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK/B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,WAAwB1C,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK/B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,iBAA8B1C,EAAK,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,SAAsB/C,EAAK/B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,eAA4B1C,EAAK,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK/B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,gBAA6B1C,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAc1C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK/B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,WAAwB1C,EAAK,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc1C,EAAKmD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6BrD,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYiB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,2BAA2B,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,WAAW,KAAK,WAAW,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBrD,EAAK7B,GAAc,CAAC,UAAU,mBAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,UAAUkF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU9D,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAKmD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BtD,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYiB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,2BAA2B,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,WAAW,KAAK,WAAW,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUgC,EAAe,CAAC,EAAE,UAAU/D,EAAY,CAAC,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAU+D,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBtD,EAAK7B,GAAc,CAAC,UAAU,mBAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,UAAUmF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU/D,EAAY,CAAC,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,kBAAkB,EAAE,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAKmD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BvD,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYiB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,2BAA2B,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,KAAK,aAAa,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiC,EAAe,CAAC,EAAE,UAAUhE,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAUgE,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBvD,EAAK7B,GAAc,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,UAAUoF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUhE,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,kBAAkB,EAAE,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAKmD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BxD,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYiB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,2BAA2B,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,kBAAkB,KAAK,kBAAkB,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBxD,EAAK7B,GAAc,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,UAAUqF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUjE,EAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAKmD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BzD,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYiB,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,2BAA2B,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,GAAG,UAAU,KAAK,SAAS,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUmC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBzD,EAAK7B,GAAc,CAAC,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,UAAUsF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUlE,EAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,mBAAgC1C,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,CAAC,mBAAgC1C,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEkC,EAAa,GAAgBlC,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,QAAQ,SAAsBA,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,woBAAwoB,aAAa,WAAW,CAAC,EAAE,SAAsBtB,EAAKkD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,QAAQ,EAAE,IAAI,0oBAA0oB,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc1C,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,kCAAkC,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,sBAAsB,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,sBAAsB,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,UAAU,mBAAmB,SAAS,EAAE,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,KAAK,gBAAgB,EAAE,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,UAAU,sEAAsE,WAAW,sEAAsE,kBAAkB,EAAI,CAAC,EAAE,UAAU,CAAC,aAAa,CAAC,UAAU,mBAAmB,SAAS,EAAE,aAAa,GAAG,mBAAmB,GAAG,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,eAAe,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,UAAU,sEAAsE,WAAW,sEAAsE,kBAAkB,EAAI,EAAE,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,CAAC,EAAE,UAAU,CAAC,aAAa,CAAC,UAAU,mBAAmB,SAAS,EAAE,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,eAAe,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,UAAU,sEAAsE,WAAW,sEAAsE,kBAAkB,EAAI,CAAC,CAAC,EAAE,SAAsBtB,EAAKzB,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,mBAAmB,SAAS,EAAE,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,KAAK,gBAAgB,EAAE,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,UAAU,sEAAsE,WAAW,sEAAsE,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAK,aAAa,GAAG,WAAW,GAAG,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcyB,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,SAAsB/C,EAAK3B,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,mFAAmF,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uBAAuB,UAAU,osBAAosB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK3B,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,kFAAkF,SAAS,YAAY,UAAUkB,EAAY,CAAC,IAAI,wEAAwE,OAAO,yKAAyK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,iBAAiB,UAAU,ucAAuc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,SAAsB/C,EAAK3B,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,4DAA4D,SAAS,YAAY,UAAUkB,EAAY,CAAC,IAAI,wEAAwE,OAAO,yKAAyK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,8BAA8B,UAAU,gsBAAgsB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAASmC,EAAa,GAAgBO,EAAM,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,sCAAsC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,0CAA0C,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKvB,GAAQ,CAAC,UAAU,mCAAmC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kXAAkX,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,sCAAsC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,0CAA0C,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKvB,GAAQ,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAwtC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,sCAAsC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,0CAA0C,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKvB,GAAQ,CAAC,UAAU,yCAAyC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU;AAAA;AAAA;AAAA;AAAA,8MAAi1B,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,sCAAsC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,0CAA0C,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKvB,GAAQ,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6mBAA6mB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,sCAAsC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,sCAAsC,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBP,GAAmB,OAAO,OAAO,0CAA0C,SAAsBvC,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKvB,GAAQ,CAAC,UAAU,gCAAgC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4fAA4f,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAK0D,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsB1D,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,gBAAgBiB,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBG,EAAMhE,GAAY,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,gBAAgB2C,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,8BAA8B,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEkC,EAAa,GAAgBlC,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,QAAQ,SAAsBA,EAAKkD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,8TAA8T,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAc1C,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,oBAAoB,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,mCAAgD1C,EAAK,KAAK,CAAC,CAAC,EAAE,kGAAkG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,mCAAgD1C,EAAK,KAAK,CAAC,CAAC,EAAE,kGAAkG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,mCAAgD1C,EAAK,KAAK,CAAC,CAAC,EAAE,kGAAkG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOiB,GAAmB,OAAO,OAAO,QAAQ,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,QAAQ,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,QAAQ,CAAC,EAAE,SAAsBvC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,SAAsB/C,EAAK6C,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKpB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2D,GAAI,CAAC,kFAAkF,gFAAgF,qVAAqV,2GAA2G,kYAAkY,iTAAiT,+RAA+R,gRAAgR,mRAAmR,uVAAuV,mIAAmI,6SAA6S,mSAAmS,8SAA8S,oJAAoJ,sZAAsZ,qTAAqT,mRAAmR,0GAA0G,gMAAgM,wTAAwT,wSAAwS,+FAA+F,4iBAA4iB,sSAAsS,4QAA4Q,+UAA+U,2RAA2R,2VAA2V,oTAAoT,wQAAwQ,8UAA8U,+RAA+R,8FAA8F,mHAAmH,iSAAiS,wRAAwR,gjBAAgjB,iTAAiT,ycAAyc,ySAAyS,0ZAA0Z,kUAAkU,+QAA+Q,0QAA0Q,4VAA4V,mVAAmV,uSAAuS,oVAAoV,8FAA8F,mTAAmT,yQAAyQ,4JAA4J,6HAA6H,2LAA2L,yGAAyG,+KAA+K,6TAA6T,gRAAgR,+cAA+c,6RAA6R,qSAAqS,0kBAA0kB,iLAAiL,mUAAmU,yTAAyT,uSAAuS,+HAA+H,uQAAuQ,qTAAqT,2UAA2U,iRAAiR,mSAAmS,2KAA2K,+RAA+R,wRAAwR,2VAA2V,2GAA2G,uxUAAuxU,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,k7HAAk7H,ujKAAujK,i3TAAi3T,EAWp04HC,GAAgBC,EAAQtD,GAAUoD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvG,GAAoB,GAAGG,GAAY,GAAGM,GAAW,GAAGE,GAAa,GAAGE,GAAmB,GAAGE,GAAmB,GAAGE,GAAe,GAAGE,GAAa,GAAGG,GAAY,GAAGqF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACrxE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,4BAA8B,OAAO,yBAA2B,QAAQ,6BAA+B,OAAO,qBAAuB,OAAO,qBAAuB,4BAA4B,sBAAwB,QAAQ,sBAAwB,IAAI,yBAA2B,OAAO,oCAAsC,mMAAyO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "number", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YCQIgSung", "ddUN3HNhh", "whNDt_sW8", "nAnKYJCIO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramerAUA3UuQNu", "withCSS", "AUA3UuQNu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "y", "v", "k", "H", "e", "R", "t", "r", "a", "re", "MotionConfigContext", "n", "i", "se", "p", "S", "o", "l", "s", "d", "m", "N", "B", "Y", "useLocaleInfo", "f", "w", "b", "C", "D", "T", "A", "I", "j", "z", "q", "V", "_", "F", "useVariantState", "y", "v", "G", "K", "pe", "M", "ae", "J", "className", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Image2", "css", "withCSS", "nbSzgPBnv_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "css", "FramervJc8P_kY8", "withCSS", "vJc8P_kY8_default", "addFonts", "NavigationCopyFonts", "getFonts", "I1hiL6dch_default", "ButtonFonts", "EBt5du5OP_default", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "VideoFonts", "Video", "ArrowUpFonts", "vJc8P_kY8_default", "ServiceItemV1Fonts", "AUA3UuQNu_default", "TestimonyItemFonts", "nbSzgPBnv_default", "SlideshowFonts", "Slideshow", "FaqItemFonts", "pS5yB3Mgg_default", "ImageWithFX", "FooterFonts", "ohRzTAm4m_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "animation2", "transition2", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
