{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/zwRTNc3H9KvHBxKZh2cH/g0zVqOBPoZoS7B3aI6Ph/IQq0_t31J.js", "ssg:https://framerusercontent.com/modules/fSpbCHPnuwhlemhmCLgs/KERjxDcUd630ETe2mKix/PWN6tqxXS.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://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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 isPlayingRef=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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=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]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,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/a3RmnZOjcj1qHvuujbJ3/xAEho9djlJ3ny0FEfRyt/IEWLDDaER.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={ZTymBkWVo:{hover:true}};const cycleOrder=[\"ZTymBkWVo\",\"VDaw0gc9l\",\"JF6Vtht7N\"];const serializationHash=\"framer-LAecC\";const variantClassNames={JF6Vtht7N:\"framer-v-c67p0r\",VDaw0gc9l:\"framer-v-92ikbe\",ZTymBkWVo:\"framer-v-136v9uz\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={Active:\"JF6Vtht7N\",Default:\"ZTymBkWVo\",Phone:\"VDaw0gc9l\"};const getProps=({height,id,link,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,BdQZyE73G:(_ref=text!==null&&text!==void 0?text:props.BdQZyE73G)!==null&&_ref!==void 0?_ref:\"Predictive SEO Research \",gqtTDhy0J:link!==null&&link!==void 0?link:props.gqtTDhy0J,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZTymBkWVo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BdQZyE73G,gqtTDhy0J,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZTymBkWVo\",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:gqtTDhy0J,nodeId:\"ZTymBkWVo\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-136v9uz\",className,classNames)} framer-1t8g0t0`,\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ZTymBkWVo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(10, 17, 40, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"ZTymBkWVo-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-3dce6cf5-f7b2-495c-90fb-0e6bed76b512, rgb(10, 17, 40))\"},JF6Vtht7N:{backgroundColor:\"var(--token-3dce6cf5-f7b2-495c-90fb-0e6bed76b512, rgb(10, 17, 40))\"}},...addPropertyOverrides({\"ZTymBkWVo-hover\":{\"data-framer-name\":undefined},JF6Vtht7N:{\"data-framer-name\":\"Active\"},VDaw0gc9l:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-st9gwa\",\"data-styles-preset\":\"IEWLDDaER\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-4754e869-d428-4f90-8c52-e5d7d4bdfb2a, rgb(0, 23, 38)))\"},children:\"Predictive SEO Research \"})}),className:\"framer-1y87yin\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mfo6DLQn8\",style:{\"--extracted-1lwpl3i\":\"var(--token-4754e869-d428-4f90-8c52-e5d7d4bdfb2a, rgb(0, 23, 38))\",\"--framer-paragraph-spacing\":\"0px\"},text:BdQZyE73G,variants:{\"ZTymBkWVo-hover\":{\"--extracted-1lwpl3i\":\"var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255))\"},JF6Vtht7N:{\"--extracted-1lwpl3i\":\"var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ZTymBkWVo-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-st9gwa\",\"data-styles-preset\":\"IEWLDDaER\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255)))\"},children:\"Predictive SEO Research \"})})},JF6Vtht7N:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-st9gwa\",\"data-styles-preset\":\"IEWLDDaER\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255)))\"},children:\"Predictive SEO Research \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uvwcfn-container\",layoutDependency:layoutDependency,layoutId:\"k3Ytct9nc-container\",style:{rotate:-45},variants:{\"ZTymBkWVo-hover\":{rotate:0},JF6Vtht7N:{rotate:0}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-3dce6cf5-f7b2-495c-90fb-0e6bed76b512, rgb(10, 17, 40))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"k3Ytct9nc\",layoutId:\"k3Ytct9nc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"ZTymBkWVo-hover\":{color:\"var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255))\"},JF6Vtht7N:{color:\"var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LAecC.framer-1t8g0t0, .framer-LAecC .framer-1t8g0t0 { display: block; }\",\".framer-LAecC.framer-136v9uz { 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: visible; padding: 15px 24px 15px 24px; position: relative; text-decoration: none; width: 330px; }\",\".framer-LAecC .framer-1y87yin { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LAecC .framer-1uvwcfn-container { aspect-ratio: 1.03125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LAecC.framer-136v9uz { gap: 0px; } .framer-LAecC.framer-136v9uz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LAecC.framer-136v9uz > :first-child { margin-left: 0px; } .framer-LAecC.framer-136v9uz > :last-child { margin-right: 0px; } }\",\".framer-LAecC.framer-v-92ikbe.framer-136v9uz, .framer-LAecC.framer-v-c67p0r.framer-136v9uz { cursor: unset; }\",...sharedStyle.css,'.framer-LAecC[data-border=\"true\"]::after, .framer-LAecC [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 60\n * @framerIntrinsicWidth 330\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VDaw0gc9l\":{\"layout\":[\"fixed\",\"auto\"]},\"JF6Vtht7N\":{\"layout\":[\"fixed\",\"auto\"]},\"UcMajnYSE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BdQZyE73G\":\"text\",\"gqtTDhy0J\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIQq0_t31J=withCSS(Component,css,\"framer-LAecC\");export default FramerIQq0_t31J;FramerIQq0_t31J.displayName=\"Service / Service List\";FramerIQq0_t31J.defaultProps={height:60,width:330};addPropertyControls(FramerIQq0_t31J,{variant:{options:[\"ZTymBkWVo\",\"VDaw0gc9l\",\"JF6Vtht7N\"],optionTitles:[\"Default\",\"Phone\",\"Active\"],title:\"Variant\",type:ControlType.Enum},BdQZyE73G:{defaultValue:\"Predictive SEO Research \",displayTextArea:false,title:\"Text\",type:ControlType.String},gqtTDhy0J:{title:\"Link\",type:ControlType.Link}});addFonts(FramerIQq0_t31J,[{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\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIQq0_t31J\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VDaw0gc9l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JF6Vtht7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UcMajnYSE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"BdQZyE73G\\\":\\\"text\\\",\\\"gqtTDhy0J\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"60\",\"framerIntrinsicWidth\":\"330\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6266459)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import ServiceServiceList from\"#framer/local/canvasComponent/IQq0_t31J/IQq0_t31J.js\";import HeaderHeader from\"#framer/local/canvasComponent/NU__adM7F/NU__adM7F.js\";import FooterFooter from\"#framer/local/canvasComponent/s5hl6XtkX/s5hl6XtkX.js\";import Services from\"#framer/local/collection/pOZcxl9bn/pOZcxl9bn.js\";import*as sharedStyle5 from\"#framer/local/css/bNX8RCrpH/bNX8RCrpH.js\";import*as sharedStyle4 from\"#framer/local/css/CR0Va_GlA/CR0Va_GlA.js\";import*as sharedStyle2 from\"#framer/local/css/d5bzhn0us/d5bzhn0us.js\";import*as sharedStyle1 from\"#framer/local/css/pHBb0dW7C/pHBb0dW7C.js\";import*as sharedStyle from\"#framer/local/css/QGVtJt_YH/QGVtJt_YH.js\";import*as sharedStyle6 from\"#framer/local/css/tAuyX0nem/tAuyX0nem.js\";import*as sharedStyle3 from\"#framer/local/css/xWIuOGbEf/xWIuOGbEf.js\";import metadataProvider from\"#framer/local/webPageMetadata/PWN6tqxXS/PWN6tqxXS.js\";const HeaderHeaderFonts=getFonts(HeaderHeader);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ServiceServiceListFonts=getFonts(ServiceServiceList);const VideoFonts=getFonts(Video);const FooterFooterFonts=getFonts(FooterFooter);const breakpoints={AObEfZuQW:\"(max-width: 767px)\",cbM51tONX:\"(min-width: 768px) and (max-width: 1199px)\",ukiwSBKE1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4my39\";const variantClassNames={AObEfZuQW:\"framer-v-nz9g4j\",cbM51tONX:\"framer-v-dvy0t0\",ukiwSBKE1:\"framer-v-w45sin\"};const transition1={delay:0,duration:.5,ease:[.5,1,.89,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"JF6Vtht7N\";}else{return\"ZTymBkWVo\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"ukiwSBKE1\",Phone:\"AObEfZuQW\",Tablet:\"cbM51tONX\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ukiwSBKE1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"PWN6tqxXS\",data:Services,type:\"Collection\"},select:[{collection:\"PWN6tqxXS\",name:\"t5iUzUqME\",type:\"Identifier\"},{collection:\"PWN6tqxXS\",name:\"wVFMzQPNj\",type:\"Identifier\"},{collection:\"PWN6tqxXS\",name:\"dEMAVOqrx\",type:\"Identifier\"},{collection:\"PWN6tqxXS\",name:\"vNkJublr1\",type:\"Identifier\"},{collection:\"PWN6tqxXS\",name:\"DxWtR9kSN\",type:\"Identifier\"},{collection:\"PWN6tqxXS\",name:\"t_vDkZ5FJ\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"PWN6tqxXS\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4;const{style,className,layoutId,variant,wVFMzQPNj=(_getFromCurrentRouteData=getFromCurrentRouteData(\"wVFMzQPNj\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",wVFMzQPNjp553_GFNN,t5iUzUqMEp553_GFNN,idp553_GFNN,dEMAVOqrx=getFromCurrentRouteData(\"dEMAVOqrx\"),vNkJublr1=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"vNkJublr1\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",DxWtR9kSN=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"DxWtR9kSN\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",t_vDkZ5FJ=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"t_vDkZ5FJ\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",t5iUzUqME=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"t5iUzUqME\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-4my39`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-4my39`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"bqTNzSbSc\");const ref2=React.useRef(null);const router=useRouter();const visible=isSet(dEMAVOqrx);const visible1=isSet(vNkJublr1);const visible2=isSet(DxWtR9kSN);const visible3=isSet(t_vDkZ5FJ);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ukiwSBKE1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w45sin\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zczfq0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AObEfZuQW:{variant:\"xFKYx66HI\"},cbM51tONX:{variant:\"skEvmb6JF\"}},children:/*#__PURE__*/_jsx(HeaderHeader,{height:\"100%\",id:\"CbFIkFP6l\",IKv1AUsYx:{borderBottomWidth:0,borderColor:\"rgba(10, 17, 40, 0)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},layoutId:\"CbFIkFP6l\",nd_SiP8TZ:\"var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"TA_UnAw0n\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-154bj51\",\"data-framer-name\":\"Banner Section\",id:elementId,name:\"Banner Section\",ref:ref2,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\"},className:\"framer-15z5ih0\",\"data-framer-appear-id\":\"15z5ih0\",\"data-framer-name\":\"Background \",initial:animation1,name:\"Background \",optimized:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czni81\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kcdy2f\",\"data-framer-name\":\"Content Block\",name:\"Content Block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-80vl4s\",\"data-styles-preset\":\"QGVtJt_YH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4754e869-d428-4f90-8c52-e5d7d4bdfb2a, rgb(0, 23, 38))\"},children:\"Service Details\"})}),className:\"framer-1ykiq0s\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:wVFMzQPNj,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-51j8gl\",\"data-framer-name\":\"Service Secion\",name:\"Service Secion\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14k47zt\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oy64s0\",\"data-framer-name\":\"Content Wrapper\",name:\"Content Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wi2eia\",\"data-framer-name\":\"Service Details Block\",name:\"Service Details Block\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1sqc\",\"data-framer-name\":\"Sidebar Content\",name:\"Sidebar Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-li8552\",\"data-border\":true,\"data-framer-name\":\"Side Card Block\",name:\"Side Card Block\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rw7ul6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"p553_GFNN\",data:Services,type:\"Collection\"},select:[{collection:\"p553_GFNN\",name:\"wVFMzQPNj\",type:\"Identifier\"},{collection:\"p553_GFNN\",name:\"t5iUzUqME\",type:\"Identifier\"},{collection:\"p553_GFNN\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({id:idp553_GFNN,t5iUzUqME:t5iUzUqMEp553_GFNN,wVFMzQPNj:wVFMzQPNjp553_GFNN},i)=>{wVFMzQPNjp553_GFNN!==null&&wVFMzQPNjp553_GFNN!==void 0?wVFMzQPNjp553_GFNN:wVFMzQPNjp553_GFNN=\"\";t5iUzUqMEp553_GFNN!==null&&t5iUzUqMEp553_GFNN!==void 0?t5iUzUqMEp553_GFNN:t5iUzUqMEp553_GFNN=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`p553_GFNN-${idp553_GFNN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t5iUzUqME:t5iUzUqMEp553_GFNN},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{t5iUzUqME:t5iUzUqMEp553_GFNN},webPageId:\"PWN6tqxXS\"},implicitPathVariables:undefined},{href:{pathVariables:{t5iUzUqME:t5iUzUqMEp553_GFNN},webPageId:\"PWN6tqxXS\"},implicitPathVariables:undefined},{href:{pathVariables:{t5iUzUqME:t5iUzUqMEp553_GFNN},webPageId:\"PWN6tqxXS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AObEfZuQW:{width:\"calc(max(min(max(100vw, 1px), 363px), 1px) - 48px)\",y:1611.0000016},cbM51tONX:{width:\"calc(max(min(max(100vw, 1px), 714px), 1px) * 0.6 - 48px)\",y:1632.0000016}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"calc(max(min(max(100vw, 1px), 1114px), 1px) * 0.321 - 48px)\",y:477.0000016,children:/*#__PURE__*/_jsx(Container,{className:\"framer-scmk5f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AObEfZuQW:{gqtTDhy0J:resolvedLinks[2],variant:\"VDaw0gc9l\"},cbM51tONX:{gqtTDhy0J:resolvedLinks[1],variant:\"VDaw0gc9l\"}},children:/*#__PURE__*/_jsx(ServiceServiceList,{BdQZyE73G:wVFMzQPNjp553_GFNN,gqtTDhy0J:resolvedLinks[0],height:\"100%\",id:\"LEHYy0GPX\",layoutId:\"LEHYy0GPX\",style:{width:\"100%\"},variant:convertFromBoolean(equals(wVFMzQPNj,wVFMzQPNjp553_GFNN),activeLocale),width:\"100%\"})})})})})})})},idp553_GFNN);})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vqngpg\",\"data-framer-name\":\"Text Content\",name:\"Text Content\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19cm473-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:true,height:\"100%\",id:\"Ppcjd__8g\",isMixedBorderRadius:false,layoutId:\"Ppcjd__8g\",loop:true,muted:false,objectFit:\"fill\",playing:false,posterEnabled:false,srcFile:dEMAVOqrx,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qhfcq\",\"data-framer-name\":\"Title Block\",name:\"Title Block\",children:visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vNkJublr1,className:\"framer-1qwn4dn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",stylesPresetsClassNames:{a:\"framer-styles-preset-1v916e3\",code:\"framer-styles-preset-1az0ig1\",h2:\"framer-styles-preset-1rqq1au\",img:\"framer-styles-preset-15ul2c1\",p:\"framer-styles-preset-cghy39\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:DxWtR9kSN,className:\"framer-fqxhln\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",stylesPresetsClassNames:{a:\"framer-styles-preset-1v916e3\",code:\"framer-styles-preset-1az0ig1\",h3:\"framer-styles-preset-ccnf9o\",img:\"framer-styles-preset-15ul2c1\",p:\"framer-styles-preset-cghy39\"},verticalAlignment:\"top\",withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:t_vDkZ5FJ,className:\"framer-e9fn2t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",stylesPresetsClassNames:{a:\"framer-styles-preset-1v916e3\",code:\"framer-styles-preset-1az0ig1\",h3:\"framer-styles-preset-ccnf9o\",img:\"framer-styles-preset-15ul2c1\",p:\"framer-styles-preset-cghy39\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":bqTNzSbSc\",pathVariables:{t5iUzUqME},webPageId:\"PWN6tqxXS\"},implicitPathVariables:undefined},{href:{hash:\":bqTNzSbSc\",pathVariables:{t5iUzUqME},webPageId:\"PWN6tqxXS\"},implicitPathVariables:undefined},{href:{hash:\":bqTNzSbSc\",pathVariables:{t5iUzUqME},webPageId:\"PWN6tqxXS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AObEfZuQW:{y:1755.0000016},cbM51tONX:{y:1776.0000016}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:873,width:\"100vw\",y:1803.0000016,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16o6t36-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AObEfZuQW:{SdeqftCzt:resolvedLinks1[2],variant:\"fBPCGkieY\"},cbM51tONX:{SdeqftCzt:resolvedLinks1[1],variant:\"p7TRjLHUY\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"QLqwgIFvH\",layoutId:\"QLqwgIFvH\",SdeqftCzt:resolvedLinks1[0],style:{width:\"100%\"},variant:\"XewbLuzfS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-4my39 { background: var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-4my39.framer-otbfxw, .framer-4my39 .framer-otbfxw { display: block; }\",\".framer-4my39.framer-w45sin { align-content: center; align-items: center; background-color: var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-4my39 .framer-zczfq0-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-4my39 .framer-154bj51 { align-content: center; align-items: center; background-color: var(--token-cb7e275f-0ac7-44c4-a0c8-330a80eab64c, #f2f7fc); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 193px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4my39 .framer-15z5ih0 { flex: none; height: 554px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.89898989898992% - 554px / 2); width: 100%; z-index: 1; }\",\".framer-4my39 .framer-1czni81 { 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: center; max-width: 1114px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; z-index: 10; }\",\".framer-4my39 .framer-kcdy2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-4my39 .framer-1ykiq0s, .framer-4my39 .framer-1qwn4dn, .framer-4my39 .framer-fqxhln, .framer-4my39 .framer-e9fn2t { --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-4my39 .framer-51j8gl { 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: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4my39 .framer-14k47zt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1114px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4my39 .framer-oy64s0 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4my39 .framer-wi2eia { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4my39 .framer-t1sqc { 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; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 32%; }\",\".framer-4my39 .framer-li8552 { --border-bottom-width: 1px; --border-color: rgba(10, 17, 40, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-cb7e275f-0ac7-44c4-a0c8-330a80eab64c, #f2f7fc); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-4my39 .framer-1rw7ul6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-4my39 .framer-scmk5f-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4my39 .framer-1vqngpg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1250px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 66%; }\",\".framer-4my39 .framer-19cm473-container { flex: none; height: 360px; position: relative; width: 480px; }\",\".framer-4my39 .framer-14qhfcq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4my39 .framer-16o6t36-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4my39.framer-w45sin, .framer-4my39 .framer-154bj51, .framer-4my39 .framer-1czni81, .framer-4my39 .framer-kcdy2f, .framer-4my39 .framer-51j8gl, .framer-4my39 .framer-14k47zt, .framer-4my39 .framer-oy64s0, .framer-4my39 .framer-wi2eia, .framer-4my39 .framer-t1sqc, .framer-4my39 .framer-li8552, .framer-4my39 .framer-1rw7ul6, .framer-4my39 .framer-1vqngpg, .framer-4my39 .framer-14qhfcq { gap: 0px; } .framer-4my39.framer-w45sin > *, .framer-4my39 .framer-1czni81 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4my39.framer-w45sin > :first-child, .framer-4my39 .framer-1czni81 > :first-child, .framer-4my39 .framer-kcdy2f > :first-child, .framer-4my39 .framer-oy64s0 > :first-child, .framer-4my39 .framer-t1sqc > :first-child, .framer-4my39 .framer-li8552 > :first-child, .framer-4my39 .framer-1rw7ul6 > :first-child, .framer-4my39 .framer-1vqngpg > :first-child, .framer-4my39 .framer-14qhfcq > :first-child { margin-top: 0px; } .framer-4my39.framer-w45sin > :last-child, .framer-4my39 .framer-1czni81 > :last-child, .framer-4my39 .framer-kcdy2f > :last-child, .framer-4my39 .framer-oy64s0 > :last-child, .framer-4my39 .framer-t1sqc > :last-child, .framer-4my39 .framer-li8552 > :last-child, .framer-4my39 .framer-1rw7ul6 > :last-child, .framer-4my39 .framer-1vqngpg > :last-child, .framer-4my39 .framer-14qhfcq > :last-child { margin-bottom: 0px; } .framer-4my39 .framer-154bj51 > *, .framer-4my39 .framer-51j8gl > *, .framer-4my39 .framer-14k47zt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4my39 .framer-154bj51 > :first-child, .framer-4my39 .framer-51j8gl > :first-child, .framer-4my39 .framer-14k47zt > :first-child, .framer-4my39 .framer-wi2eia > :first-child { margin-left: 0px; } .framer-4my39 .framer-154bj51 > :last-child, .framer-4my39 .framer-51j8gl > :last-child, .framer-4my39 .framer-14k47zt > :last-child, .framer-4my39 .framer-wi2eia > :last-child { margin-right: 0px; } .framer-4my39 .framer-kcdy2f > *, .framer-4my39 .framer-li8552 > *, .framer-4my39 .framer-1rw7ul6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-4my39 .framer-oy64s0 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-4my39 .framer-wi2eia > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-4my39 .framer-t1sqc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-4my39 .framer-1vqngpg > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4my39 .framer-14qhfcq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-4my39 { background: var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-4my39.framer-w45sin { width: 768px; } .framer-4my39 .framer-154bj51 { padding: 148px 0px 60px 0px; } .framer-4my39 .framer-1czni81 { max-width: 808px; } .framer-4my39 .framer-51j8gl { padding: 60px 0px 60px 0px; } .framer-4my39 .framer-14k47zt { max-width: 714px; } .framer-4my39 .framer-oy64s0 { align-content: center; align-items: center; gap: 40px; } .framer-4my39 .framer-wi2eia { flex-direction: column; order: 0; } .framer-4my39 .framer-t1sqc { order: 1; width: 60%; } .framer-4my39 .framer-li8552 { order: 0; } .framer-4my39 .framer-1vqngpg { order: 0; width: 100%; } .framer-4my39 .framer-14qhfcq { gap: 18px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4my39 .framer-oy64s0, .framer-4my39 .framer-wi2eia, .framer-4my39 .framer-14qhfcq { gap: 0px; } .framer-4my39 .framer-oy64s0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-4my39 .framer-oy64s0 > :first-child, .framer-4my39 .framer-wi2eia > :first-child, .framer-4my39 .framer-14qhfcq > :first-child { margin-top: 0px; } .framer-4my39 .framer-oy64s0 > :last-child, .framer-4my39 .framer-wi2eia > :last-child, .framer-4my39 .framer-14qhfcq > :last-child { margin-bottom: 0px; } .framer-4my39 .framer-wi2eia > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4my39 .framer-14qhfcq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-4my39 { background: var(--token-e4ad0d1c-f737-4783-b6d0-d1e186c93a64, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-4my39.framer-w45sin { width: 390px; } .framer-4my39 .framer-154bj51 { padding: 127px 0px 60px 0px; } .framer-4my39 .framer-1czni81, .framer-4my39 .framer-14k47zt { max-width: 363px; } .framer-4my39 .framer-kcdy2f, .framer-4my39 .framer-14qhfcq { gap: 16px; } .framer-4my39 .framer-51j8gl { padding: 60px 0px 60px 0px; } .framer-4my39 .framer-oy64s0 { gap: 30px; } .framer-4my39 .framer-wi2eia { flex-direction: column; order: 0; } .framer-4my39 .framer-t1sqc { gap: 30px; order: 1; width: 100%; } .framer-4my39 .framer-1vqngpg { gap: 24px; order: 0; width: 100%; } .framer-4my39 .framer-19cm473-container { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 240px); width: 320px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4my39 .framer-kcdy2f, .framer-4my39 .framer-oy64s0, .framer-4my39 .framer-wi2eia, .framer-4my39 .framer-t1sqc, .framer-4my39 .framer-1vqngpg, .framer-4my39 .framer-14qhfcq { gap: 0px; } .framer-4my39 .framer-kcdy2f > *, .framer-4my39 .framer-14qhfcq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-4my39 .framer-kcdy2f > :first-child, .framer-4my39 .framer-oy64s0 > :first-child, .framer-4my39 .framer-wi2eia > :first-child, .framer-4my39 .framer-t1sqc > :first-child, .framer-4my39 .framer-1vqngpg > :first-child, .framer-4my39 .framer-14qhfcq > :first-child { margin-top: 0px; } .framer-4my39 .framer-kcdy2f > :last-child, .framer-4my39 .framer-oy64s0 > :last-child, .framer-4my39 .framer-wi2eia > :last-child, .framer-4my39 .framer-t1sqc > :last-child, .framer-4my39 .framer-1vqngpg > :last-child, .framer-4my39 .framer-14qhfcq > :last-child { margin-bottom: 0px; } .framer-4my39 .framer-oy64s0 > *, .framer-4my39 .framer-wi2eia > *, .framer-4my39 .framer-t1sqc > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4my39 .framer-1vqngpg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-4my39[data-border=\"true\"]::after, .framer-4my39 [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 2673\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cbM51tONX\":{\"layout\":[\"fixed\",\"auto\"]},\"AObEfZuQW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerPWN6tqxXS=withCSS(Component,css,\"framer-4my39\");export default FramerPWN6tqxXS;FramerPWN6tqxXS.displayName=\"Services\";FramerPWN6tqxXS.defaultProps={height:2673,width:1200};addFonts(FramerPWN6tqxXS,[{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\"}]},...HeaderHeaderFonts,...ServiceServiceListFonts,...VideoFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPWN6tqxXS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cbM51tONX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AObEfZuQW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"2673\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"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", "isPlayingRef", "setProgress", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BdQZyE73G", "gqtTDhy0J", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerIQq0_t31J", "withCSS", "IQq0_t31J_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeaderHeaderFonts", "getFonts", "NU_adM7F_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ServiceServiceListFonts", "IQq0_t31J_default", "VideoFonts", "Video", "FooterFooterFonts", "s5hl6XtkX_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "equals", "a", "b", "convertFromBoolean", "value", "activeLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "isSet", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "pOZcxl9bn_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "style", "className", "layoutId", "variant", "wVFMzQPNj", "wVFMzQPNjp553_GFNN", "t5iUzUqMEp553_GFNN", "idp553_GFNN", "dEMAVOqrx", "vNkJublr1", "DxWtR9kSN", "t_vDkZ5FJ", "t5iUzUqME", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "visible", "visible1", "visible2", "visible3", "defaultLayoutId", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NU_adM7F_default", "MotionDivWithOptimizedAppearEffect", "RichText2", "x", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "IQq0_t31J_default", "Video", "resolvedLinks1", "s5hl6XtkX_default", "css", "FramerPWN6tqxXS", "withCSS", "PWN6tqxXS_default", "addFonts", "HeaderHeaderFonts", "ServiceServiceListFonts", "VideoFonts", "FooterFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
