{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/Zy6if6emkrh5MQqud43f/kpky5jBPLNdqgZcajA6r/CRMQTz_TT.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 (dc5e905)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Testimonial from\"#framer/local/canvasComponent/AXfHuYkPh/AXfHuYkPh.js\";import Cookiebar,*as CookiebarInfo from\"#framer/local/canvasComponent/mHtk7qnir/mHtk7qnir.js\";import Footer from\"#framer/local/canvasComponent/siJ0_3eag/siJ0_3eag.js\";import Button from\"#framer/local/canvasComponent/ukucqcfhm/ukucqcfhm.js\";import Navigation from\"#framer/local/canvasComponent/xRA1JHGDQ/xRA1JHGDQ.js\";import{checkCookiebarHidden}from\"#framer/local/codeFile/o7Kbf8z/Overrides.js\";import*as sharedStyle9 from\"#framer/local/css/cqLdpDgeY/cqLdpDgeY.js\";import*as sharedStyle6 from\"#framer/local/css/DkBEeD3Dj/DkBEeD3Dj.js\";import*as sharedStyle2 from\"#framer/local/css/FO1MB2GS0/FO1MB2GS0.js\";import*as sharedStyle8 from\"#framer/local/css/jZkjCo6fh/jZkjCo6fh.js\";import*as sharedStyle1 from\"#framer/local/css/ksUi3LdX3/ksUi3LdX3.js\";import*as sharedStyle7 from\"#framer/local/css/mTVGU_PGf/mTVGU_PGf.js\";import*as sharedStyle3 from\"#framer/local/css/nJCLcQaIr/nJCLcQaIr.js\";import*as sharedStyle4 from\"#framer/local/css/OZSlHcCko/OZSlHcCko.js\";import*as sharedStyle from\"#framer/local/css/UUG9RuOrV/UUG9RuOrV.js\";import*as sharedStyle5 from\"#framer/local/css/W5D6hDl87/W5D6hDl87.js\";import metadataProvider from\"#framer/local/webPageMetadata/CRMQTz_TT/CRMQTz_TT.js\";const NavigationFonts=getFonts(Navigation);const FeatherFonts=getFonts(Feather);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const Video1Fonts=getFonts(Video1);const TestimonialFonts=getFonts(Testimonial);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const CookiebarFonts=getFonts(Cookiebar);const CookiebarCheckCookiebarHidden14d0jy2WithMappedReactProps122032x=withMappedReactProps(withCodeBoundaryForOverrides(Cookiebar,{nodeId:\"AZUc4vcoJ\",override:checkCookiebarHidden,scopeId:\"CRMQTz_TT\"}),CookiebarInfo);const breakpoints={djki3N_Kk:\"(min-width: 600px) and (max-width: 799px)\",q43F2y0Xa:\"(min-width: 800px) and (max-width: 1299px)\",rZZy0TLVV:\"(min-width: 1920px)\",TGzSv6A3u:\"(min-width: 1300px) and (max-width: 1919px)\",u68DHgJFt:\"(max-width: 599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-T5gPz\";const variantClassNames={djki3N_Kk:\"framer-v-14xa2oj\",q43F2y0Xa:\"framer-v-1vm91v0\",rZZy0TLVV:\"framer-v-1u8j9tg\",TGzSv6A3u:\"framer-v-84q6do\",u68DHgJFt:\"framer-v-1w3c95g\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-150,y:0};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Medium\":\"TGzSv6A3u\",\"Phone 2\":\"u68DHgJFt\",Desktop:\"rZZy0TLVV\",Phone:\"djki3N_Kk\",Tablet:\"q43F2y0Xa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rZZy0TLVV\"};};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{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"djki3N_Kk\",\"u68DHgJFt\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"djki3N_Kk\",\"u68DHgJFt\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"rZZy0TLVV\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e6eea81a-9601-49ee-b2d2-98a18e463bc3, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1u8j9tg\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q663wr-container\",layoutScroll:true,nodeId:\"vlbG6gGqk\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{variant:\"BcqL4dIaa\"},q43F2y0Xa:{variant:\"BcqL4dIaa\"},TGzSv6A3u:{variant:\"kgjvuv3nc\"},u68DHgJFt:{variant:\"BcqL4dIaa\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",hsUUQwqNV:\"0px 4px 30px 0px rgba(0, 0, 0, 0.25)\",id:\"vlbG6gGqk\",layoutId:\"vlbG6gGqk\",style:{width:\"100%\"},variant:\"VJCyIQReT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s0x9\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dykden\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dnerzv\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12t64cd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ao9vaa\",\"data-framer-name\":\"BANNER\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hj3xcg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1303f8n\",\"data-styles-preset\":\"UUG9RuOrV\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"WHITEPAPER: \"}),\"2025 Global Solar Report: yearly performance trends & benchmarks from 193 GWdc of data\"]})}),className:\"framer-1b1ymfb\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://raptormaps.com/resources/global-solar-report-2025?utm_campaign=website_header\",motionChild:true,nodeId:\"Yeb1fqdW_\",openInNewTab:false,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zjguuc framer-1ovz2vx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uvsy5z\",\"data-styles-preset\":\"ksUi3LdX3\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"ACCESS REPORT\"})})}),className:\"framer-1l7972q\",effect:textEffect,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbtjti-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FpOZKxgP8\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"FpOZKxgP8\",layoutId:\"FpOZKxgP8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5q7qz0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yfcld9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4alaau\",\"data-framer-name\":\"Hero Text & Buttons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhs75n\",\"data-framer-name\":\"Hero Text Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19flaxr\",\"data-framer-name\":\"H1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o8o4nq\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ccqvok\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-10339yv\",\"data-styles-preset\":\"FO1MB2GS0\",style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We lower \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"risks, costs, and losses\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"for solar\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" asset owners\"})})]})}),className:\"framer-s8m9ah\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2e00g\",\"data-framer-name\":\"H2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[\"Turn data from the \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"air, ground, sensors, and equipment\"}),\" \"]}),\"into performance intelligence that gives you \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"clear-eyed visibility\"})}),\" into what needs your attention at each solar plant. \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Automate time-intensive manual investigations\"}),\" \"]}),\"and free up your team's time to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"focus on action\"})}),\".\"]})}),className:\"framer-bf5a0\",\"data-framer-name\":\"Collect and analyze data on construction progress more frequently and reliably with autonomous drones and AI-powered analytics.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pcwqv1\",\"data-framer-name\":\"CTA Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aRkIbo3ri\"},implicitPathVariables:undefined},{href:{webPageId:\"aRkIbo3ri\"},implicitPathVariables:undefined},{href:{webPageId:\"aRkIbo3ri\"},implicitPathVariables:undefined},{href:{webPageId:\"aRkIbo3ri\"},implicitPathVariables:undefined},{href:{webPageId:\"aRkIbo3ri\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+0+0+0+0+0+331+0+0+0+0+0+287.2+0},q43F2y0Xa:{y:(componentViewport?.y||0)+0+0+0+0+0+0+280+0+0+0+0+0+287.2+0},TGzSv6A3u:{y:(componentViewport?.y||0)+0+0+0+0+0+0+221+0+0+154.4+0+257.2+0},u68DHgJFt:{y:(componentViewport?.y||0)+0+0+0+0+0+0+331+0+0+0+0+0+287.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+0+0+0+251+0+0+0+0+287.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bufuqa-container\",nodeId:\"FojOxhZCd\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{QXr8P2FYs:resolvedLinks[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks[1]},u68DHgJFt:{QXr8P2FYs:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"FojOxhZCd\",jOa5Bb5lB:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",layoutId:\"FojOxhZCd\",ll5qMfmqF:\"CONTACT US\",QXr8P2FYs:resolvedLinks[0],variant:\"JIVHN4mDG\",width:\"100%\",xpdDeN3QS:\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+0+0+0+0+0+331+0+0+0+0+0+287.2+0},q43F2y0Xa:{y:(componentViewport?.y||0)+0+0+0+0+0+0+280+0+0+0+0+0+287.2+0},TGzSv6A3u:{y:(componentViewport?.y||0)+0+0+0+0+0+0+221+0+0+154.4+0+257.2+0},u68DHgJFt:{y:(componentViewport?.y||0)+0+0+0+0+0+0+331+0+0+0+0+0+287.2+0+69}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+0+0+0+251+0+0+0+0+287.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgn7fb-container\",nodeId:\"lVpfg92qt\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{QXr8P2FYs:resolvedLinks1[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks1[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks1[1]},u68DHgJFt:{QXr8P2FYs:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"lVpfg92qt\",jOa5Bb5lB:\"var(--token-a5e461b7-c4a5-4245-8575-f517f4749974, rgb(51, 51, 51))\",layoutId:\"lVpfg92qt\",ll5qMfmqF:\"GET A TOUR\",QXr8P2FYs:resolvedLinks1[0],variant:\"hqUzXk_yk\",width:\"100%\",xpdDeN3QS:\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hl7b7u\",\"data-framer-name\":\"Hero Video\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4lvd7\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1smkzqd-container\",isModuleExternal:true,nodeId:\"iDzolKt93\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q43F2y0Xa:{objectFit:\"fill\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iDzolKt93\",isMixedBorderRadius:false,layoutId:\"iDzolKt93\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://marketing.raptormaps.com/hubfs/DT%20Only%20Hero%20Video%20vF.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})]})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15oa7hq\",\"data-framer-name\":\"Trusted Customers - auto carousel\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fead6i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",style:{\"--framer-text-color\":\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Trusted by leading IPPs, regulated utilities, O&Ms, and EPCs around the world\"})})}),className:\"framer-p4zq49\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t8ampw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LVEOXo5XI\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"LVEOXo5XI\",layoutId:\"LVEOXo5XI\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:139,intrinsicWidth:440,pixelHeight:139,pixelWidth:440,src:\"https://framerusercontent.com/images/qt351dPq4ItFDPnleEv6lADBEU.webp\"},className:\"framer-t0d1ep\",\"data-framer-name\":\"CCR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:472,intrinsicWidth:1400,pixelHeight:472,pixelWidth:1400,sizes:\"193px\",src:\"https://framerusercontent.com/images/64a1Wm045p3BCteuC6u8tRKB8.png\",srcSet:\"https://framerusercontent.com/images/64a1Wm045p3BCteuC6u8tRKB8.png?scale-down-to=512 512w,https://framerusercontent.com/images/64a1Wm045p3BCteuC6u8tRKB8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/64a1Wm045p3BCteuC6u8tRKB8.png 1400w\"},className:\"framer-v40xnd\",\"data-framer-name\":\"ENGIE Blue\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:291,intrinsicWidth:600,pixelHeight:291,pixelWidth:600,sizes:\"134px\",src:\"https://framerusercontent.com/images/vjTbTVuLRCRoRtdWnhmihmd08.png\",srcSet:\"https://framerusercontent.com/images/vjTbTVuLRCRoRtdWnhmihmd08.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjTbTVuLRCRoRtdWnhmihmd08.png 600w\"},className:\"framer-1ne8pwl\",\"data-framer-name\":\"EDF Full\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:223,intrinsicWidth:650,pixelHeight:223,pixelWidth:650,sizes:\"189px\",src:\"https://framerusercontent.com/images/b17e7gyEoGDZBxk0cCAdKsAQR30.webp\",srcSet:\"https://framerusercontent.com/images/b17e7gyEoGDZBxk0cCAdKsAQR30.webp?scale-down-to=512 512w,https://framerusercontent.com/images/b17e7gyEoGDZBxk0cCAdKsAQR30.webp 650w\"},className:\"framer-1ibimk8\",\"data-framer-name\":\"Greenbacker\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:309,intrinsicWidth:916,pixelHeight:309,pixelWidth:916,sizes:\"193px\",src:\"https://framerusercontent.com/images/GYeXrOraJq9qUibNEwYgHaaC0Iw.png\",srcSet:\"https://framerusercontent.com/images/GYeXrOraJq9qUibNEwYgHaaC0Iw.png?scale-down-to=512 512w,https://framerusercontent.com/images/GYeXrOraJq9qUibNEwYgHaaC0Iw.png 916w\"},className:\"framer-1wy5hfh\",\"data-framer-name\":\"ACT Power Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:435,pixelHeight:129,pixelWidth:435,src:\"https://framerusercontent.com/images/tEWXksqg2HYZjo0iAVikUNRo.png\"},className:\"framer-4kaqvc\",\"data-framer-name\":\"Apex\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:290,intrinsicWidth:867,pixelHeight:290,pixelWidth:867,sizes:\"194px\",src:\"https://framerusercontent.com/images/YdDO0CyjwTC8Pv7dF3nNwNjVXhU.png\",srcSet:\"https://framerusercontent.com/images/YdDO0CyjwTC8Pv7dF3nNwNjVXhU.png?scale-down-to=512 512w,https://framerusercontent.com/images/YdDO0CyjwTC8Pv7dF3nNwNjVXhU.png 867w\"},className:\"framer-j8t2q7\",\"data-framer-name\":\"Aspen\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:142,intrinsicWidth:207,pixelHeight:142,pixelWidth:207,src:\"https://framerusercontent.com/images/IzznCbc7DN5z1O4Bm9TPPh8Vbxs.png\"},className:\"framer-pyscg3\",\"data-framer-name\":\"Skyline Energy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:217,intrinsicWidth:325,pixelHeight:217,pixelWidth:325,src:\"https://framerusercontent.com/images/Ap8GlwyZp6N8T1WCYAbgrrCykA.png\"},className:\"framer-ycob5x\",\"data-framer-name\":\"Luminace\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gwk646\",\"data-framer-name\":\"Benefits\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11k01gh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h6lea6\",\"data-styles-preset\":\"OZSlHcCko\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Why Raptor Maps\"})})}),className:\"framer-d6y6ql\",\"data-framer-name\":\"WHY RM\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wvguoa\",\"data-styles-preset\":\"W5D6hDl87\",style:{\"--framer-text-alignment\":\"center\"},children:\"Manage more solar, with less\"})}),className:\"framer-dmltg\",\"data-framer-name\":\"Manage more solar with less\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oe01u7\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qwntcf\",\"data-framer-name\":\"Visual Analytics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jf4l5g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-9pprl8\",\"data-styles-preset\":\"DkBEeD3Dj\",children:[\"Solar's most comprehensive \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:\"visual analytics\"}),\" suite\"]})}),className:\"framer-5dph08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[\"From erosion to vegetation to balance of system component defects, our platform analyzes millions of collected images to help you \",/*#__PURE__*/_jsx(\"strong\",{children:\"conduct root cause analysis\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"direct your O&M efforts\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"exactly where you need them\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"verify construction and remediation progress\"}),\".\"]})}),className:\"framer-18tole3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YB6hR74lQ\"},implicitPathVariables:undefined},{href:{webPageId:\"YB6hR74lQ\"},implicitPathVariables:undefined},{href:{webPageId:\"YB6hR74lQ\"},implicitPathVariables:undefined},{href:{webPageId:\"YB6hR74lQ\"},implicitPathVariables:undefined},{href:{webPageId:\"YB6hR74lQ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+1084.2+100+235+0+0+0+0+40+218},q43F2y0Xa:{y:(componentViewport?.y||0)+0+1023.2+100+235+0+0+0+0+50+218},TGzSv6A3u:{y:(componentViewport?.y||0)+0+1161+100+235+0+0+0+100+278},u68DHgJFt:{y:(componentViewport?.y||0)+0+1153.2+100+235+0+0+0+0+40+218}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+937.2+100+235+0+0+0+100+278,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mo9fps-container\",nodeId:\"PjpQD1xF4\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{QXr8P2FYs:resolvedLinks2[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks2[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks2[1]},u68DHgJFt:{ll5qMfmqF:\"Learn more\",QXr8P2FYs:resolvedLinks2[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"PjpQD1xF4\",jOa5Bb5lB:\"var(--token-a5e461b7-c4a5-4245-8575-f517f4749974, rgb(51, 51, 51))\",layoutId:\"PjpQD1xF4\",ll5qMfmqF:\"Learn More\",QXr8P2FYs:resolvedLinks2[0],variant:\"hcSwJ50rc\",width:\"100%\",xpdDeN3QS:\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rmlxy5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1084.2+100+235+0+0+0+352+0+0),pixelHeight:1e3,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg\",srcSet:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg 1500w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+100+235+0+0+0+317+10+0),pixelHeight:1e3,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg\",srcSet:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg 1500w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1161+100+235+0+0+0+50+0),pixelHeight:1e3,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4907)`,src:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg\",srcSet:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg 1500w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1153.2+100+235+0+0+0+367+0+0),pixelHeight:1e3,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg\",srcSet:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+937.2+100+235+0+0+0+50+0),pixelHeight:1e3,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4362)`,src:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg\",srcSet:\"https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q2CH8UNzhQCsE9agZloDUOKdp3Q.svg 1500w\"},className:\"framer-qx433x\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wj5cm9\",\"data-framer-name\":\"Digital Twin\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wxi4q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-9pprl8\",\"data-styles-preset\":\"DkBEeD3Dj\",style:{\"--framer-text-color\":\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"},children:[\"A more\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:\" intuitive \"}),\"way to understand your solar plants\"]})}),className:\"framer-o8v2dv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[\"Your solar plants are \",/*#__PURE__*/_jsx(\"strong\",{children:\"digitally re-constructed\"}),\" in a \",/*#__PURE__*/_jsx(\"strong\",{children:\"map-based interface\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"enriched with data\"}),\" so you can interact with your data more intuitively.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[\"Your Digital Twin \",/*#__PURE__*/_jsx(\"strong\",{children:\"collects, aggregates, and normalizes data\"}),\" from different sources into a \",/*#__PURE__*/_jsx(\"strong\",{children:\"clean system of record\"}),\" so that no context is ever lost to history.\"]})]}),className:\"framer-14cnpz2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"QDbFUGFjl\"},implicitPathVariables:undefined},{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined},{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+1084.2+100+235+0+902+0+0+40+368},q43F2y0Xa:{y:(componentViewport?.y||0)+0+1023.2+100+235+0+827+0+0+50+368},TGzSv6A3u:{y:(componentViewport?.y||0)+0+1161+100+235+0+750+0+100+428},u68DHgJFt:{y:(componentViewport?.y||0)+0+1153.2+100+235+0+817+0+0+40+368}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+937.2+100+235+0+750+0+100+428,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r64pt2-container\",nodeId:\"qZxAzspPk\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{ll5qMfmqF:\"Learn more\",QXr8P2FYs:resolvedLinks3[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks3[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks3[1]},u68DHgJFt:{ll5qMfmqF:\"Learn More\",QXr8P2FYs:resolvedLinks3[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"qZxAzspPk\",jOa5Bb5lB:\"var(--token-a5e461b7-c4a5-4245-8575-f517f4749974, rgb(51, 51, 51))\",layoutId:\"qZxAzspPk\",ll5qMfmqF:\"Try it yourself\",QXr8P2FYs:resolvedLinks3[0],variant:\"hcSwJ50rc\",width:\"100%\",xpdDeN3QS:\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i34pvp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-myn8km-container\",isModuleExternal:true,nodeId:\"rRYZVMrr1\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rRYZVMrr1\",isMixedBorderRadius:false,layoutId:\"rRYZVMrr1\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://marketing.raptormaps.com/hubfs/Erosion%20Export.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qd7y3a\",\"data-framer-name\":\"Sentry\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bty1pn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-9pprl8\",\"data-styles-preset\":\"DkBEeD3Dj\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:\"More\"}),\" than a raptor's eye view\"]})}),className:\"framer-1aq85kn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[\"Keep constant eyes on-site with \",/*#__PURE__*/_jsx(\"strong\",{children:\"remotely operated\"}),\" autonomous drones. Raptor Solar Sentry can launch missions to \",/*#__PURE__*/_jsx(\"strong\",{children:\"investigate site\"}),\" conditions and equipment \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, rgb(10, 28, 50))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"at anytime without sending anyone out to the site\"})}),\". \"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Automate\"}),\" time-intensive visual investigations, \",/*#__PURE__*/_jsx(\"strong\",{children:\"respond rapidly\"}),\" to alerts and weather events, and keep your teams \",/*#__PURE__*/_jsx(\"strong\",{children:\"safe\"}),\" with highly flexible remote inspections.\"]})]}),className:\"framer-1r230c1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VNYxsY6s6\"},implicitPathVariables:undefined},{href:{webPageId:\"VNYxsY6s6\"},implicitPathVariables:undefined},{href:{webPageId:\"VNYxsY6s6\"},implicitPathVariables:undefined},{href:{webPageId:\"VNYxsY6s6\"},implicitPathVariables:undefined},{href:{webPageId:\"VNYxsY6s6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+1084.2+100+235+0+1874+0+0+40+368},q43F2y0Xa:{y:(componentViewport?.y||0)+0+1023.2+100+235+0+1804+0+0+50+368},TGzSv6A3u:{y:(componentViewport?.y||0)+0+1161+100+235+0+1527+0+100+428},u68DHgJFt:{y:(componentViewport?.y||0)+0+1153.2+100+235+0+1744+0+0+40+368}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+937.2+100+235+0+1527+0+100+428,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dd1luu-container\",nodeId:\"lgRycad1L\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{QXr8P2FYs:resolvedLinks4[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks4[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks4[1]},u68DHgJFt:{QXr8P2FYs:resolvedLinks4[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"lgRycad1L\",jOa5Bb5lB:\"var(--token-a5e461b7-c4a5-4245-8575-f517f4749974, rgb(51, 51, 51))\",layoutId:\"lgRycad1L\",ll5qMfmqF:\"Learn More\",QXr8P2FYs:resolvedLinks4[0],variant:\"hcSwJ50rc\",width:\"100%\",xpdDeN3QS:\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ruw31r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1084.2+100+235+0+1874+0+482+0+0),pixelHeight:1220,pixelWidth:2182,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png\",srcSet:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png 2182w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+100+235+0+1804+0+507+0+0),pixelHeight:1220,pixelWidth:2182,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png\",srcSet:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png 2182w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1161+100+235+0+1527+0+50+0),pixelHeight:1220,pixelWidth:2182,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4907)`,src:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png\",srcSet:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png 2182w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1153.2+100+235+0+1744+0+477+30+0),pixelHeight:1220,pixelWidth:2182,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png\",srcSet:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png 2182w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+937.2+100+235+0+1527+0+50+0),pixelHeight:1220,pixelWidth:2182,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4362)`,src:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png\",srcSet:\"https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eSRDnIF3w1V41o6dO0EJFEs8qg.png 2182w\"},className:\"framer-10muqrp\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68otoc\",\"data-framer-name\":\"Mobile App\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4yr4z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-9pprl8\",\"data-styles-preset\":\"DkBEeD3Dj\",children:[\"Field-tested, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:\"offline-ready\"}),\" app for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f1460783-fdf2-4ab5-aa25-1e8ba3638353, rgb(68, 100, 173))\"},children:\"your technicians\"})]})}),className:\"framer-7i6kd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:\"Every layer of the Digital Twin is accessible on web and mobile. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",children:[\"Technicians can use the \",/*#__PURE__*/_jsx(\"strong\",{children:\"RS Mobile App\"}),\" to \",/*#__PURE__*/_jsx(\"strong\",{children:\"navigate to checklist tasks\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"access necessary context\"}),\" for remediation, and \",/*#__PURE__*/_jsx(\"strong\",{children:\"track the impact of their hard work\"}),\" - even in areas with \",/*#__PURE__*/_jsx(\"strong\",{children:\"no cell signal\"}),\".\"]})]}),className:\"framer-1q94gvv\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined},{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined},{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined},{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined},{href:{webPageId:\"n6qRmDY1r\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+1084.2+100+235+0+2831+0+0+40+368},q43F2y0Xa:{y:(componentViewport?.y||0)+0+1023.2+100+235+0+3011+0+0+50+428},TGzSv6A3u:{y:(componentViewport?.y||0)+0+1161+100+235+0+2304+0+100+428},u68DHgJFt:{y:(componentViewport?.y||0)+0+1153.2+100+235+0+2651+0+0+40+368}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+937.2+100+235+0+2304+0+100+428,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qb94yw-container\",nodeId:\"IL7cYI540\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{QXr8P2FYs:resolvedLinks5[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks5[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks5[1]},u68DHgJFt:{QXr8P2FYs:resolvedLinks5[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"IL7cYI540\",jOa5Bb5lB:\"var(--token-a5e461b7-c4a5-4245-8575-f517f4749974, rgb(51, 51, 51))\",layoutId:\"IL7cYI540\",ll5qMfmqF:\"LEARN MORE\",QXr8P2FYs:resolvedLinks5[0],variant:\"hcSwJ50rc\",width:\"100%\",xpdDeN3QS:\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v8kvu2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1084.2+100+235+0+2831+0+487+0+0),pixelHeight:1137,pixelWidth:1118,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png\",srcSet:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png 1118w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1023.2+100+235+0+3011+0+617+0+0),pixelHeight:1137,pixelWidth:1118,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png\",srcSet:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png 1118w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1161+100+235+0+2304+0+50+0),pixelHeight:1137,pixelWidth:1118,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4907)`,src:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png\",srcSet:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png 1118w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1153.2+100+235+0+2651+0+517+0+0),pixelHeight:1137,pixelWidth:1118,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png\",srcSet:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png 1118w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+937.2+100+235+0+2304+0+50+0),pixelHeight:1137,pixelWidth:1118,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4362)`,src:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png\",srcSet:\"https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/9fG2lZkLhpG7jFBHEb802wCS0ig.png 1118w\"},className:\"framer-1xj6z1l\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15crjyp\",\"data-framer-name\":\"Testimonials\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xppn7-container hidden-14xa2oj hidden-1w3c95g\",isModuleExternal:true,nodeId:\"yrpbYGr7P\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"yrpbYGr7P\",intervalControl:5,itemAmount:1,layoutId:\"yrpbYGr7P\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"1300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sq6crt-container\",\"data-framer-name\":\"Testimonial 1\",inComponentSlot:true,name:\"Testimonial 1\",nodeId:\"YayDc9MVk\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:89,pixelWidth:300,src:\"https://framerusercontent.com/images/alahURYP2fCm1Kpd9KzYt3jESgg.png\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"VP, Operations and Maintenance\",height:\"100%\",id:\"YayDc9MVk\",layoutId:\"YayDc9MVk\",lE6aASwOT:\"Neil James\",name:\"Testimonial 1\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/Cavf5e2QaNZg9zDSuNv7DC492zc.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"HwFQCteQ_\",vv9fKqh25:\"https://www.linkedin.com/feed/update/urn:li:activity:7259248062143823873\",width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"We are a vertically integrated IPP, which means we build, own, and operate our assets. That requires long-term thinking and reliable data over the lifetime of our assets. Raptor Maps gives us the information we need so that we can focus on what matters\u2014delivering clean energy efficiently and reliably.\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{c4OCfh7OA:\"raptor-maps-to-provide-analytics-muscle-for-act-power-services-vast-portfolio\"},unresolvedPathSlugs:{c4OCfh7OA:{collectionId:\"GEdfD9Pj1\",collectionItemId:\"x1pyYEyt1\"}},webPageId:\"vcFSj6YcM\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"1300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e21pxz-container\",\"data-framer-name\":\"Testimonial 3\",inComponentSlot:true,name:\"Testimonial 3\",nodeId:\"LeRDpHE_f\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:309,pixelWidth:916,src:\"https://framerusercontent.com/images/a63qJZmhibVe1IOtWyOnisy0I.png\",srcSet:\"https://framerusercontent.com/images/a63qJZmhibVe1IOtWyOnisy0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/a63qJZmhibVe1IOtWyOnisy0I.png 916w\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"CEO\",height:\"100%\",id:\"LeRDpHE_f\",layoutId:\"LeRDpHE_f\",lE6aASwOT:\"Kyle Cooper\",name:\"Testimonial 3\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/iq1lj5x9N59XSVoaOh9suO8uA.jpeg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"HwFQCteQ_\",vv9fKqh25:resolvedLinks6[0],width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"Raptor Maps meets our mandate of leveraging state-of-the-art technology to scale our operations and ensure maximum performance for our clients.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{c4OCfh7OA:\"baywa-r-e-partners-with-raptor-maps-to-enhance-operations\"},unresolvedPathSlugs:{c4OCfh7OA:{collectionId:\"GEdfD9Pj1\",collectionItemId:\"jnFPNHOR2\"}},webPageId:\"vcFSj6YcM\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"1300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fmk49y-container\",\"data-framer-name\":\"Testimonial 4\",inComponentSlot:true,name:\"Testimonial 4\",nodeId:\"yLZ8HPqbj\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:600,pixelWidth:2496,src:\"https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png\",srcSet:\"https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png?scale-down-to=512 512w,https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png 2496w\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"BayWa r.e Operations Services\",height:\"100%\",id:\"yLZ8HPqbj\",layoutId:\"yLZ8HPqbj\",lE6aASwOT:\"Sean Bucher\",name:\"Testimonial 4\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/8gfCI9tjZ3OfUUTUdFbi8nC9xFs.jpeg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"HwFQCteQ_\",vv9fKqh25:resolvedLinks7[0],width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"Combining our expertise, Raptor Maps\u2019 software, and this in-house drone program is going to give our operations a superpower in delivering world-class services to our partners. These solutions will truly empower our teams, enhancing capabilities from the control room, to our Performance Engineers & technicians out in the field.\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"1300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1863w-container\",\"data-framer-name\":\"Testimonial 2\",inComponentSlot:true,name:\"Testimonial 2\",nodeId:\"RQHTyyt6n\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:81,pixelWidth:333,src:\"https://framerusercontent.com/images/IGOB2Hhlve7gt0dLqmLrgLutKZY.png\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"Director of BESS and Solar Field Services\",height:\"100%\",id:\"RQHTyyt6n\",layoutId:\"RQHTyyt6n\",lE6aASwOT:\"Ramon Almodovar\",name:\"Testimonial 2\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:350,pixelWidth:350,src:\"https://framerusercontent.com/images/z5Rxnw9We5GmJBitQcez3nYWknY.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"HwFQCteQ_\",vv9fKqh25:\"https://www.linkedin.com/posts/raptor-maps-inc%2E_solarassetmanagement-renewables-poweringtheworld-activity-7255239116555001856-JrDW?utm_source=share&utm_medium=member_desktop\",width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"Partnering with Raptor Maps allows us to manage our portfolio with high confidence and to deploy resources efficiently. Our company prides itself as a creative implementer and a pragmatic problem solver, so it\u2019s critical for us to have a software partner that aligns with our company mission.\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ii2sht-container hidden-1u8j9tg hidden-84q6do hidden-1vm91v0\",\"data-framer-name\":\"Mobile Slideshow\",isModuleExternal:true,name:\"Mobile Slideshow\",nodeId:\"YwbwnoqsL\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"YwbwnoqsL\",intervalControl:5,itemAmount:1,layoutId:\"YwbwnoqsL\",name:\"Mobile Slideshow\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"719px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vq6128-container\",\"data-framer-name\":\"Testimonial 1 Mobile\",inComponentSlot:true,name:\"Testimonial 1 Mobile\",nodeId:\"Ggx1kfvqI\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:89,pixelWidth:300,src:\"https://framerusercontent.com/images/alahURYP2fCm1Kpd9KzYt3jESgg.png\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"VP, Operations and Maintenance\",height:\"100%\",id:\"Ggx1kfvqI\",layoutId:\"Ggx1kfvqI\",lE6aASwOT:\"Neil James\",name:\"Testimonial 1 Mobile\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/Cavf5e2QaNZg9zDSuNv7DC492zc.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"T9TqYSb77\",vv9fKqh25:\"https://www.linkedin.com/feed/update/urn:li:activity:7259248062143823873\",width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"We are a vertically integrated IPP, which means we build, own, and operate our assets. That requires long-term thinking and reliable data over the lifetime of our assets. Raptor Maps gives us the information we need so that we can focus on what matters\u2014delivering clean energy efficiently and reliably.\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{c4OCfh7OA:\"raptor-maps-to-provide-analytics-muscle-for-act-power-services-vast-portfolio\"},unresolvedPathSlugs:{c4OCfh7OA:{collectionId:\"GEdfD9Pj1\",collectionItemId:\"x1pyYEyt1\"}},webPageId:\"vcFSj6YcM\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"719px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b4pubh-container\",\"data-framer-name\":\"Testimonial 3 Mobile\",inComponentSlot:true,name:\"Testimonial 3 Mobile\",nodeId:\"K0uVxdTEW\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:309,pixelWidth:916,src:\"https://framerusercontent.com/images/a63qJZmhibVe1IOtWyOnisy0I.png\",srcSet:\"https://framerusercontent.com/images/a63qJZmhibVe1IOtWyOnisy0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/a63qJZmhibVe1IOtWyOnisy0I.png 916w\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"CEO\",height:\"100%\",id:\"K0uVxdTEW\",layoutId:\"K0uVxdTEW\",lE6aASwOT:\"Kyle Cooper\",name:\"Testimonial 3 Mobile\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/iq1lj5x9N59XSVoaOh9suO8uA.jpeg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"T9TqYSb77\",vv9fKqh25:resolvedLinks8[0],width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"Raptor Maps meets our mandate of leveraging state-of-the-art technology to scale our operations and ensure maximum performance for our clients.\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"719px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13iinfp-container\",\"data-framer-name\":\"Testimonial 2 Mobile\",inComponentSlot:true,name:\"Testimonial 2 Mobile\",nodeId:\"ysjuKLr58\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:81,pixelWidth:333,src:\"https://framerusercontent.com/images/IGOB2Hhlve7gt0dLqmLrgLutKZY.png\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"Director of BESS and Solar FIeld Services\",height:\"100%\",id:\"ysjuKLr58\",layoutId:\"ysjuKLr58\",lE6aASwOT:\"Ramon Almodovar\",name:\"Testimonial 2 Mobile\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:350,pixelWidth:350,src:\"https://framerusercontent.com/images/z5Rxnw9We5GmJBitQcez3nYWknY.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"T9TqYSb77\",vv9fKqh25:\"https://www.linkedin.com/posts/raptor-maps-inc%2E_solarassetmanagement-renewables-poweringtheworld-activity-7255239116555001856-JrDW?utm_source=share&utm_medium=member_desktop\",width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"Partnering with Raptor Maps allows us to manage our portfolio with high confidence and to deploy resources efficiently. Our company prides itself as a creative implementer and a pragmatic problem solver, so it\u2019s critical for us to have a software partner that aligns with our company mission.\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{c4OCfh7OA:\"baywa-r-e-partners-with-raptor-maps-to-enhance-operations\"},unresolvedPathSlugs:{c4OCfh7OA:{collectionId:\"GEdfD9Pj1\",collectionItemId:\"jnFPNHOR2\"}},webPageId:\"vcFSj6YcM\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"719px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uj8tt3-container\",\"data-framer-name\":\"Testimonial 4 Mobile\",inComponentSlot:true,name:\"Testimonial 4 Mobile\",nodeId:\"XpKQCBuwt\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(Testimonial,{AXewnVJZY:addImageAlt({pixelHeight:600,pixelWidth:2496,src:\"https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png\",srcSet:\"https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png?scale-down-to=512 512w,https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DY6SmkAUBCXUjf0rlb97VJLim9s.png 2496w\"},\"\"),BYYzOXjVg:\"rgba(255, 255, 255, 0)\",FvTk_zqub:\"BayWa r.e Operations Services\",height:\"100%\",id:\"XpKQCBuwt\",layoutId:\"XpKQCBuwt\",lE6aASwOT:\"Sean Bucher\",name:\"Testimonial 4 Mobile\",Q0R2bt_qg:\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\",qgg7o03E9:addImageAlt({pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/8gfCI9tjZ3OfUUTUdFbi8nC9xFs.jpeg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"T9TqYSb77\",vv9fKqh25:resolvedLinks9[0],width:\"100%\",zTO_N4oG_:\"READ MORE\",Zy1_W9ZaS:\"Combining our expertise, Raptor Maps\u2019 software, and this in-house drone program is going to give our operations a superpower in delivering world-class services to our partners. These solutions will truly empower our teams, enhancing capabilities from the control room, to our Performance Engineers & technicians out in the field.\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qno99x\",\"data-framer-name\":\"2025 GSR\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8zyi3\",\"data-framer-name\":\"2025 GSR - Picture BG\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-am1uk6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5592.2+25+0+10+50),pixelHeight:960,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg\",srcSet:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg 1500w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6026.2+25+0+10+50),pixelHeight:960,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg\",srcSet:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg 1500w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4927+25+0+10+50),pixelHeight:960,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg\",srcSet:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg 1500w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5456.2+25+0+10+50),pixelHeight:960,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg\",srcSet:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4703.2+25+0+10+50),pixelHeight:960,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 100px, 1px)`,src:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg\",srcSet:\"https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K7zzKEFsGB1iWtzl8iaS0g.jpg 1500w\"},className:\"framer-1gnenl0\",\"data-framer-name\":\"Picture layer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13qqifq\",\"data-framer-name\":\"Opaque layer\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qryh72\",\"data-framer-name\":\"Text\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhmu3r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1udwz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bqaioz\",\"data-styles-preset\":\"nJCLcQaIr\",style:{\"--framer-text-color\":\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"2025 Global Solar Report - The State of PV Performance\"})})})}),className:\"framer-vtadi2\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1v8yhqe\",\"data-styles-preset\":\"mTVGU_PGf\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:\"Solar has experienced 214% increase in equipment-driven underperformance over the past 5 years: access the report to learn more about the most significant loss drivers, emerging industry trends, and performance benchmarks across markets, asset class, PV technology, and more.\"})}),className:\"framer-1ivjlmn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rvmojo\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AY3mCc1b9\"},implicitPathVariables:undefined},{href:{webPageId:\"AY3mCc1b9\"},implicitPathVariables:undefined},{href:{webPageId:\"AY3mCc1b9\"},implicitPathVariables:undefined},{href:{webPageId:\"AY3mCc1b9\"},implicitPathVariables:undefined},{href:{webPageId:\"AY3mCc1b9\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+5592.2+25+0+10+50+0+0+0+75+69.5+68.5+0},q43F2y0Xa:{y:(componentViewport?.y||0)+0+6026.2+25+0+10+50+0+0+0+40+67+68.5+0},TGzSv6A3u:{y:(componentViewport?.y||0)+0+4927+25+0+10+50+0+0+0+75+32+68.5+0},u68DHgJFt:{y:(componentViewport?.y||0)+0+5456.2+25+0+10+50+0+0+0+20+117.5+0+196+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+4703.2+25+0+10+50+0+0+0+75+32+68.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7thzb2-container\",nodeId:\"Lp35HQkEM\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{QXr8P2FYs:resolvedLinks10[3]},q43F2y0Xa:{QXr8P2FYs:resolvedLinks10[2]},TGzSv6A3u:{QXr8P2FYs:resolvedLinks10[1]},u68DHgJFt:{QXr8P2FYs:resolvedLinks10[4]}},children:/*#__PURE__*/_jsx(Button,{DxJA3W1wc:\"+\",height:\"100%\",id:\"Lp35HQkEM\",jOa5Bb5lB:\"var(--token-a5e461b7-c4a5-4245-8575-f517f4749974, rgb(51, 51, 51))\",layoutId:\"Lp35HQkEM\",ll5qMfmqF:\"Download\",QXr8P2FYs:resolvedLinks10[0],variant:\"JIVHN4mDG\",width:\"100%\",xpdDeN3QS:\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"})})})})})})})]})})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ajacv\",\"data-framer-name\":\"Resources\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-91toxx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s0v3cv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wvguoa\",\"data-styles-preset\":\"W5D6hDl87\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:\"Access our resources\"})}),className:\"framer-8d8kgb\",\"data-framer-name\":\"Track progress against milestones and prevent project delays\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5w8nzc\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QDbFUGFjl\"},motionChild:true,nodeId:\"Em5UZtAWZ\",openInNewTab:false,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1461q4v framer-1ovz2vx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6187.2+50+0+50+110+0+1525.6+0+0),pixelHeight:1e3,pixelWidth:1100,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 100px)`,src:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png\",srcSet:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png 1100w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6621.2+50+0+50+110+0+1525.6+0+0),pixelHeight:1e3,pixelWidth:1100,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.8)`,src:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png\",srcSet:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png 1100w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5522+50+0+50+110+0+0+0),pixelHeight:1e3,pixelWidth:1100,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.3)`,src:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png\",srcSet:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png 1100w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6151.2+50+0+50+110+0+1525.6+0+0),pixelHeight:1e3,pixelWidth:1100,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 1.2)`,src:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png\",srcSet:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png 1100w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5298.2+50+0+50+110+0+0+0),pixelHeight:1e3,pixelWidth:1100,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.3)`,src:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png\",srcSet:\"https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jNaFx66kGo97DOhjoUT0purJFCs.png 1100w\"},className:\"framer-3gtcvv\",\"data-border\":true,whileHover:animation4})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9y00t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f9depc\",\"data-styles-preset\":\"jZkjCo6fh\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:\"INTERACTIVE DEMO\"})}),className:\"framer-brk9lf\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-17een6s\",\"data-styles-preset\":\"cqLdpDgeY\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Learn how Raptor Maps platform works with an interactive demo\"})})}),className:\"framer-1cnsk4y\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ftorjc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h6lea6\",\"data-styles-preset\":\"OZSlHcCko\",style:{\"--framer-text-color\":\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"},children:\"DEMO IT NOW >\"})}),className:\"framer-m0rkvz\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h6lea6\",\"data-styles-preset\":\"OZSlHcCko\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:\"(COMPUTER RECOMMENDED)\"})}),className:\"framer-7htsd3\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dho5CZZVo\"},motionChild:true,nodeId:\"KRDJDTU1w\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-fyys2l framer-1ovz2vx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6187.2+50+0+50+110+0+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 100px)`,src:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png\",srcSet:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png 1101w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6621.2+50+0+50+110+0+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.8)`,src:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png\",srcSet:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png 1101w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5522+50+0+50+110+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.3)`,src:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png\",srcSet:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png 1101w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6151.2+50+0+50+110+0+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 1.2)`,src:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png\",srcSet:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png 1101w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5298.2+50+0+50+110+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.3)`,src:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png\",srcSet:\"https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=512 512w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnzJErIGKKlBd1Mxd0p9rUjWo.png 1101w\"},className:\"framer-o557j2\",\"data-border\":true,whileHover:animation4})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fq3f73\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f9depc\",\"data-styles-preset\":\"jZkjCo6fh\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:\"ARTICLES & WHITE PAPERS\"})}),className:\"framer-3oyc4m\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-17een6s\",\"data-styles-preset\":\"cqLdpDgeY\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Read our latest thought leadership, research, and insights\"})})}),className:\"framer-p6vnd\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h6lea6\",\"data-styles-preset\":\"OZSlHcCko\",style:{\"--framer-text-color\":\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"},children:\"ACCESS RESOURCES >\"})}),className:\"framer-1uk1ck1\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lN7zEn5Lj\"},motionChild:true,nodeId:\"h0HNrZzaC\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-15b9ay framer-1ovz2vx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6187.2+50+0+50+110+0+762.8+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 100px)`,src:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png\",srcSet:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png 1101w\"}},q43F2y0Xa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6621.2+50+0+50+110+0+762.8+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.8)`,src:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png\",srcSet:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png 1101w\"}},TGzSv6A3u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5522+50+0+50+110+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.3)`,src:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png\",srcSet:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png 1101w\"}},u68DHgJFt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6151.2+50+0+50+110+0+762.8+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 1.2)`,src:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png\",srcSet:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png 1101w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5298.2+50+0+50+110+0+0+0),pixelHeight:1e3,pixelWidth:1101,sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 100px) * 0.3)`,src:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png\",srcSet:\"https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sJ9E3ylynL8mz0qVxZI3jHlVo.png 1101w\"},className:\"framer-s5cse2\",\"data-border\":true,whileHover:animation4})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nrqdt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f9depc\",\"data-styles-preset\":\"jZkjCo6fh\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:\"WEBINARS\"})}),className:\"framer-f1vrae\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-17een6s\",\"data-styles-preset\":\"cqLdpDgeY\",style:{\"--framer-text-color\":\"var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Learn how you can automate work on your solar plants\"})})}),className:\"framer-n7gco9\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h6lea6\",\"data-styles-preset\":\"OZSlHcCko\",style:{\"--framer-text-color\":\"var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, rgb(251, 165, 86))\"},children:\"WATCH WEBINARS >\"})}),className:\"framer-q4gnbf\",\"data-framer-name\":\"Data stored in one place for a smoother handoff to operations\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{y:(componentViewport?.y||0)+0+8860.6},q43F2y0Xa:{y:(componentViewport?.y||0)+0+9294.6},TGzSv6A3u:{y:(componentViewport?.y||0)+0+6809.8},u68DHgJFt:{y:(componentViewport?.y||0)+0+8924.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:460,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6546,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cil40p-container\",nodeId:\"JnDIgYMtM\",scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{variant:\"lAikmjazf\"},q43F2y0Xa:{variant:\"ySEEgZdC8\"},u68DHgJFt:{variant:\"lAikmjazf\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"JnDIgYMtM\",layoutId:\"JnDIgYMtM\",style:{width:\"100%\"},variant:\"B9RaaB20N\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{width:\"75.3333vw\",y:450},q43F2y0Xa:{width:\"49.5vw\",y:450},TGzSv6A3u:{y:550},u68DHgJFt:{width:\"79.7222vw\",y:350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:\"30vw\",y:500,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14d0jy2-container\",layoutScroll:true,nodeId:\"AZUc4vcoJ\",rendersWithMotion:true,scopeId:\"CRMQTz_TT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{djki3N_Kk:{variant:\"XPWDGBGm_\"},q43F2y0Xa:{variant:\"XPWDGBGm_\"},TGzSv6A3u:{variant:\"XPWDGBGm_\"},u68DHgJFt:{variant:\"XPWDGBGm_\"}},children:/*#__PURE__*/_jsx(CookiebarCheckCookiebarHidden14d0jy2WithMappedReactProps122032x,{height:\"100%\",id:\"AZUc4vcoJ\",layoutId:\"AZUc4vcoJ\",style:{width:\"100%\"},variant:\"HmmSigj2G\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T5gPz.framer-1ovz2vx, .framer-T5gPz .framer-1ovz2vx { display: block; }\",\".framer-T5gPz.framer-1u8j9tg { align-content: center; align-items: center; background-color: var(--token-e6eea81a-9601-49ee-b2d2-98a18e463bc3, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-T5gPz .framer-q663wr-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-T5gPz .framer-1s0x9 { 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-T5gPz .framer-1dykden, .framer-T5gPz .framer-1ccqvok, .framer-T5gPz .framer-yhmu3r { 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-T5gPz .framer-dnerzv { 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 0px 50px 0px; position: relative; width: 90%; }\",\".framer-T5gPz .framer-12t64cd { align-content: center; align-items: center; 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: row; flex-wrap: nowrap; gap: 50px; height: 130px; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-T5gPz .framer-1ao9vaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 30px 10px 30px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-hj3xcg { align-content: center; align-items: center; background-color: var(--token-6ed749bf-2bbb-4f1b-adf4-2ddf6e86f93b, rgba(251, 165, 86, 0.4)); 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: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 30px 15px 30px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-T5gPz .framer-1b1ymfb, .framer-T5gPz .framer-1l7972q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-T5gPz .framer-zjguuc { align-content: center; align-items: center; background-color: var(--token-6ee3b27a-a6f7-4740-aa04-eebd07813a7b, #fba556); 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: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-T5gPz .framer-jbtjti-container { flex: none; height: 15px; position: relative; width: 20px; }\",\".framer-T5gPz .framer-5q7qz0, .framer-T5gPz .framer-19flaxr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-yfcld9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-4alaau { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-T5gPz .framer-1dhs75n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-o8o4nq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-s8m9ah { --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-T5gPz .framer-1a2e00g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-bf5a0, .framer-T5gPz .framer-dmltg, .framer-T5gPz .framer-8d8kgb, .framer-T5gPz .framer-brk9lf, .framer-T5gPz .framer-1cnsk4y, .framer-T5gPz .framer-m0rkvz, .framer-T5gPz .framer-7htsd3, .framer-T5gPz .framer-3oyc4m, .framer-T5gPz .framer-p6vnd, .framer-T5gPz .framer-1uk1ck1, .framer-T5gPz .framer-f1vrae, .framer-T5gPz .framer-n7gco9, .framer-T5gPz .framer-q4gnbf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-T5gPz .framer-pcwqv1 { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-1bufuqa-container, .framer-T5gPz .framer-fgn7fb-container, .framer-T5gPz .framer-mo9fps-container, .framer-T5gPz .framer-1r64pt2-container, .framer-T5gPz .framer-dd1luu-container, .framer-T5gPz .framer-1qb94yw-container, .framer-T5gPz .framer-7thzb2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-T5gPz .framer-hl7b7u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 55%; }\",\".framer-T5gPz .framer-1f4lvd7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-1smkzqd-container, .framer-T5gPz .framer-1cil40p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-T5gPz .framer-15oa7hq { align-content: center; align-items: center; background-color: var(--token-0fbc52d6-a7ef-44ce-b722-89892044abe6, rgba(251, 165, 86, 0.1)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 25px 0px 25px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-T5gPz .framer-fead6i { 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: 80%; }\",\".framer-T5gPz .framer-p4zq49, .framer-T5gPz .framer-5dph08, .framer-T5gPz .framer-18tole3, .framer-T5gPz .framer-o8v2dv, .framer-T5gPz .framer-14cnpz2, .framer-T5gPz .framer-1aq85kn, .framer-T5gPz .framer-1r230c1, .framer-T5gPz .framer-7i6kd1, .framer-T5gPz .framer-1q94gvv, .framer-T5gPz .framer-vtadi2, .framer-T5gPz .framer-1ivjlmn { --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-T5gPz .framer-t8ampw-container { flex: none; height: 100px; position: relative; width: 80%; }\",\".framer-T5gPz .framer-t0d1ep { aspect-ratio: 3.1654676258992804 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 206px; }\",\".framer-T5gPz .framer-v40xnd { aspect-ratio: 2.9661016949152543 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 193px; }\",\".framer-T5gPz .framer-1ne8pwl { aspect-ratio: 2.0618556701030926 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 134px; }\",\".framer-T5gPz .framer-1ibimk8 { aspect-ratio: 2.914798206278027 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 189px; }\",\".framer-T5gPz .framer-1wy5hfh { aspect-ratio: 2.9644012944983817 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 193px; }\",\".framer-T5gPz .framer-4kaqvc { aspect-ratio: 3.372093023255814 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 219px; }\",\".framer-T5gPz .framer-j8t2q7 { aspect-ratio: 2.989655172413793 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 194px; }\",\".framer-T5gPz .framer-pyscg3 { aspect-ratio: 1.4577464788732395 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 95px; }\",\".framer-T5gPz .framer-ycob5x { aspect-ratio: 1.4976958525345623 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 97px; }\",\".framer-T5gPz .framer-1gwk646 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-11k01gh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-T5gPz .framer-d6y6ql { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-T5gPz .framer-oe01u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-qwntcf, .framer-T5gPz .framer-wj5cm9, .framer-T5gPz .framer-1qd7y3a, .framer-T5gPz .framer-68otoc { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #dbe1ef 0%, var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, rgb(255, 255, 255)) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 125px; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-T5gPz .framer-1jf4l5g, .framer-T5gPz .framer-6wxi4q, .framer-T5gPz .framer-bty1pn, .framer-T5gPz .framer-l4yr4z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 40px; position: relative; width: 40%; }\",\".framer-T5gPz .framer-rmlxy5, .framer-T5gPz .framer-i34pvp, .framer-T5gPz .framer-1ruw31r, .framer-T5gPz .framer-v8kvu2 { 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: 50px 0px 0px 0px; position: relative; width: 55%; }\",\".framer-T5gPz .framer-qx433x, .framer-T5gPz .framer-10muqrp, .framer-T5gPz .framer-1xj6z1l { flex: none; height: 600px; overflow: hidden; position: relative; width: 100%; }\",\".framer-T5gPz .framer-myn8km-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-15crjyp { align-content: center; align-items: center; background-color: var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, #0a1c32); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-height: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-T5gPz .framer-2xppn7-container { flex: none; height: 400px; position: relative; width: 90%; }\",\".framer-T5gPz .framer-sq6crt-container, .framer-T5gPz .framer-e21pxz-container, .framer-T5gPz .framer-1fmk49y-container, .framer-T5gPz .framer-1d1863w-container { height: 400px; position: relative; width: 1300px; }\",\".framer-T5gPz .framer-1ii2sht-container { flex: none; height: 350px; position: relative; width: 90%; }\",\".framer-T5gPz .framer-1vq6128-container, .framer-T5gPz .framer-b4pubh-container, .framer-T5gPz .framer-13iinfp-container, .framer-T5gPz .framer-uj8tt3-container { height: 400px; position: relative; width: 719px; }\",\".framer-T5gPz .framer-qno99x { 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: 25px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-t8zyi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-am1uk6 { 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: center; overflow: hidden; padding: 50px; position: relative; width: 1px; }\",\".framer-T5gPz .framer-1gnenl0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-T5gPz .framer-13qqifq { align-content: flex-start; align-items: flex-start; background-color: rgba(10, 28, 50, 0.8); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-T5gPz .framer-1qryh72 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: center; overflow: hidden; padding: 75px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-T5gPz .framer-o1udwz { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-T5gPz .framer-1rvmojo { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-T5gPz .framer-7ajacv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-91toxx { align-content: center; align-items: center; background-color: var(--token-967b2fd3-2e93-4bae-b72c-5e9aff9be0e1, #0a1c32); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 90%; }\",\".framer-T5gPz .framer-1s0v3cv { 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: 70%; }\",\".framer-T5gPz .framer-5w8nzc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-1461q4v, .framer-T5gPz .framer-fyys2l, .framer-T5gPz .framer-15b9ay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 30%; }\",\".framer-T5gPz .framer-3gtcvv, .framer-T5gPz .framer-o557j2, .framer-T5gPz .framer-s5cse2 { --border-bottom-width: 1px; --border-color: var(--token-cc72029d-eeef-42ac-a973-0efa4806c7a5, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: drop-shadow(0px 4px 13px rgba(0, 0, 0, 0.25)); aspect-ratio: 1.6 / 1; filter: drop-shadow(0px 4px 13px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 305px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-T5gPz .framer-1r9y00t, .framer-T5gPz .framer-1fq3f73, .framer-T5gPz .framer-2nrqdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-1ftorjc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-T5gPz .framer-14d0jy2-container { flex: none; height: auto; left: 80px; position: fixed; top: 500px; width: 30%; z-index: 3; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-T5gPz[data-border=\"true\"]::after, .framer-T5gPz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1300px) and (max-width: 1919px) { .framer-T5gPz.framer-1u8j9tg { width: 1300px; } .framer-T5gPz .framer-q663wr-container { order: 0; } .framer-T5gPz .framer-1s0x9 { order: 1; } .framer-T5gPz .framer-12t64cd { gap: 100px; height: 100px; padding: 10px 30px 10px 30px; } .framer-T5gPz .framer-1dhs75n, .framer-T5gPz .framer-19flaxr { gap: 20px; } .framer-T5gPz .framer-1a2e00g { max-width: 1000px; } .framer-T5gPz .framer-pcwqv1 { width: 80%; } .framer-T5gPz .framer-hl7b7u { aspect-ratio: 1.6120168529034622 / 1; height: var(--framer-aspect-ratio-supported, 390px); width: 50%; } .framer-T5gPz .framer-15oa7hq { order: 2; } .framer-T5gPz .framer-t8ampw-container { height: 75px; } .framer-T5gPz .framer-1gwk646 { order: 3; } .framer-T5gPz .framer-qwntcf, .framer-T5gPz .framer-wj5cm9, .framer-T5gPz .framer-1qd7y3a, .framer-T5gPz .framer-68otoc { width: 90%; } .framer-T5gPz .framer-15crjyp { order: 4; } .framer-T5gPz .framer-qno99x { order: 5; } .framer-T5gPz .framer-7ajacv { order: 8; } .framer-T5gPz .framer-3gtcvv, .framer-T5gPz .framer-o557j2, .framer-T5gPz .framer-s5cse2 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-T5gPz .framer-1r9y00t, .framer-T5gPz .framer-1fq3f73, .framer-T5gPz .framer-2nrqdt { gap: 40px; } .framer-T5gPz .framer-1cil40p-container { order: 9; } .framer-T5gPz .framer-14d0jy2-container { order: 10; top: 550px; }}\",\"@media (min-width: 800px) and (max-width: 1299px) { .framer-T5gPz.framer-1u8j9tg { width: 800px; } .framer-T5gPz .framer-dnerzv { gap: 30px; padding: 0px; width: 100%; } .framer-T5gPz .framer-12t64cd { gap: 30px; height: 50px; padding: 10px 30px 10px 30px; width: 80%; } .framer-T5gPz .framer-hj3xcg { width: 90%; } .framer-T5gPz .framer-1b1ymfb { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-T5gPz .framer-yfcld9 { flex-direction: column; gap: 20px; justify-content: center; } .framer-T5gPz .framer-4alaau { align-content: center; align-items: center; width: 80%; } .framer-T5gPz .framer-1a2e00g { max-width: 700px; } .framer-T5gPz .framer-hl7b7u { width: 100%; } .framer-T5gPz .framer-t8ampw-container { height: 75px; } .framer-T5gPz .framer-d6y6ql, .framer-T5gPz .framer-1r9y00t, .framer-T5gPz .framer-1fq3f73, .framer-T5gPz .framer-2nrqdt { width: 80%; } .framer-T5gPz .framer-qwntcf { flex-direction: column; gap: 0px; width: 90%; } .framer-T5gPz .framer-1jf4l5g, .framer-T5gPz .framer-6wxi4q, .framer-T5gPz .framer-bty1pn { gap: 20px; padding: 50px 40px 0px 40px; width: 100%; } .framer-T5gPz .framer-rmlxy5 { gap: 30px; padding: 10px 0px 0px 0px; width: 100%; } .framer-T5gPz .framer-qx433x { height: 400px; } .framer-T5gPz .framer-wj5cm9 { flex-direction: column; gap: 60px; width: 90%; } .framer-T5gPz .framer-i34pvp, .framer-T5gPz .framer-1ruw31r, .framer-T5gPz .framer-v8kvu2 { padding: 0px; width: 100%; } .framer-T5gPz .framer-myn8km-container, .framer-T5gPz .framer-2xppn7-container { height: 350px; } .framer-T5gPz .framer-1qd7y3a { flex-direction: column; gap: 40px; width: 90%; } .framer-T5gPz .framer-68otoc { flex-direction: column; gap: 50px; width: 90%; } .framer-T5gPz .framer-l4yr4z { padding: 50px 40px 40px 40px; width: 100%; } .framer-T5gPz .framer-15crjyp { padding: 20px 0px 20px 0px; } .framer-T5gPz .framer-1qryh72 { gap: 20px; padding: 40px 20px 40px 20px; } .framer-T5gPz .framer-7ajacv { padding: 50px 0px 50px 0px; } .framer-T5gPz .framer-5w8nzc { flex-direction: column; } .framer-T5gPz .framer-1461q4v { order: 2; width: 100%; } .framer-T5gPz .framer-3gtcvv, .framer-T5gPz .framer-o557j2, .framer-T5gPz .framer-s5cse2 { height: var(--framer-aspect-ratio-supported, 310px); width: 80%; } .framer-T5gPz .framer-fyys2l { order: 0; width: 100%; } .framer-T5gPz .framer-15b9ay { order: 1; width: 100%; } .framer-T5gPz .framer-14d0jy2-container { left: 30px; top: 450px; width: 50%; }}\",\"@media (min-width: 600px) and (max-width: 799px) { .framer-T5gPz.framer-1u8j9tg { width: 600px; } .framer-T5gPz .framer-q663wr-container { order: 0; } .framer-T5gPz .framer-1s0x9 { order: 1; } .framer-T5gPz .framer-dnerzv { flex: 1 0 0px; gap: 30px; padding: 0px; width: 1px; } .framer-T5gPz .framer-12t64cd { gap: 30px; height: 50px; padding: 10px 30px 10px 30px; width: 90%; } .framer-T5gPz .framer-hj3xcg { align-content: flex-start; align-items: flex-start; flex-direction: column; width: 95%; } .framer-T5gPz .framer-1b1ymfb { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-T5gPz .framer-yfcld9 { flex-direction: column; gap: 20px; justify-content: center; } .framer-T5gPz .framer-4alaau { align-content: center; align-items: center; width: 90%; } .framer-T5gPz .framer-19flaxr { background-color: #ffffff; } .framer-T5gPz .framer-hl7b7u { width: 100%; } .framer-T5gPz .framer-15oa7hq { gap: 30px; order: 2; padding: 25px 20px 25px 20px; } .framer-T5gPz .framer-t8ampw-container { height: 75px; } .framer-T5gPz .framer-1gwk646 { order: 3; } .framer-T5gPz .framer-qwntcf, .framer-T5gPz .framer-wj5cm9 { flex-direction: column; gap: 15px; top: 100px; width: 90%; } .framer-T5gPz .framer-1jf4l5g { gap: 20px; padding: 40px 40px 30px 40px; width: 100%; } .framer-T5gPz .framer-rmlxy5, .framer-T5gPz .framer-i34pvp { padding: 0px 0px 100px 0px; width: 100%; } .framer-T5gPz .framer-qx433x { height: 350px; } .framer-T5gPz .framer-6wxi4q, .framer-T5gPz .framer-bty1pn, .framer-T5gPz .framer-l4yr4z { gap: 20px; padding: 40px 40px 0px 40px; width: 100%; } .framer-T5gPz .framer-myn8km-container { height: 300px; } .framer-T5gPz .framer-1qd7y3a { flex-direction: column; gap: 25px; top: 100px; width: 90%; } .framer-T5gPz .framer-1ruw31r, .framer-T5gPz .framer-v8kvu2 { padding: 0px; width: 100%; } .framer-T5gPz .framer-10muqrp, .framer-T5gPz .framer-1xj6z1l { height: 375px; } .framer-T5gPz .framer-68otoc { flex-direction: column; gap: 30px; top: 100px; width: 90%; } .framer-T5gPz .framer-15crjyp { order: 4; padding: 40px 0px 40px 0px; } .framer-T5gPz .framer-qno99x { order: 5; } .framer-T5gPz .framer-1qryh72 { align-content: center; align-items: center; gap: 20px; padding: 75px 20px 0px 20px; } .framer-T5gPz .framer-7ajacv { order: 8; padding: 50px 0px 50px 0px; } .framer-T5gPz .framer-5w8nzc { flex-direction: column; } .framer-T5gPz .framer-1461q4v { order: 2; width: 100%; } .framer-T5gPz .framer-3gtcvv, .framer-T5gPz .framer-o557j2, .framer-T5gPz .framer-s5cse2 { height: var(--framer-aspect-ratio-supported, 275px); } .framer-T5gPz .framer-fyys2l { order: 0; width: 100%; } .framer-T5gPz .framer-15b9ay { order: 1; width: 100%; } .framer-T5gPz .framer-1cil40p-container { order: 9; } .framer-T5gPz .framer-14d0jy2-container { left: 30px; order: 10; top: 450px; width: 75%; }}\",\"@media (max-width: 599px) { .framer-T5gPz.framer-1u8j9tg { width: 360px; } .framer-T5gPz .framer-q663wr-container { order: 0; } .framer-T5gPz .framer-1s0x9, .framer-T5gPz .framer-o8o4nq { order: 1; } .framer-T5gPz .framer-dnerzv { gap: 30px; padding: 0px; width: 100%; } .framer-T5gPz .framer-12t64cd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 5px; height: 50px; padding: 10px 20px 10px 20px; width: 90%; } .framer-T5gPz .framer-hj3xcg { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-T5gPz .framer-1b1ymfb { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-T5gPz .framer-yfcld9 { flex-direction: column; gap: 20px; justify-content: center; } .framer-T5gPz .framer-4alaau { width: 90%; } .framer-T5gPz .framer-19flaxr { align-content: flex-start; align-items: flex-start; } .framer-T5gPz .framer-pcwqv1 { flex-direction: column; gap: 20px; width: 80%; } .framer-T5gPz .framer-hl7b7u { width: 100%; } .framer-T5gPz .framer-15oa7hq { gap: 30px; order: 2; padding: 25px 20px 25px 20px; } .framer-T5gPz .framer-t8ampw-container { height: 75px; } .framer-T5gPz .framer-1gwk646 { order: 3; } .framer-T5gPz .framer-qwntcf, .framer-T5gPz .framer-wj5cm9, .framer-T5gPz .framer-1qd7y3a, .framer-T5gPz .framer-68otoc { flex-direction: column; gap: 20px; top: 100px; width: 90%; } .framer-T5gPz .framer-1jf4l5g, .framer-T5gPz .framer-l4yr4z { gap: 20px; padding: 40px 20px 40px 20px; width: 100%; } .framer-T5gPz .framer-rmlxy5 { padding: 0px 0px 100px 0px; width: 100%; } .framer-T5gPz .framer-qx433x { height: 250px; } .framer-T5gPz .framer-6wxi4q, .framer-T5gPz .framer-bty1pn { gap: 20px; padding: 40px 20px 0px 20px; width: 100%; } .framer-T5gPz .framer-i34pvp { padding: 0px 0px 150px 0px; width: 100%; } .framer-T5gPz .framer-myn8km-container { height: 200px; } .framer-T5gPz .framer-1ruw31r { padding: 30px 0px 0px 0px; width: 100%; } .framer-T5gPz .framer-10muqrp, .framer-T5gPz .framer-1xj6z1l { height: 300px; } .framer-T5gPz .framer-v8kvu2 { padding: 0px; width: 100%; } .framer-T5gPz .framer-15crjyp { order: 4; padding: 50px 0px 50px 0px; } .framer-T5gPz .framer-qno99x { order: 5; } .framer-T5gPz .framer-1gnenl0 { height: 500px; } .framer-T5gPz .framer-1qryh72 { align-content: center; align-items: center; gap: 20px; padding: 20px 20px 0px 20px; } .framer-T5gPz .framer-yhmu3r { flex-direction: column; } .framer-T5gPz .framer-o1udwz, .framer-T5gPz .framer-1rvmojo { flex: none; width: 100%; } .framer-T5gPz .framer-7ajacv { order: 8; } .framer-T5gPz .framer-5w8nzc { align-content: center; align-items: center; flex-direction: column; } .framer-T5gPz .framer-1461q4v { order: 2; width: 120%; } .framer-T5gPz .framer-3gtcvv, .framer-T5gPz .framer-o557j2, .framer-T5gPz .framer-s5cse2 { height: var(--framer-aspect-ratio-supported, 168px); } .framer-T5gPz .framer-fyys2l { order: 0; width: 120%; } .framer-T5gPz .framer-15b9ay { order: 1; width: 120%; } .framer-T5gPz .framer-1cil40p-container { order: 9; } .framer-T5gPz .framer-14d0jy2-container { left: 30px; order: 10; top: 350px; width: 80%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6792\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TGzSv6A3u\":{\"layout\":[\"fixed\",\"auto\"]},\"q43F2y0Xa\":{\"layout\":[\"fixed\",\"auto\"]},\"djki3N_Kk\":{\"layout\":[\"fixed\",\"auto\"]},\"u68DHgJFt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerCRMQTz_TT=withCSS(Component,css,\"framer-T5gPz\");export default FramerCRMQTz_TT;FramerCRMQTz_TT.displayName=\"Inspections / Inspections New Page Draft\";FramerCRMQTz_TT.defaultProps={height:6792,width:1920};addFonts(FramerCRMQTz_TT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...NavigationFonts,...FeatherFonts,...ButtonFonts,...VideoFonts,...TickerFonts,...Video1Fonts,...TestimonialFonts,...SlideshowFonts,...FooterFonts,...CookiebarFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCRMQTz_TT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TGzSv6A3u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q43F2y0Xa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"djki3N_Kk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u68DHgJFt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6792\",\"framerIntrinsicWidth\":\"1920\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__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", "te", "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", "NavigationFonts", "getFonts", "xRA1JHGDQ_default", "FeatherFonts", "Icon", "ButtonFonts", "ukucqcfhm_default", "VideoFonts", "Video", "TickerFonts", "Ticker", "Video1Fonts", "TestimonialFonts", "AXfHuYkPh_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "motion", "FooterFonts", "siJ0_3eag_default", "CookiebarFonts", "mHtk7qnir_default", "CookiebarCheckCookiebarHidden14d0jy2WithMappedReactProps122032x", "withMappedReactProps", "withCodeBoundaryForOverrides", "checkCookiebarHidden", "mHtk7qnir_exports", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "addImageAlt", "image", "alt", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText", "x", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Image2", "resolvedLinks2", "getLoadingLazyAtYPosition", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "css", "FramerCRMQTz_TT", "withCSS", "CRMQTz_TT_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
