{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/f0tYNHePNvq6vVddqzJf/8NmqslXCva9Oa90A33mR/D3AzFWO9U.js", "ssg:https://framerusercontent.com/modules/chRS6850BaEAQP4sFDC6/ymttTXlzvvxDWWYAwFYy/qa1NkyVU3.js", "ssg:https://framerusercontent.com/modules/m8VOL8o6efqUD1b74VPb/hcO3GoSKH3kEPMS2XWcf/wjazBI0p4.js", "ssg:https://framerusercontent.com/modules/xkflngOQBng9LtPmKofO/WbuNjKoJOTGdPjn8G9ZT/J5WiTkB29.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 (c93245f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,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/exBb03w6L5NUM3QQ0o1g/si2NFeKBUlbp87ek6sjX/ciDqa3kGv.js\";const enabledGestures={DhTzQfjh9:{hover:true}};const cycleOrder=[\"DhTzQfjh9\",\"BMXS0pyA8\"];const serializationHash=\"framer-pW7WR\";const variantClassNames={BMXS0pyA8:\"framer-v-13h4qkv\",DhTzQfjh9:\"framer-v-nfhcyo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"BMXS0pyA8\",Default:\"DhTzQfjh9\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,JEZASABJZ:(_ref=title!==null&&title!==void 0?title:props.JEZASABJZ)!==null&&_ref!==void 0?_ref:\"Home\",mv6wLTcGK:link!==null&&link!==void 0?link:props.mv6wLTcGK,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"DhTzQfjh9\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,JEZASABJZ,mv6wLTcGK,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DhTzQfjh9\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:mv6wLTcGK,...addPropertyOverrides({BMXS0pyA8:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-nfhcyo\",className,classNames)} framer-27ad0u`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"DhTzQfjh9\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"DhTzQfjh9-hover\":{\"data-framer-name\":undefined},BMXS0pyA8:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pglyls\",\"data-styles-preset\":\"ciDqa3kGv\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87)))\"},children:\"Home\"})}),className:\"framer-19amdqj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YacDsi3Rd\",style:{\"--extracted-a0htzi\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JEZASABJZ,variants:{\"DhTzQfjh9-hover\":{\"--extracted-a0htzi\":\"var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52))\"},BMXS0pyA8:{\"--extracted-a0htzi\":\"var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"DhTzQfjh9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pglyls\",\"data-styles-preset\":\"ciDqa3kGv\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52)))\"},children:\"Home\"})})},BMXS0pyA8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pglyls\",\"data-styles-preset\":\"ciDqa3kGv\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52)))\"},children:\"Home\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pW7WR.framer-27ad0u, .framer-pW7WR .framer-27ad0u { display: block; }\",\".framer-pW7WR.framer-nfhcyo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pW7WR .framer-19amdqj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pW7WR.framer-nfhcyo { gap: 0px; } .framer-pW7WR.framer-nfhcyo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pW7WR.framer-nfhcyo > :first-child { margin-left: 0px; } .framer-pW7WR.framer-nfhcyo > :last-child { margin-right: 0px; } }\",\".framer-pW7WR.framer-v-13h4qkv.framer-nfhcyo { cursor: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 54\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"BMXS0pyA8\":{\"layout\":[\"auto\",\"auto\"]},\"vFVd_Xmt_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"JEZASABJZ\":\"title\",\"mv6wLTcGK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerD3AzFWO9U=withCSS(Component,css,\"framer-pW7WR\");export default FramerD3AzFWO9U;FramerD3AzFWO9U.displayName=\"Router Link\";FramerD3AzFWO9U.defaultProps={height:28,width:54};addPropertyControls(FramerD3AzFWO9U,{variant:{options:[\"DhTzQfjh9\",\"BMXS0pyA8\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},JEZASABJZ:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},mv6wLTcGK:{title:\"Link\",type:ControlType.Link}});addFonts(FramerD3AzFWO9U,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD3AzFWO9U\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BMXS0pyA8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vFVd_Xmt_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"54\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"JEZASABJZ\\\":\\\"title\\\",\\\"mv6wLTcGK\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./D3AzFWO9U.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dUHENwkiq5EVArRazG1f/v7onezqEbRMqg0XID3xS/qrfXwbGsb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yNvpRmG9JNMBhhINh1do/3GdDURcg94qnax2VzsZJ/U8sMztGWL.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"XvzTxHtKX\",\"xb4Kkzmri\",\"vdHCbREn0\",\"D1pV5f4ix\",\"f7qhbGtVa\",\"KqPi7pABn\",\"mbMPYrjUt\",\"rmXet0EZj\"];const serializationHash=\"framer-htcmj\";const variantClassNames={D1pV5f4ix:\"framer-v-jbp6ac\",f7qhbGtVa:\"framer-v-1wgr3w9\",KqPi7pABn:\"framer-v-s81fyb\",mbMPYrjUt:\"framer-v-15t26yy\",rmXet0EZj:\"framer-v-7lr7p9\",vdHCbREn0:\"framer-v-ys6a18\",xb4Kkzmri:\"framer-v-1n43rms\",XvzTxHtKX:\"framer-v-loqh3h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};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(React.Fragment);const humanReadableVariantMap={\"Desktop Close\":\"XvzTxHtKX\",\"Desktop Open\":\"xb4Kkzmri\",\"Laptop Close\":\"vdHCbREn0\",\"Laptop Open\":\"D1pV5f4ix\",\"Mobile Close\":\"mbMPYrjUt\",\"Mobile Open\":\"rmXet0EZj\",\"Tablet Close\":\"f7qhbGtVa\",\"Tablet Open\":\"KqPi7pABn\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,UCz3fSJFo:answer??props.UCz3fSJFo??\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"XvzTxHtKX\",yWZB6Ittk:question??props.yWZB6Ittk??\"How do I locate the nearesty branch or ATM?\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yWZB6Ittk,UCz3fSJFo,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XvzTxHtKX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1nllgzv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"xb4Kkzmri\");});const onTap1cmlznv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XvzTxHtKX\");});const onTapu5j3mp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"D1pV5f4ix\");});const onTap11m5wwy=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"vdHCbREn0\");});const onTapccxan5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"KqPi7pABn\");});const onTapu11zsl=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"f7qhbGtVa\");});const onTap1t2rn88=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"rmXet0EZj\");});const onTapqmuwrk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mbMPYrjUt\");});const onTapnjtw1c=activeVariantCallback(async(...args)=>{setVariant(\"xb4Kkzmri\");});const onTapzr3ipf=activeVariantCallback(async(...args)=>{setVariant(\"XvzTxHtKX\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"xb4Kkzmri\",\"D1pV5f4ix\",\"KqPi7pABn\",\"rmXet0EZj\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-loqh3h\",className,classNames),\"data-framer-name\":\"Desktop Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XvzTxHtKX\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1nllgzv,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{D1pV5f4ix:{backgroundColor:\"var(--token-3785b95a-72f4-4972-919c-30c2e185efac, rgb(255, 255, 255))\"},KqPi7pABn:{backgroundColor:\"var(--token-3785b95a-72f4-4972-919c-30c2e185efac, rgb(255, 255, 255))\"},rmXet0EZj:{backgroundColor:\"var(--token-3785b95a-72f4-4972-919c-30c2e185efac, rgb(255, 255, 255))\"},xb4Kkzmri:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-da5ab7c3-2a1e-4a81-bcd1-efd8cddce32f, rgb(245, 245, 246))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3785b95a-72f4-4972-919c-30c2e185efac, rgb(255, 255, 255))\"}},...addPropertyOverrides({D1pV5f4ix:{\"data-framer-name\":\"Laptop Open\",onTap:onTap11m5wwy},f7qhbGtVa:{\"data-framer-name\":\"Tablet Close\",onTap:onTapccxan5},KqPi7pABn:{\"data-framer-name\":\"Tablet Open\",onTap:onTapu11zsl},mbMPYrjUt:{\"data-framer-name\":\"Mobile Close\",onTap:onTap1t2rn88},rmXet0EZj:{\"data-framer-name\":\"Mobile Open\",onTap:onTapqmuwrk},vdHCbREn0:{\"data-framer-name\":\"Laptop Close\",onTap:onTapu5j3mp},xb4Kkzmri:{\"data-border\":true,\"data-framer-name\":\"Desktop Open\",onTap:onTap1cmlznv}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ian4m\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"Zj1YBLXtb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zevt1g\",\"data-border\":true,\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"aszVsgXxp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-da5ab7c3-2a1e-4a81-bcd1-efd8cddce32f, rgb(245, 245, 246))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-566b45c1-a51e-4a7d-976d-639ad871f8cd, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mbpohu\",\"data-styles-preset\":\"qrfXwbGsb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbf1b271-20ad-4c7a-98c1-4cf8967a4f86, rgb(12, 30, 27)))\"},children:\"How do I locate the nearesty branch or ATM?\"})}),className:\"framer-1o0vu3t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MC_0BSwz4\",style:{\"--extracted-r6o4lv\":\"var(--token-bbf1b271-20ad-4c7a-98c1-4cf8967a4f86, rgb(12, 30, 27))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yWZB6Ittk,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tkvzg1\",\"data-border\":true,\"data-framer-name\":\"icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ak2sk10N_\",onTap:onTapnjtw1c,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-da5ab7c3-2a1e-4a81-bcd1-efd8cddce32f, rgb(245, 245, 246))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},...addPropertyOverrides({xb4Kkzmri:{onTap:onTapzr3ipf}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dgi8p9-container\",layoutDependency:layoutDependency,layoutId:\"rqY0Qsxw1-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, rgb(14, 58, 45))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-down\",id:\"rqY0Qsxw1\",layoutId:\"rqY0Qsxw1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({xb4Kkzmri:{iconSelection:\"chevron-up\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-cr3c1l\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"mGLD6IxMA\",style:{backgroundColor:\"var(--token-af6f0f1e-13db-4006-afc5-b4e4d15338bc, rgb(248, 248, 249))\",borderBottomLeftRadius:10,borderBottomRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ce939eca-7f86-4ea6-8ab6-4b21f1b05748, rgb(61, 57, 80)))\"},children:\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\"})}),className:\"framer-3tvrvj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wmTZnKKT3\",style:{\"--extracted-r6o4lv\":\"var(--token-ce939eca-7f86-4ea6-8ab6-4b21f1b05748, rgb(61, 57, 80))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UCz3fSJFo,variants:{D1pV5f4ix:{\"--extracted-r6o4lv\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},KqPi7pABn:{\"--extracted-r6o4lv\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},rmXet0EZj:{\"--extracted-r6o4lv\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},xb4Kkzmri:{\"--extracted-r6o4lv\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D1pV5f4ix:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrah90\",\"data-styles-preset\":\"U8sMztGWL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87)))\"},children:\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\"})})},KqPi7pABn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrah90\",\"data-styles-preset\":\"U8sMztGWL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87)))\"},children:\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\"})})},rmXet0EZj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrah90\",\"data-styles-preset\":\"U8sMztGWL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87)))\"},children:\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\"})})},xb4Kkzmri:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrah90\",\"data-styles-preset\":\"U8sMztGWL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87)))\"},children:\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-htcmj.framer-1hlcdw1, .framer-htcmj .framer-1hlcdw1 { display: block; }\",\".framer-htcmj.framer-loqh3h { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-htcmj .framer-7ian4m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-htcmj .framer-zevt1g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 33px 40px 33px 30px; position: relative; width: 100%; }\",\".framer-htcmj .framer-1o0vu3t { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-htcmj .framer-1tkvzg1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 14px 12px 14px; position: relative; width: min-content; }\",\".framer-htcmj .framer-1dgi8p9-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-htcmj .framer-cr3c1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 40px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-htcmj .framer-3tvrvj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htcmj.framer-loqh3h, .framer-htcmj .framer-7ian4m, .framer-htcmj .framer-zevt1g, .framer-htcmj .framer-1tkvzg1 { gap: 0px; } .framer-htcmj.framer-loqh3h > *, .framer-htcmj .framer-zevt1g > *, .framer-htcmj .framer-1tkvzg1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-htcmj.framer-loqh3h > :first-child, .framer-htcmj .framer-zevt1g > :first-child, .framer-htcmj .framer-1tkvzg1 > :first-child { margin-left: 0px; } .framer-htcmj.framer-loqh3h > :last-child, .framer-htcmj .framer-zevt1g > :last-child, .framer-htcmj .framer-1tkvzg1 > :last-child { margin-right: 0px; } .framer-htcmj .framer-7ian4m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-htcmj .framer-7ian4m > :first-child { margin-top: 0px; } .framer-htcmj .framer-7ian4m > :last-child { margin-bottom: 0px; } }\",\".framer-htcmj.framer-v-1n43rms .framer-7ian4m { justify-content: center; }\",\".framer-htcmj.framer-v-1n43rms .framer-zevt1g { order: 0; }\",\".framer-htcmj.framer-v-1n43rms .framer-cr3c1l { gap: 0px; justify-content: flex-start; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htcmj.framer-v-1n43rms .framer-cr3c1l { gap: 0px; } .framer-htcmj.framer-v-1n43rms .framer-cr3c1l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-htcmj.framer-v-1n43rms .framer-cr3c1l > :first-child { margin-left: 0px; } .framer-htcmj.framer-v-1n43rms .framer-cr3c1l > :last-child { margin-right: 0px; } }\",\".framer-htcmj.framer-v-ys6a18.framer-loqh3h, .framer-htcmj.framer-v-jbp6ac.framer-loqh3h { width: 900px; }\",\".framer-htcmj.framer-v-jbp6ac .framer-cr3c1l { gap: 0px; justify-content: flex-start; }\",\".framer-htcmj.framer-v-jbp6ac .framer-3tvrvj, .framer-htcmj.framer-v-s81fyb .framer-3tvrvj { width: 85%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htcmj.framer-v-jbp6ac .framer-cr3c1l { gap: 0px; } .framer-htcmj.framer-v-jbp6ac .framer-cr3c1l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-htcmj.framer-v-jbp6ac .framer-cr3c1l > :first-child { margin-left: 0px; } .framer-htcmj.framer-v-jbp6ac .framer-cr3c1l > :last-child { margin-right: 0px; } }\",\".framer-htcmj.framer-v-1wgr3w9.framer-loqh3h, .framer-htcmj.framer-v-s81fyb.framer-loqh3h { width: 768px; }\",\".framer-htcmj.framer-v-s81fyb .framer-cr3c1l { gap: 0px; justify-content: flex-start; padding: 30px 30px 30px 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htcmj.framer-v-s81fyb .framer-cr3c1l { gap: 0px; } .framer-htcmj.framer-v-s81fyb .framer-cr3c1l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-htcmj.framer-v-s81fyb .framer-cr3c1l > :first-child { margin-left: 0px; } .framer-htcmj.framer-v-s81fyb .framer-cr3c1l > :last-child { margin-right: 0px; } }\",\".framer-htcmj.framer-v-15t26yy.framer-loqh3h { width: 390px; }\",\".framer-htcmj.framer-v-15t26yy .framer-zevt1g, .framer-htcmj.framer-v-7lr7p9 .framer-zevt1g { align-content: flex-start; align-items: flex-start; gap: 20px; padding: 20px 15px 20px 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htcmj.framer-v-15t26yy .framer-zevt1g { gap: 0px; } .framer-htcmj.framer-v-15t26yy .framer-zevt1g > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-htcmj.framer-v-15t26yy .framer-zevt1g > :first-child { margin-left: 0px; } .framer-htcmj.framer-v-15t26yy .framer-zevt1g > :last-child { margin-right: 0px; } }\",\".framer-htcmj.framer-v-7lr7p9.framer-loqh3h { justify-content: flex-start; width: 390px; }\",\".framer-htcmj.framer-v-7lr7p9 .framer-cr3c1l { align-content: flex-start; align-items: flex-start; gap: 0px; justify-content: flex-start; padding: 20px 15px 20px 15px; }\",\".framer-htcmj.framer-v-7lr7p9 .framer-3tvrvj { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htcmj.framer-v-7lr7p9 .framer-zevt1g, .framer-htcmj.framer-v-7lr7p9 .framer-cr3c1l { gap: 0px; } .framer-htcmj.framer-v-7lr7p9 .framer-zevt1g > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-htcmj.framer-v-7lr7p9 .framer-zevt1g > :first-child, .framer-htcmj.framer-v-7lr7p9 .framer-cr3c1l > :first-child { margin-left: 0px; } .framer-htcmj.framer-v-7lr7p9 .framer-zevt1g > :last-child, .framer-htcmj.framer-v-7lr7p9 .framer-cr3c1l > :last-child { margin-right: 0px; } .framer-htcmj.framer-v-7lr7p9 .framer-cr3c1l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-htcmj[data-border=\"true\"]::after, .framer-htcmj [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 106\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xb4Kkzmri\":{\"layout\":[\"fixed\",\"auto\"]},\"vdHCbREn0\":{\"layout\":[\"fixed\",\"auto\"]},\"D1pV5f4ix\":{\"layout\":[\"fixed\",\"auto\"]},\"f7qhbGtVa\":{\"layout\":[\"fixed\",\"auto\"]},\"KqPi7pABn\":{\"layout\":[\"fixed\",\"auto\"]},\"mbMPYrjUt\":{\"layout\":[\"fixed\",\"auto\"]},\"rmXet0EZj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"yWZB6Ittk\":\"question\",\"UCz3fSJFo\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerqa1NkyVU3=withCSS(Component,css,\"framer-htcmj\");export default Framerqa1NkyVU3;Framerqa1NkyVU3.displayName=\"faq Accordion\";Framerqa1NkyVU3.defaultProps={height:106,width:1e3};addPropertyControls(Framerqa1NkyVU3,{variant:{options:[\"XvzTxHtKX\",\"xb4Kkzmri\",\"vdHCbREn0\",\"D1pV5f4ix\",\"f7qhbGtVa\",\"KqPi7pABn\",\"mbMPYrjUt\",\"rmXet0EZj\"],optionTitles:[\"Desktop Close\",\"Desktop Open\",\"Laptop Close\",\"Laptop Open\",\"Tablet Close\",\"Tablet Open\",\"Mobile Close\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum},yWZB6Ittk:{defaultValue:\"How do I locate the nearesty branch or ATM?\",displayTextArea:false,title:\"Question\",type:ControlType.String},UCz3fSJFo:{defaultValue:\"If your card is missing, let us know immediately. We\u2019ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120.\",displayTextArea:false,title:\"Answer\",type:ControlType.String}});addFonts(Framerqa1NkyVU3,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqa1NkyVU3\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"yWZB6Ittk\\\":\\\"question\\\",\\\"UCz3fSJFo\\\":\\\"answer\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"106\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xb4Kkzmri\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vdHCbREn0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D1pV5f4ix\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f7qhbGtVa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KqPi7pABn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mbMPYrjUt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rmXet0EZj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/y0QG0A6ozeAwMCLYaAh9/ItME9RYo1rvRcdy2uIfS/I8RLijj3_.js\";import Button from\"https://framerusercontent.com/modules/nXOpQaQtnL01mLTTfLPB/jQLrudiIM73UDfZQBD4K/PS2z0C3g5.js\";const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const cycleOrder=[\"o0DURxoDS\",\"XvHMO8xtn\",\"v_WKZ4qxh\",\"fWd7DDVV5\"];const serializationHash=\"framer-eHePn\";const variantClassNames={fWd7DDVV5:\"framer-v-190b333\",o0DURxoDS:\"framer-v-nkf0bx\",v_WKZ4qxh:\"framer-v-1bihkpy\",XvHMO8xtn:\"framer-v-1p470rz\"};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 animation={opacity:0,rotate:0,scale:1,x:0,y:50};const transition2={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const transition3={damping:60,delay:.6,mass:1.2,stiffness:300,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(React.Fragment);const humanReadableVariantMap={\"Large Desktop\":\"o0DURxoDS\",Desktop:\"XvHMO8xtn\",Mobile:\"fWd7DDVV5\",Tablet:\"v_WKZ4qxh\"};const getProps=({bookLink,height,id,text,width,...props})=>{return{...props,CdIzdsBhE:text??props.CdIzdsBhE??\"Looking for a plumber in your area contact us now!\",variant:humanReadableVariantMap[props.variant]??props.variant??\"o0DURxoDS\",vsv5dGfD5:bookLink??props.vsv5dGfD5};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CdIzdsBhE,vsv5dGfD5,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o0DURxoDS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.header,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nkf0bx\",className,classNames),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"o0DURxoDS\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{backgroundColor:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(185, 175, 126))\",...style},...addPropertyOverrides({fWd7DDVV5:{\"data-framer-name\":\"Mobile\"},v_WKZ4qxh:{\"data-framer-name\":\"Tablet\"},XvHMO8xtn:{\"data-framer-name\":\"Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ni00kd\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"iVG6grP4L\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mrsgiz\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"v0qc9t_YV\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1md2pu3\",\"data-framer-name\":\"Text \",layoutDependency:layoutDependency,layoutId:\"jkDCR44fr\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im6t4b\",\"data-styles-preset\":\"I8RLijj3_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, rgb(14, 58, 45)))\"},children:\"Looking for a plumber in your area contact us now!\"})}),className:\"framer-zlckte\",\"data-framer-name\":\"Heading Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WWEiB47RX\",style:{\"--extracted-1of0zx5\":\"var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, rgb(14, 58, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:CdIzdsBhE,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-s6ufy7\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"cicWhA1jI\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xocmht-container\",layoutDependency:layoutDependency,layoutId:\"yaVyfYAtk-container\",children:/*#__PURE__*/_jsx(Button,{E7kGfzAZ2:vsv5dGfD5,height:\"100%\",id:\"yaVyfYAtk\",layoutId:\"yaVyfYAtk\",r3BrRVhSX:\"Book A Online\",variant:\"q6mFdEd6E\",width:\"100%\",...addPropertyOverrides({XvHMO8xtn:{E7kGfzAZ2:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sdw3dz-container\",layoutDependency:layoutDependency,layoutId:\"Cv_w6B7qc-container\",children:/*#__PURE__*/_jsx(Button,{E7kGfzAZ2:\"tel:+1-394-495-5993\",height:\"100%\",id:\"Cv_w6B7qc\",layoutId:\"Cv_w6B7qc\",r3BrRVhSX:\"\",variant:\"LecZ6nJU_\",width:\"100%\"})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eHePn.framer-1vs34ns, .framer-eHePn .framer-1vs34ns { display: block; }\",\".framer-eHePn.framer-nkf0bx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 130px 75px 130px 75px; position: relative; width: 1440px; }\",\".framer-eHePn .framer-1ni00kd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-eHePn .framer-1mrsgiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-eHePn .framer-1md2pu3 { 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 0px 0px 0px; position: relative; width: 52%; }\",\".framer-eHePn .framer-zlckte { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eHePn .framer-s6ufy7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-eHePn .framer-xocmht-container, .framer-eHePn .framer-1sdw3dz-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eHePn.framer-nkf0bx, .framer-eHePn .framer-1ni00kd, .framer-eHePn .framer-1mrsgiz, .framer-eHePn .framer-1md2pu3, .framer-eHePn .framer-s6ufy7 { gap: 0px; } .framer-eHePn.framer-nkf0bx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eHePn.framer-nkf0bx > :first-child, .framer-eHePn .framer-1ni00kd > :first-child, .framer-eHePn .framer-1mrsgiz > :first-child { margin-top: 0px; } .framer-eHePn.framer-nkf0bx > :last-child, .framer-eHePn .framer-1ni00kd > :last-child, .framer-eHePn .framer-1mrsgiz > :last-child { margin-bottom: 0px; } .framer-eHePn .framer-1ni00kd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eHePn .framer-1mrsgiz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-eHePn .framer-1md2pu3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eHePn .framer-1md2pu3 > :first-child, .framer-eHePn .framer-s6ufy7 > :first-child { margin-left: 0px; } .framer-eHePn .framer-1md2pu3 > :last-child, .framer-eHePn .framer-s6ufy7 > :last-child { margin-right: 0px; } .framer-eHePn .framer-s6ufy7 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-eHePn.framer-v-1p470rz.framer-nkf0bx { padding: 100px 30px 100px 30px; width: 992px; }\",\".framer-eHePn.framer-v-1p470rz .framer-1ni00kd { max-width: 1000px; }\",\".framer-eHePn.framer-v-1p470rz .framer-1md2pu3 { width: 67%; }\",\".framer-eHePn.framer-v-1bihkpy.framer-nkf0bx { padding: 80px 30px 80px 30px; width: 768px; }\",\".framer-eHePn.framer-v-1bihkpy .framer-1ni00kd { max-width: 768px; }\",\".framer-eHePn.framer-v-1bihkpy .framer-1md2pu3 { width: 100%; }\",\".framer-eHePn.framer-v-1bihkpy .framer-zlckte { flex: none; width: 86%; }\",\".framer-eHePn.framer-v-190b333.framer-nkf0bx { padding: 60px 20px 60px 20px; width: 390px; }\",\".framer-eHePn.framer-v-190b333 .framer-1ni00kd { max-width: 390px; }\",\".framer-eHePn.framer-v-190b333 .framer-1mrsgiz { gap: 30px; }\",\".framer-eHePn.framer-v-190b333 .framer-1md2pu3 { width: 90%; }\",\".framer-eHePn.framer-v-190b333 .framer-s6ufy7 { flex-wrap: wrap; gap: 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eHePn.framer-v-190b333 .framer-1mrsgiz, .framer-eHePn.framer-v-190b333 .framer-s6ufy7 { gap: 0px; } .framer-eHePn.framer-v-190b333 .framer-1mrsgiz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-eHePn.framer-v-190b333 .framer-1mrsgiz > :first-child { margin-top: 0px; } .framer-eHePn.framer-v-190b333 .framer-1mrsgiz > :last-child { margin-bottom: 0px; } .framer-eHePn.framer-v-190b333 .framer-s6ufy7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-eHePn.framer-v-190b333 .framer-s6ufy7 > :first-child { margin-left: 0px; } .framer-eHePn.framer-v-190b333 .framer-s6ufy7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 466\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XvHMO8xtn\":{\"layout\":[\"fixed\",\"auto\"]},\"v_WKZ4qxh\":{\"layout\":[\"fixed\",\"auto\"]},\"fWd7DDVV5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CdIzdsBhE\":\"text\",\"vsv5dGfD5\":\"bookLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwjazBI0p4=withCSS(Component,css,\"framer-eHePn\");export default FramerwjazBI0p4;FramerwjazBI0p4.displayName=\"CTA Section\";FramerwjazBI0p4.defaultProps={height:466,width:1440};addPropertyControls(FramerwjazBI0p4,{variant:{options:[\"o0DURxoDS\",\"XvHMO8xtn\",\"v_WKZ4qxh\",\"fWd7DDVV5\"],optionTitles:[\"Large Desktop\",\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},CdIzdsBhE:{defaultValue:\"Looking for a plumber in your area contact us now!\",displayTextArea:false,title:\"Text\",type:ControlType.String},vsv5dGfD5:{title:\"Book Link\",type:ControlType.Link}});addFonts(FramerwjazBI0p4,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwjazBI0p4\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"466\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XvHMO8xtn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v_WKZ4qxh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fWd7DDVV5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"CdIzdsBhE\\\":\\\"text\\\",\\\"vsv5dGfD5\\\":\\\"bookLink\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import RouterLink from\"#framer/local/canvasComponent/D3AzFWO9U/D3AzFWO9U.js\";import Navigation from\"#framer/local/canvasComponent/EBQvhOCn8/EBQvhOCn8.js\";import NavTopBar from\"#framer/local/canvasComponent/lauqbeXYY/lauqbeXYY.js\";import Button from\"#framer/local/canvasComponent/PS2z0C3g5/PS2z0C3g5.js\";import FaqAccordion from\"#framer/local/canvasComponent/qa1NkyVU3/qa1NkyVU3.js\";import Footer from\"#framer/local/canvasComponent/rs7R2XJuW/rs7R2XJuW.js\";import CTASection from\"#framer/local/canvasComponent/wjazBI0p4/wjazBI0p4.js\";import Service from\"#framer/local/collection/cWdcoD6fv/cWdcoD6fv.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle1 from\"#framer/local/css/ciDqa3kGv/ciDqa3kGv.js\";import*as sharedStyle11 from\"#framer/local/css/fScTYDQu4/fScTYDQu4.js\";import*as sharedStyle9 from\"#framer/local/css/HSwqQ0BKA/HSwqQ0BKA.js\";import*as sharedStyle2 from\"#framer/local/css/I8RLijj3_/I8RLijj3_.js\";import*as sharedStyle14 from\"#framer/local/css/IeTH7tIZJ/IeTH7tIZJ.js\";import*as sharedStyle5 from\"#framer/local/css/iv2TxlkR7/iv2TxlkR7.js\";import*as sharedStyle16 from\"#framer/local/css/khzV5VI_I/khzV5VI_I.js\";import*as sharedStyle7 from\"#framer/local/css/NE6aK2_EC/NE6aK2_EC.js\";import*as sharedStyle12 from\"#framer/local/css/nexUe6OHh/nexUe6OHh.js\";import*as sharedStyle13 from\"#framer/local/css/nV_fcUtMk/nV_fcUtMk.js\";import*as sharedStyle4 from\"#framer/local/css/PpZ8bRNwA/PpZ8bRNwA.js\";import*as sharedStyle6 from\"#framer/local/css/SdAaOmhpx/SdAaOmhpx.js\";import*as sharedStyle8 from\"#framer/local/css/tCcUW0Cem/tCcUW0Cem.js\";import*as sharedStyle3 from\"#framer/local/css/U8sMztGWL/U8sMztGWL.js\";import*as sharedStyle10 from\"#framer/local/css/Y9wLyzdmP/Y9wLyzdmP.js\";import*as sharedStyle15 from\"#framer/local/css/ywx1TOaZI/ywx1TOaZI.js\";import*as sharedStyle from\"#framer/local/css/Zr0AfQhx6/Zr0AfQhx6.js\";import metadataProvider from\"#framer/local/webPageMetadata/J5WiTkB29/J5WiTkB29.js\";const NavTopBarFonts=getFonts(NavTopBar);const NavigationFonts=getFonts(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithFX=withFX(RichText);const RouterLinkFonts=getFonts(RouterLink);const MotionDivWithFX=withFX(motion.div);const HeroFonts=getFonts(Hero);const FaqAccordionFonts=getFonts(FaqAccordion);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const ImageWithFX=withFX(Image);const ButtonFonts=getFonts(Button);const CTASectionFonts=getFonts(CTASection);const FooterFonts=getFonts(Footer);const breakpoints={h69tBVyj_:\"(max-width: 767px)\",IAC5QABeU:\"(min-width: 1440px)\",PMlWjfG5o:\"(min-width: 768px) and (max-width: 991px)\",QuS8ZRprL:\"(min-width: 992px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ENj8j\";const variantClassNames={h69tBVyj_:\"framer-v-8w92hh\",IAC5QABeU:\"framer-v-ofb3fs\",PMlWjfG5o:\"framer-v-1xs8i46\",QuS8ZRprL:\"framer-v-1187trg\"};const transition1={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const transition3={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};const transition4={damping:60,delay:.6,mass:1.2,stiffness:300,type:\"spring\"};const transition5={damping:60,delay:.9,mass:1.2,stiffness:300,type:\"spring\"};const transition6={damping:60,delay:1,mass:1.2,stiffness:300,type:\"spring\"};const transition7={damping:60,delay:1.1,mass:1.2,stiffness:300,type:\"spring\"};const transition8={damping:60,delay:1.2,mass:1.2,stiffness:300,type:\"spring\"};const transition9={damping:60,delay:.8,mass:1.2,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 animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition10={damping:60,delay:.9,mass:1,stiffness:500,type:\"spring\"};const transition11={damping:30,delay:0,mass:3,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition11};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition11};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition12={damping:60,delay:1.3,mass:1.2,stiffness:300,type:\"spring\"};const transition13={damping:60,delay:1.4,mass:1.2,stiffness:300,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop \":\"QuS8ZRprL\",\"Large Desktop\":\"IAC5QABeU\",Phone:\"h69tBVyj_\",Tablet:\"PMlWjfG5o\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IAC5QABeU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"J5WiTkB29\",data:Service,type:\"Collection\"},select:[{collection:\"J5WiTkB29\",name:\"TnCDDPqUP\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"n3i1cpfQL\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"kWpUFiyYr\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"SHEVf5Nmc\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"WE8xLOGMx\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"Ud7GKUSf6\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"yTe8hV16P\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"GEIHm87qY\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"zS0sAp5v9\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"bBtFdE6JB\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"fcAsMbOUi\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"uUvkxQFEE\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"FvFcFYokQ\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"OIItjvsle\",type:\"Identifier\"},{collection:\"J5WiTkB29\",name:\"WJkdZchKf\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"J5WiTkB29\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,TnCDDPqUP=getFromCurrentRouteData(\"TnCDDPqUP\")??\"\",n3i1cpfQL=getFromCurrentRouteData(\"n3i1cpfQL\")??\"\",kWpUFiyYr=getFromCurrentRouteData(\"kWpUFiyYr\")??\"\",WJkdZchKf=getFromCurrentRouteData(\"WJkdZchKf\")??\"\",zS0sAp5v9=getFromCurrentRouteData(\"zS0sAp5v9\")??\"\",bBtFdE6JB=getFromCurrentRouteData(\"bBtFdE6JB\")??\"\",fcAsMbOUi=getFromCurrentRouteData(\"fcAsMbOUi\")??\"\",uUvkxQFEE=getFromCurrentRouteData(\"uUvkxQFEE\")??\"\",FvFcFYokQ=getFromCurrentRouteData(\"FvFcFYokQ\")??\"\",OIItjvsle=getFromCurrentRouteData(\"OIItjvsle\")??\"\",SHEVf5Nmc=getFromCurrentRouteData(\"SHEVf5Nmc\"),Ud7GKUSf6=getFromCurrentRouteData(\"Ud7GKUSf6\")??\"\",WE8xLOGMx=getFromCurrentRouteData(\"WE8xLOGMx\")??\"\",yTe8hV16P=getFromCurrentRouteData(\"yTe8hV16P\")??\"\",GEIHm87qY=getFromCurrentRouteData(\"GEIHm87qY\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"gUpOVkBNA\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"EyAnYg7rB\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IAC5QABeU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, rgb(14, 58, 45)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ofb3fs\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yoglrp\",\"data-framer-name\":\"Nav Top Bar\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oe1u89-container\",\"data-framer-name\":\"Nav Top\",name:\"Nav Top\",nodeId:\"zL_HL388Z\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{variant:\"J7sMp6GWg\"}},children:/*#__PURE__*/_jsx(NavTopBar,{height:\"100%\",id:\"zL_HL388Z\",layoutId:\"zL_HL388Z\",name:\"Nav Top\",style:{width:\"100%\"},variant:\"EpsAY0AEc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l9hnv2\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+49+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ft5lo7-container\",\"data-framer-appear-id\":\"1ft5lo7\",initial:animation1,nodeId:\"LwVAvemZ9\",optimized:true,rendersWithMotion:true,scopeId:\"J5WiTkB29\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{variant:\"nvYpG2BhC\"},PMlWjfG5o:{variant:\"jFFj2tq1u\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"LwVAvemZ9\",layoutId:\"LwVAvemZ9\",style:{width:\"100%\"},variant:\"S6LXGpBzs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-yf7fvs\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-chd01l\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1is8fmz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dw4fam\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-w05j4a\",\"data-styles-preset\":\"Zr0AfQhx6\",style:{\"--framer-text-color\":\"var(--token-3785b95a-72f4-4972-919c-30c2e185efac, rgb(255, 255, 255))\"},children:\"Services Details\"})}),className:\"framer-uiifpc\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b4216j\",\"data-framer-name\":\"Links \",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{y:(componentViewport?.y||0)+0+153+60+0+0+0+0+76.5+0},PMlWjfG5o:{y:(componentViewport?.y||0)+0+153+80+0+0+0+0+76.5+0},QuS8ZRprL:{y:(componentViewport?.y||0)+0+153+100+0+0+0+0+84.5+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+153+130+0+0+0+0+84.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1keccsu-container\",nodeId:\"PqbKN28ST\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{mv6wLTcGK:resolvedLinks[3]},PMlWjfG5o:{mv6wLTcGK:resolvedLinks[2]},QuS8ZRprL:{mv6wLTcGK:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(RouterLink,{height:\"100%\",id:\"PqbKN28ST\",JEZASABJZ:\"Home\",layoutId:\"PqbKN28ST\",mv6wLTcGK:resolvedLinks[0],variant:\"DhTzQfjh9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pglyls\",\"data-styles-preset\":\"ciDqa3kGv\",style:{\"--framer-text-color\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},children:\"/\"})}),className:\"framer-cc5o6l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{y:(componentViewport?.y||0)+0+153+60+0+0+0+0+76.5+0},PMlWjfG5o:{y:(componentViewport?.y||0)+0+153+80+0+0+0+0+76.5+0},QuS8ZRprL:{y:(componentViewport?.y||0)+0+153+100+0+0+0+0+84.5+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+153+130+0+0+0+0+84.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cgftbc-container\",nodeId:\"RwvWQMuQG\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(RouterLink,{height:\"100%\",id:\"RwvWQMuQG\",JEZASABJZ:\"Services Details\",layoutId:\"RwvWQMuQG\",variant:\"BMXS0pyA8\",width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1d7h3x9\",\"data-framer-name\":\"Details Section \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ud2vjs\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wrbva1\",\"data-framer-name\":\"Content\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynbs3p\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdd8ej\",\"data-framer-name\":\"Text Wrapper \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5q6f9w\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-im6t4b\",\"data-styles-preset\":\"I8RLijj3_\",style:{\"--framer-text-color\":\"var(--token-bbf1b271-20ad-4c7a-98c1-4cf8967a4f86, rgb(12, 30, 27))\"},children:\"House Cleaning\"})}),className:\"framer-4cajmj\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:TnCDDPqUP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wrah90\",\"data-styles-preset\":\"U8sMztGWL\",children:\"What if we told you we could help you have a cleaner, healthier house, condo, or apartment more often, without all the work? The Maids can make it happen.\"})}),className:\"framer-bstr6e\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:n3i1cpfQL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yv43xt\",\"data-framer-name\":\"Rating \",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14rm8dq\",\"data-styles-preset\":\"PpZ8bRNwA\",style:{\"--framer-text-color\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},children:\"4.5\"})}),className:\"framer-b1r2fx\",fonts:[\"Inter\"],text:kWpUFiyYr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6gskg\",\"data-framer-name\":\"Icons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cp7l9-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"dORPVEt5g\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(182, 215, 62))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"dORPVEt5g\",layoutId:\"dORPVEt5g\",mirrored:false,name:\"Star\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-drhgsw-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"MVJdvwDy0\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(182, 215, 62))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"MVJdvwDy0\",layoutId:\"MVJdvwDy0\",mirrored:false,name:\"Star\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mopjmo-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"x4p8CTmPF\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(182, 215, 62))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"x4p8CTmPF\",layoutId:\"x4p8CTmPF\",mirrored:false,name:\"Star\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qaf1i6-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"sw7GbNWUW\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(182, 215, 62))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"sw7GbNWUW\",layoutId:\"sw7GbNWUW\",mirrored:false,name:\"Star\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1whvzi7-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"MAjvvQ2o9\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(182, 215, 62))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"MAjvvQ2o9\",layoutId:\"MAjvvQ2o9\",mirrored:false,name:\"Star\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14rm8dq\",\"data-styles-preset\":\"PpZ8bRNwA\",style:{\"--framer-text-color\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},children:\"(10,260 ratings)\"})}),className:\"framer-128lpmu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.2,className:\"framer-lpdja0\",\"data-framer-name\":\"Hr Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fgvyyz\",\"data-framer-name\":\"Content Section\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"bhO4HBw6n\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:WJkdZchKf,className:\"framer-jjlbpo\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1x1kcwt\",blockquote:\"framer-styles-preset-1tyhvsa\",code:\"framer-styles-preset-df6s6b\",h1:\"framer-styles-preset-w05j4a\",h2:\"framer-styles-preset-im6t4b\",h3:\"framer-styles-preset-18nxxab\",h4:\"framer-styles-preset-lu3xz2\",h5:\"framer-styles-preset-fyk1o9\",h6:\"framer-styles-preset-j8yagw\",img:\"framer-styles-preset-pufyox\",p:\"framer-styles-preset-fzb72z\",table:\"framer-styles-preset-fa9d8n\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99j4s9\",\"data-framer-name\":\"Accordion \",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jz62nk\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-lu3xz2\",\"data-styles-preset\":\"SdAaOmhpx\",style:{\"--framer-text-color\":\"var(--token-bbf1b271-20ad-4c7a-98c1-4cf8967a4f86, rgb(12, 30, 27))\"},children:\"Frequently Asked Questions\"})}),className:\"framer-130kmop\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+377.5+60+0+0+0+0+0+0+414.15+0+74},PMlWjfG5o:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,y:(componentViewport?.y||0)+0+417.5+80+0+0+0+0+0+0+414.15+0+74},QuS8ZRprL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1000px) * 0.55 - 40px, 1px)`,y:(componentViewport?.y||0)+0+465.5+100+0+0+0+0+0+414.15+0+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,y:(componentViewport?.y||0)+0+525.5+130+0+0+0+0+0+414.15+0+74,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17dw92b-container\",nodeId:\"lTWfkvPdV\",rendersWithMotion:true,scopeId:\"J5WiTkB29\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FaqAccordion,{height:\"100%\",id:\"lTWfkvPdV\",layoutId:\"lTWfkvPdV\",style:{width:\"100%\"},UCz3fSJFo:bBtFdE6JB,variant:\"XvzTxHtKX\",width:\"100%\",yWZB6Ittk:zS0sAp5v9})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+377.5+60+0+0+0+0+0+0+414.15+0+196},PMlWjfG5o:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,y:(componentViewport?.y||0)+0+417.5+80+0+0+0+0+0+0+414.15+0+196},QuS8ZRprL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1000px) * 0.55 - 40px, 1px)`,y:(componentViewport?.y||0)+0+465.5+100+0+0+0+0+0+414.15+0+196}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,y:(componentViewport?.y||0)+0+525.5+130+0+0+0+0+0+414.15+0+196,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1irnl9u-container\",nodeId:\"YQDaivlU2\",rendersWithMotion:true,scopeId:\"J5WiTkB29\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FaqAccordion,{height:\"100%\",id:\"YQDaivlU2\",layoutId:\"YQDaivlU2\",style:{width:\"100%\"},UCz3fSJFo:uUvkxQFEE,variant:\"XvzTxHtKX\",width:\"100%\",yWZB6Ittk:fcAsMbOUi})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+377.5+60+0+0+0+0+0+0+414.15+0+318},PMlWjfG5o:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,y:(componentViewport?.y||0)+0+417.5+80+0+0+0+0+0+0+414.15+0+318},QuS8ZRprL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1000px) * 0.55 - 40px, 1px)`,y:(componentViewport?.y||0)+0+465.5+100+0+0+0+0+0+414.15+0+318}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,y:(componentViewport?.y||0)+0+525.5+130+0+0+0+0+0+414.15+0+318,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nuic2e-container\",nodeId:\"iRTGrP0DQ\",rendersWithMotion:true,scopeId:\"J5WiTkB29\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FaqAccordion,{height:\"100%\",id:\"iRTGrP0DQ\",layoutId:\"iRTGrP0DQ\",style:{width:\"100%\"},UCz3fSJFo:OIItjvsle,variant:\"XvzTxHtKX\",width:\"100%\",yWZB6Ittk:FvFcFYokQ})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m4z4b\",\"data-framer-name\":\"Buy Now Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pslljt\",\"data-framer-name\":\"Inner Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wijzeu\",\"data-framer-name\":\"Service image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+377.5+60+0+0+0+0+878.15+0+0+20+0+0),sizes:\"300px\",...toResponsiveImage(SHEVf5Nmc)}},PMlWjfG5o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+417.5+80+0+0+0+0+888.15+0+0+20+0+0),sizes:\"376px\",...toResponsiveImage(SHEVf5Nmc)}},QuS8ZRprL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+465.5+100+0+0+0+0+0+0+20+0+0),sizes:\"376px\",...toResponsiveImage(SHEVf5Nmc)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+525.5+130+0+0+0+0+0+0+20+0+0),sizes:\"376px\",...toResponsiveImage(SHEVf5Nmc)},className:\"framer-u0n07e\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:563,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+377.5+60+0+0+0+0+878.15+0+0+20+0+0+55),pixelHeight:563,pixelWidth:560,sizes:\"80px\",src:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png\",srcSet:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png 560w\"}},PMlWjfG5o:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:563,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+417.5+80+0+0+0+0+888.15+0+0+20+0+0+95),pixelHeight:563,pixelWidth:560,sizes:\"80px\",src:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png\",srcSet:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png 560w\"}},QuS8ZRprL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:563,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+465.5+100+0+0+0+0+0+0+20+0+0+95),pixelHeight:563,pixelWidth:560,sizes:\"80px\",src:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png\",srcSet:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:563,intrinsicWidth:560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+525.5+130+0+0+0+0+0+0+20+0+0+95),pixelHeight:563,pixelWidth:560,sizes:\"80px\",src:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png\",srcSet:\"https://framerusercontent.com/images/j3DMRDPmiW0zaFzfsORQDpuHk.png 560w\"},className:\"framer-gobmgw\",\"data-framer-name\":\"Play \",id:elementId1,onTap:onTap3bnx0g({overlay}),ref:ref2,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-11hed8n\"),\"data-framer-portal-id\":elementId1,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"tHUKAtPy9\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1bmbpzb-container\"),\"data-framer-portal-id\":elementId1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y7LRrlU9j\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"y7LRrlU9j\",isMixedBorderRadius:false,layoutId:\"y7LRrlU9j\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",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%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1rn02y3-container\"),\"data-framer-portal-id\":elementId1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ljGale8Rb\",rendersWithMotion:true,scopeId:\"J5WiTkB29\",whileHover:animation4,whileTap:animation5,children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"ljGale8Rb\",layoutId:\"ljGale8Rb\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jlfhjo\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qqdeu\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h9fi4i\",\"data-framer-name\":\"prices \",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36enh6\",\"data-framer-name\":\"Price \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-lu3xz2\",\"data-styles-preset\":\"SdAaOmhpx\",children:\"75$\"})}),className:\"framer-1sl709x\",fonts:[\"Inter\"],text:Ud7GKUSf6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(73, 76, 80))\",\"--framer-text-decoration\":\"line-through\"},children:\"250$\"})}),className:\"framer-1wlla70\",fonts:[\"Inter\"],text:WE8xLOGMx,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d92mct\",\"data-framer-name\":\"Discount\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e8amtv\",\"data-styles-preset\":\"ywx1TOaZI\",style:{\"--framer-text-color\":\"var(--token-bbf1b271-20ad-4c7a-98c1-4cf8967a4f86, rgb(12, 30, 27))\"},children:\"60% Off\"})}),className:\"framer-14mig8q\",fonts:[\"Inter\"],text:yTe8hV16P,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ftyblb\",\"data-framer-name\":\"Buy Now\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7gz9ye\",\"data-framer-name\":\"Deadline \",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sewjge-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oCW9lXaWR\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-402abe30-3da3-4f0c-b3c5-7a3db8ecf61d, rgb(182, 215, 62))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"clock\",id:\"oCW9lXaWR\",layoutId:\"oCW9lXaWR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yu0sc\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gos684\",\"data-styles-preset\":\"khzV5VI_I\",style:{\"--framer-text-color\":\"var(--token-a4b24088-7570-46e5-bf2b-219b419daebc, rgb(74, 89, 87))\"},children:\"5 days left at this price!\"})}),className:\"framer-s77r67\",fonts:[\"Inter\"],text:GEIHm87qY,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s2sk6v\",\"data-framer-name\":\"Button\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined},{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined},{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined},{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{y:(componentViewport?.y||0)+0+377.5+60+0+0+0+0+878.15+0+0+20+217+0+0+0+41+0+160+10.5},PMlWjfG5o:{y:(componentViewport?.y||0)+0+417.5+80+0+0+0+0+888.15+0+0+20+297+0+0+0+41+0+160+0},QuS8ZRprL:{y:(componentViewport?.y||0)+0+465.5+100+0+0+0+0+0+0+20+297+0+0+0+41+0+160+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+525.5+130+0+0+0+0+0+0+20+297+0+0+0+41+0+160+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pmegfe-container\",nodeId:\"ADkrGcYq1\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{E7kGfzAZ2:resolvedLinks1[3]},PMlWjfG5o:{E7kGfzAZ2:resolvedLinks1[2]},QuS8ZRprL:{E7kGfzAZ2:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{E7kGfzAZ2:resolvedLinks1[0],height:\"100%\",id:\"ADkrGcYq1\",layoutId:\"ADkrGcYq1\",r3BrRVhSX:\"Buy Now\",style:{width:\"100%\"},variant:\"KbO8mkVnC\",width:\"100%\"})})})})})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1570vxh\",\"data-framer-name\":\"Phone\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18nxxab\",\"data-styles-preset\":\"iv2TxlkR7\",style:{\"--framer-text-color\":\"var(--token-bbf1b271-20ad-4c7a-98c1-4cf8967a4f86, rgb(12, 30, 27))\"},children:\"For package Details :\"})}),className:\"framer-14f2mlo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-liaid0\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rju6tz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mQL3Gi8fv\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"phone-call\",id:\"mQL3Gi8fv\",layoutId:\"mQL3Gi8fv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18nxxab\",\"data-styles-preset\":\"iv2TxlkR7\",style:{\"--framer-text-color\":\"var(--token-98641526-7167-42c9-b8ee-90b39aac6174, rgb(255, 210, 52))\"},children:\"+163-2645-3645\"})}),className:\"framer-1ayg8gx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bvt40w\",\"data-framer-name\":\"CTA Section \",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined},{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined},{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined},{href:{webPageId:\"A71lFJe2D\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{y:(componentViewport?.y||0)+0+2010.15+0},PMlWjfG5o:{y:(componentViewport?.y||0)+0+2159.15+0},QuS8ZRprL:{y:(componentViewport?.y||0)+0+1503.65+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:466,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+1623.65+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yp1rey-container\",nodeId:\"ZQPiDXJWC\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{variant:\"fWd7DDVV5\",vsv5dGfD5:resolvedLinks2[3]},PMlWjfG5o:{variant:\"v_WKZ4qxh\",vsv5dGfD5:resolvedLinks2[2]},QuS8ZRprL:{variant:\"XvHMO8xtn\",vsv5dGfD5:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(CTASection,{CdIzdsBhE:\"Looking for a plumber in your area contact us now!\",height:\"100%\",id:\"ZQPiDXJWC\",layoutId:\"ZQPiDXJWC\",style:{width:\"100%\"},variant:\"o0DURxoDS\",vsv5dGfD5:resolvedLinks2[0],width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kjqnq0\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{y:(componentViewport?.y||0)+0+2476.15+0+0},PMlWjfG5o:{y:(componentViewport?.y||0)+0+2625.15+0+0},QuS8ZRprL:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+1969.65+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:772,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2089.65+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w50u19-container\",nodeId:\"QTebMJMPW\",scopeId:\"J5WiTkB29\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h69tBVyj_:{variant:\"w1lGI046n\"},PMlWjfG5o:{variant:\"h29ntGfF0\"},QuS8ZRprL:{variant:\"iAr0pJM79\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QTebMJMPW\",layoutId:\"QTebMJMPW\",style:{width:\"100%\"},variant:\"eJ4HA0Ssz\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ENj8j.framer-s7c3ig, .framer-ENj8j .framer-s7c3ig { display: block; }\",\".framer-ENj8j.framer-ofb3fs { align-content: center; align-items: center; background-color: var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, #0e3a2d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ENj8j .framer-1yoglrp, .framer-ENj8j .framer-s2sk6v, .framer-ENj8j .framer-bvt40w { 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-ENj8j .framer-oe1u89-container, .framer-ENj8j .framer-pmegfe-container, .framer-ENj8j .framer-1yp1rey-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ENj8j .framer-1l9hnv2 { align-content: center; align-items: center; background-color: var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, #0e3a2d); 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-ENj8j .framer-1ft5lo7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-ENj8j .framer-yf7fvs { align-content: center; align-items: center; background-color: var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, #0e3a2d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-chd01l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-1is8fmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-dw4fam { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-uiifpc, .framer-ENj8j .framer-cc5o6l, .framer-ENj8j .framer-b1r2fx, .framer-ENj8j .framer-128lpmu, .framer-ENj8j .framer-1sl709x, .framer-ENj8j .framer-1wlla70, .framer-ENj8j .framer-14mig8q, .framer-ENj8j .framer-14f2mlo, .framer-ENj8j .framer-1ayg8gx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ENj8j .framer-1b4216j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-1keccsu-container, .framer-ENj8j .framer-1cgftbc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ENj8j .framer-1d7h3x9 { align-content: center; align-items: center; background-color: var(--token-3785b95a-72f4-4972-919c-30c2e185efac, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-1ud2vjs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-1wrbva1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-1ynbs3p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ENj8j .framer-1jdd8ej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-5q6f9w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-4cajmj, .framer-ENj8j .framer-bstr6e { --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-ENj8j .framer-1yv43xt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-6gskg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-4cp7l9-container, .framer-ENj8j .framer-drhgsw-container, .framer-ENj8j .framer-mopjmo-container, .framer-ENj8j .framer-qaf1i6-container, .framer-ENj8j .framer-1whvzi7-container, .framer-ENj8j .framer-sewjge-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-ENj8j .framer-lpdja0 { align-content: center; align-items: center; background-color: var(--token-b843e22f-4e4f-4d3d-bcd8-bb3116e4125a, #0e3a2d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; opacity: 0.2; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-1fgvyyz, .framer-ENj8j .framer-1kjqnq0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-jjlbpo { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ENj8j .framer-99j4s9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-jz62nk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-130kmop, .framer-ENj8j .framer-s77r67 { --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-ENj8j .framer-17dw92b-container, .framer-ENj8j .framer-1irnl9u-container, .framer-ENj8j .framer-1nuic2e-container, .framer-ENj8j .framer-1w50u19-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ENj8j .framer-m4z4b { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ENj8j .framer-pslljt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 20px 20px 40px 20px; position: relative; width: min-content; }\",\".framer-ENj8j .framer-wijzeu, .framer-ENj8j .framer-36enh6, .framer-ENj8j .framer-1570vxh, .framer-ENj8j .framer-liaid0 { 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; }\",\".framer-ENj8j .framer-u0n07e { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 270px; overflow: hidden; position: relative; width: 376px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ENj8j .framer-gobmgw { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; cursor: pointer; flex: none; height: 80px; left: calc(50.00000000000002% - 80px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 80px / 2); width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ENj8j.framer-11hed8n { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-ENj8j.framer-1bmbpzb-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 1000px; z-index: 10; }\",\".framer-ENj8j.framer-1rn02y3-container { cursor: pointer; flex: none; height: 60px; left: 1340px; position: fixed; top: 40px; width: 60px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-ENj8j .framer-jlfhjo { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-ENj8j .framer-5qqdeu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-1h9fi4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-1d92mct { align-content: center; align-items: center; background-color: #e2efb2; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ENj8j .framer-ftyblb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-7gz9ye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ENj8j .framer-8yu0sc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ENj8j .framer-1rju6tz-container { flex: none; height: 24px; position: relative; width: 24px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,\"@media (min-width: 992px) and (max-width: 1439px) { .framer-ENj8j.framer-ofb3fs { width: 992px; } .framer-ENj8j .framer-yf7fvs, .framer-ENj8j .framer-1d7h3x9 { padding: 100px 30px 100px 30px; } .framer-ENj8j .framer-chd01l, .framer-ENj8j .framer-1ud2vjs { max-width: 1000px; } .framer-ENj8j .framer-1ynbs3p { flex-wrap: wrap; } .framer-ENj8j .framer-m4z4b { width: 45%; } .framer-ENj8j.framer-1bmbpzb-container { height: var(--framer-aspect-ratio-supported, 448px); width: 800px; } .framer-ENj8j.framer-1rn02y3-container { left: 892px; right: 40px; width: unset; } .framer-ENj8j .framer-1kjqnq0 { flex-direction: row; } .framer-ENj8j .framer-1w50u19-container { flex: 1 0 0px; width: 1px; }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-ENj8j.framer-ofb3fs { width: 768px; } .framer-ENj8j .framer-yf7fvs, .framer-ENj8j .framer-1d7h3x9 { padding: 80px 30px 80px 30px; } .framer-ENj8j .framer-chd01l, .framer-ENj8j .framer-1ud2vjs { max-width: 768px; } .framer-ENj8j .framer-1is8fmz { gap: 16px; } .framer-ENj8j .framer-1wrbva1 { flex-direction: column; gap: 50px; } .framer-ENj8j .framer-1ynbs3p { flex: none; order: 0; width: 100%; } .framer-ENj8j .framer-m4z4b { order: 1; width: 59%; } .framer-ENj8j.framer-1bmbpzb-container { height: var(--framer-aspect-ratio-supported, 336px); width: 600px; } .framer-ENj8j.framer-1rn02y3-container { left: 668px; }}\",\"@media (max-width: 767px) { .framer-ENj8j.framer-ofb3fs { width: 390px; } .framer-ENj8j .framer-1ft5lo7-container { order: 0; } .framer-ENj8j .framer-yf7fvs, .framer-ENj8j .framer-1d7h3x9 { padding: 60px 20px 60px 20px; } .framer-ENj8j .framer-chd01l, .framer-ENj8j .framer-1ud2vjs { max-width: 390px; } .framer-ENj8j .framer-1is8fmz { gap: 16px; } .framer-ENj8j .framer-1wrbva1 { align-content: center; align-items: center; flex-direction: column; } .framer-ENj8j .framer-1ynbs3p { flex: none; order: 0; width: 100%; } .framer-ENj8j .framer-m4z4b { order: 1; } .framer-ENj8j .framer-u0n07e { height: 190px; width: 300px; } .framer-ENj8j.framer-1bmbpzb-container { height: var(--framer-aspect-ratio-supported, 168px); width: 300px; } .framer-ENj8j.framer-1rn02y3-container { left: 290px; } .framer-ENj8j .framer-s2sk6v { height: 77px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3494\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QuS8ZRprL\":{\"layout\":[\"fixed\",\"auto\"]},\"PMlWjfG5o\":{\"layout\":[\"fixed\",\"auto\"]},\"h69tBVyj_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"gUpOVkBNA\":{\"pattern\":\":gUpOVkBNA\",\"name\":\"area-select\"},\"EyAnYg7rB\":{\"pattern\":\":EyAnYg7rB\",\"name\":\"play\"}}\n * @framerResponsiveScreen\n */const FramerJ5WiTkB29=withCSS(Component,css,\"framer-ENj8j\");export default FramerJ5WiTkB29;FramerJ5WiTkB29.displayName=\"Service\";FramerJ5WiTkB29.defaultProps={height:3494,width:1440};addFonts(FramerJ5WiTkB29,[{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\"}]},...NavTopBarFonts,...NavigationFonts,...RouterLinkFonts,...HeroFonts,...FaqAccordionFonts,...VideoFonts,...FeatherFonts,...ButtonFonts,...CTASectionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...componentPresets.fonts?.[\"bhO4HBw6n\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"bhO4HBw6n\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ5WiTkB29\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"gUpOVkBNA\\\":{\\\"pattern\\\":\\\":gUpOVkBNA\\\",\\\"name\\\":\\\"area-select\\\"},\\\"EyAnYg7rB\\\":{\\\"pattern\\\":\\\":EyAnYg7rB\\\",\\\"name\\\":\\\"play\\\"}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3494\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QuS8ZRprL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PMlWjfG5o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h69tBVyj_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JEZASABJZ", "mv6wLTcGK", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerD3AzFWO9U", "withCSS", "D3AzFWO9U_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FeatherFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yWZB6Ittk", "UCz3fSJFo", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1nllgzv", "args", "onTap1cmlznv", "onTapu5j3mp", "onTap11m5wwy", "onTapccxan5", "onTapu11zsl", "onTap1t2rn88", "onTapqmuwrk", "onTapnjtw1c", "onTapzr3ipf", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "Framerqa1NkyVU3", "withCSS", "qa1NkyVU3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "getFonts", "PS2z0C3g5_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transformTemplate1", "_", "t", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "bookLink", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CdIzdsBhE", "vsv5dGfD5", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerwjazBI0p4", "withCSS", "wjazBI0p4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavTopBarFonts", "getFonts", "lauqbeXYY_default", "NavigationFonts", "EBQvhOCn8_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithFX", "withFX", "RichText2", "RouterLinkFonts", "D3AzFWO9U_default", "MotionDivWithFX", "motion", "HeroFonts", "Icon", "FaqAccordionFonts", "qa1NkyVU3_default", "ContainerWithFX", "VideoFonts", "Video", "FeatherFonts", "ImageWithFX", "Image2", "ButtonFonts", "PS2z0C3g5_default", "CTASectionFonts", "wjazBI0p4_default", "FooterFonts", "rs7R2XJuW_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "transition4", "transition5", "transition6", "transition7", "transition8", "transition9", "toResponsiveImage", "value", "animation3", "transition10", "transition11", "animation4", "animation5", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition12", "transition13", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "cWdcoD6fv_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "TnCDDPqUP", "n3i1cpfQL", "kWpUFiyYr", "WJkdZchKf", "zS0sAp5v9", "bBtFdE6JB", "fcAsMbOUi", "uUvkxQFEE", "FvFcFYokQ", "OIItjvsle", "SHEVf5Nmc", "Ud7GKUSf6", "WE8xLOGMx", "yTe8hV16P", "GEIHm87qY", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "lauqbeXYY_default", "ContainerWithOptimizedAppearEffect", "EBQvhOCn8_default", "RichTextWithFX", "x", "MotionDivWithFX", "ResolveLinks", "resolvedLinks", "D3AzFWO9U_default", "RichText2", "Icon", "ComponentPresetsProvider", "ContainerWithFX", "qa1NkyVU3_default", "getLoadingLazyAtYPosition", "ImageWithFX", "l", "Image2", "AnimatePresence", "Ga", "Video", "resolvedLinks1", "PS2z0C3g5_default", "resolvedLinks2", "wjazBI0p4_default", "rs7R2XJuW_default", "css", "FramerJ5WiTkB29", "withCSS", "J5WiTkB29_default", "addFonts", "NavTopBarFonts", "NavigationFonts", "RouterLinkFonts", "HeroFonts", "FaqAccordionFonts", "VideoFonts", "FeatherFonts", "ButtonFonts", "CTASectionFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
