{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/y01SiYzaWTTt8cSecaEj/4STJrl8s4REqn8mZ9SBk/Is8b2GKeK.js", "ssg:https://framerusercontent.com/modules/fg1lEcLcxB3sdMO730DN/R60lEdNGui6aJSmMZxYu/Oi_CNOC9f.js", "ssg:https://framerusercontent.com/modules/4iIqFZIXS0gmPYRx49vq/UYBjPfkasxLmRyjy0OHi/wg4iXEQlV.js", "ssg:https://framerusercontent.com/modules/uK2qrn8F7sMkwKd3bIhl/nADplAXo7SINGhWOAEw7/z_hnGZif0.js", "ssg:https://framerusercontent.com/modules/nRGVzUqYCN9jj7FD1zih/uHHU0IYNdKOmLtm3Ra75/XbSht6mgE.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const 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;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};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\",placeholder:\"../example.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](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Am3ARWPwiH8ajT4RUECh/E8xihVH9Cz4t8uio8ePb/tOLw1YNZq.js\";import AccordianRow from\"https://framerusercontent.com/modules/I4jyvnG84oBViz4AmHrH/CJYizG3B9Im3b1PSZXHO/hJktFgpnm.js\";const VideoFonts=getFonts(Video);const AccordianRowFonts=getFonts(AccordianRow);const cycleOrder=[\"cOajEbwsL\",\"bzY1viqep\",\"uQw2wbE5y\",\"qbU92ecF6\"];const serializationHash=\"framer-n1UyT\";const variantClassNames={bzY1viqep:\"framer-v-a1nw6l\",cOajEbwsL:\"framer-v-1pvppew\",qbU92ecF6:\"framer-v-1iax7df\",uQw2wbE5y:\"framer-v-287024\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Power Reserve\":\"qbU92ecF6\",\"User Defined\":\"uQw2wbE5y\",Eco:\"bzY1viqep\",Max:\"cOajEbwsL\"};const getProps=({height,id,overlay,padding,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,Q133mRbu8:overlay!==null&&overlay!==void 0?overlay:props.Q133mRbu8,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"cOajEbwsL\",ylnGIlcoZ:(_ref1=padding!==null&&padding!==void 0?padding:props.ylnGIlcoZ)!==null&&_ref1!==void 0?_ref1:\"60px\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ylnGIlcoZ,Q133mRbu8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cOajEbwsL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const NPA1GIjD91pwky6z=activeVariantCallback(async(...args)=>{setVariant(\"cOajEbwsL\");});const NPA1GIjD9ck5qwh=activeVariantCallback(async(...args)=>{setVariant(\"bzY1viqep\");});const NPA1GIjD91551jxs=activeVariantCallback(async(...args)=>{setVariant(\"uQw2wbE5y\");});const NPA1GIjD91mxoczg=activeVariantCallback(async(...args)=>{setVariant(\"qbU92ecF6\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pvppew\",className,classNames),\"data-framer-name\":\"Max\",layoutDependency:layoutDependency,layoutId:\"cOajEbwsL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({bzY1viqep:{\"data-framer-name\":\"Eco\"},qbU92ecF6:{\"data-framer-name\":\"Power Reserve\"},uQw2wbE5y:{\"data-framer-name\":\"User Defined\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-124t3g9-container\",layoutDependency:layoutDependency,layoutId:\"E0EvdOPEk-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"E0EvdOPEk\",isMixedBorderRadius:false,layoutId:\"E0EvdOPEk\",loop:false,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/2ejnnGdPOZ3v3BtCvLCo6C39HFo.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({bzY1viqep:{playing:false,srcFile:\"https://framerusercontent.com/assets/EcU1eh87EKDh973O9UbNJcoNA.mp4\"},qbU92ecF6:{playing:false,srcFile:\"https://framerusercontent.com/assets/EcU1eh87EKDh973O9UbNJcoNA.mp4\"},uQw2wbE5y:{playing:false}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1seagrl-container\",layoutDependency:layoutDependency,layoutId:\"WW4OLfCl2-container\",style:{opacity:0},variants:{bzY1viqep:{opacity:1}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WW4OLfCl2\",isMixedBorderRadius:false,layoutId:\"WW4OLfCl2\",loop:false,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/QNgxVMQpMkLEqDYphtRS3ZHDhl0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({bzY1viqep:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6it4vt-container\",layoutDependency:layoutDependency,layoutId:\"v_RJduJrH-container\",style:{opacity:0},variants:{uQw2wbE5y:{opacity:1}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"v_RJduJrH\",isMixedBorderRadius:false,layoutId:\"v_RJduJrH\",loop:false,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/o3LwY09VqrC0fkqTcqpk8TxDRU.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({uQw2wbE5y:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jw25bv-container\",layoutDependency:layoutDependency,layoutId:\"Z9QpMQmVi-container\",style:{opacity:0},variants:{qbU92ecF6:{opacity:1}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Z9QpMQmVi\",isMixedBorderRadius:false,layoutId:\"Z9QpMQmVi\",loop:false,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/q9kLYVXiMb8ochTJqAmT2KLOqM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({qbU92ecF6:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x7lfol\",layoutDependency:layoutDependency,layoutId:\"mqs30KgOY\",style:{background:\"linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%)\"}}),Q133mRbu8&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-60m1ah\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"MvLGRZtMW\",style:{background:\"linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ncx5e7\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"N5BbNOafU\",style:{\"--c31iof\":numberToPixelString(ylnGIlcoZ)},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1kbklaz\",\"data-styles-preset\":\"tOLw1YNZq\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238)))\"},children:\"Smart Energy Management Modes\"})}),className:\"framer-1a1wlir\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WV7fah92B\",style:{\"--extracted-1eung3n\":\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dt9vnz\",\"data-framer-name\":\"Accordian\",layoutDependency:layoutDependency,layoutId:\"NLGFfKORG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fxs57o-container\",layoutDependency:layoutDependency,layoutId:\"PdtZgt6CR-container\",children:/*#__PURE__*/_jsx(AccordianRow,{height:\"100%\",id:\"PdtZgt6CR\",idORELZr_:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",jqrwaSJE1:true,layoutId:\"PdtZgt6CR\",NPA1GIjD9:NPA1GIjD91pwky6z,style:{width:\"100%\"},T8rQFvSBR:\"In Max Mode, GridLink delivers the highest possible charging output, drawing maximum power from both the grid and the integrated energy storage system., This mode is ideal for high-demand scenarios, ensuring vehicles receive the fastest possible charge to minimize downtime.\",variant:\"IIizlGSe0\",W88zB8mIG:\"Max Mode\",width:\"100%\",...addPropertyOverrides({bzY1viqep:{variant:\"Tod0wpxTf\"},qbU92ecF6:{variant:\"Tod0wpxTf\"},uQw2wbE5y:{variant:\"Tod0wpxTf\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18j0kid\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"mSFtizdm8\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ndg04q-container\",layoutDependency:layoutDependency,layoutId:\"fN1fbbj7Q-container\",children:/*#__PURE__*/_jsx(AccordianRow,{height:\"100%\",id:\"fN1fbbj7Q\",idORELZr_:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",jqrwaSJE1:true,layoutId:\"fN1fbbj7Q\",NPA1GIjD9:NPA1GIjD9ck5qwh,style:{width:\"100%\"},T8rQFvSBR:\"Eco Mode optimizes energy use by prioritizing power drawn from the storage system and renewable sources like photovoltaics, reducing reliance on the grid. It maximizes efficiency and lowers energy costs, making it perfect for locations with limited grid capacity, or where demand charges significantly impact profitability.\",variant:\"Tod0wpxTf\",W88zB8mIG:\"Eco Mode\",width:\"100%\",...addPropertyOverrides({bzY1viqep:{variant:\"IIizlGSe0\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3a5ts1\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"b3NFfROB7\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jpjng9-container\",layoutDependency:layoutDependency,layoutId:\"mHARbXiun-container\",children:/*#__PURE__*/_jsx(AccordianRow,{height:\"100%\",id:\"mHARbXiun\",idORELZr_:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",jqrwaSJE1:true,layoutId:\"mHARbXiun\",NPA1GIjD9:NPA1GIjD91551jxs,style:{width:\"100%\"},T8rQFvSBR:\"Custom Mode allows operators ton tailor GridLink's power settings to specific site requirements and pricing inputs. Whether adjusting output to match infrastructure limits or optimizing energy allocation for unique operational needs, this mode provides flexibility and control over how the system performs.\",variant:\"Tod0wpxTf\",W88zB8mIG:\"Custom Mode\",width:\"100%\",...addPropertyOverrides({uQw2wbE5y:{T8rQFvSBR:\"Custom Mode allows operators to tailor GridLink's power settings to specific site requirements and pricing inputs. Whether adjusting output to match infrastructure limits or optimizing energy allocation for unique operational needs, this mode provides flexibility and control over how the system performs.\",variant:\"IIizlGSe0\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nl2m8\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"FykvF_tX6\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-144wdrf-container\",layoutDependency:layoutDependency,layoutId:\"hgVaa89hJ-container\",children:/*#__PURE__*/_jsx(AccordianRow,{height:\"100%\",id:\"hgVaa89hJ\",idORELZr_:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",jqrwaSJE1:true,layoutId:\"hgVaa89hJ\",NPA1GIjD9:NPA1GIjD91mxoczg,style:{width:\"100%\"},T8rQFvSBR:\"In GridLink Reserve Mode, GridLink ensures that a portion of the energy storage system is always available for emergencies. This mode is crucial for maintaining reliable charging during blackouts or power shortages, guaranteeing that vehicles and critical systems can continue operating when the grid is down. Furthermore, reserved energy can be utilized for ancillary grid services allowing for further grid stability and unit profitability.\",variant:\"Tod0wpxTf\",W88zB8mIG:\"GridLink Reserve Mode\",width:\"100%\",...addPropertyOverrides({qbU92ecF6:{variant:\"IIizlGSe0\"}},baseVariant,gestureVariant)})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n1UyT.framer-1dx62cj, .framer-n1UyT .framer-1dx62cj { display: block; }\",\".framer-n1UyT.framer-1pvppew { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 562px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-n1UyT .framer-124t3g9-container, .framer-n1UyT .framer-1seagrl-container, .framer-n1UyT .framer-6it4vt-container, .framer-n1UyT .framer-1jw25bv-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-n1UyT .framer-x7lfol { bottom: 0px; flex: none; height: 100%; overflow: visible; position: absolute; right: 0px; width: 60%; }\",\".framer-n1UyT .framer-60m1ah { bottom: 0px; flex: none; height: 100%; overflow: visible; position: absolute; right: 0px; width: 100%; }\",\".framer-n1UyT .framer-1ncx5e7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: flex-start; max-width: 100%; overflow: visible; padding: var(--c31iof); position: relative; width: min-content; }\",\".framer-n1UyT .framer-1a1wlir { flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1UyT .framer-1dt9vnz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 300px; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-n1UyT .framer-fxs57o-container, .framer-n1UyT .framer-1ndg04q-container, .framer-n1UyT .framer-1jpjng9-container, .framer-n1UyT .framer-144wdrf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-n1UyT .framer-18j0kid, .framer-n1UyT .framer-3a5ts1, .framer-n1UyT .framer-nl2m8 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n1UyT.framer-1pvppew, .framer-n1UyT .framer-1ncx5e7, .framer-n1UyT .framer-1dt9vnz { gap: 0px; } .framer-n1UyT.framer-1pvppew > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-n1UyT.framer-1pvppew > :first-child, .framer-n1UyT .framer-1ncx5e7 > :first-child, .framer-n1UyT .framer-1dt9vnz > :first-child { margin-top: 0px; } .framer-n1UyT.framer-1pvppew > :last-child, .framer-n1UyT .framer-1ncx5e7 > :last-child, .framer-n1UyT .framer-1dt9vnz > :last-child { margin-bottom: 0px; } .framer-n1UyT .framer-1ncx5e7 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-n1UyT .framer-1dt9vnz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 562\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bzY1viqep\":{\"layout\":[\"fixed\",\"fixed\"]},\"uQw2wbE5y\":{\"layout\":[\"fixed\",\"fixed\"]},\"qbU92ecF6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ylnGIlcoZ\":\"padding\",\"Q133mRbu8\":\"overlay\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIs8b2GKeK=withCSS(Component,css,\"framer-n1UyT\");export default FramerIs8b2GKeK;FramerIs8b2GKeK.displayName=\"Feature Card: Energy Modes GridLink\";FramerIs8b2GKeK.defaultProps={height:562,width:1e3};addPropertyControls(FramerIs8b2GKeK,{variant:{options:[\"cOajEbwsL\",\"bzY1viqep\",\"uQw2wbE5y\",\"qbU92ecF6\"],optionTitles:[\"Max\",\"Eco\",\"User Defined\",\"Power Reserve\"],title:\"Variant\",type:ControlType.Enum},ylnGIlcoZ:{defaultValue:\"60px\",description:\"60 Default\\n40 Condensed (Phone)\",title:\"Padding\",type:ControlType.Padding},Q133mRbu8:{defaultValue:false,title:\"Overlay\",type:ControlType.Boolean}});addFonts(FramerIs8b2GKeK,[{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\"}]},...VideoFonts,...AccordianRowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIs8b2GKeK\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1000\",\"framerVariables\":\"{\\\"ylnGIlcoZ\\\":\\\"padding\\\",\\\"Q133mRbu8\\\":\\\"overlay\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bzY1viqep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uQw2wbE5y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qbU92ecF6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"562\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Is8b2GKeK.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Am3ARWPwiH8ajT4RUECh/E8xihVH9Cz4t8uio8ePb/tOLw1YNZq.js\";import SliderHandle from\"https://framerusercontent.com/modules/wqwFXYAgKKEfmrOqqPod/XkzqTsigfAuzkWMq7T3z/c08zi7azJ.js\";import Stat from\"https://framerusercontent.com/modules/pxMvCn7izVRQUszcY3HP/baGkKCq6uvYyNsIyPOrs/QAqeLqpqK.js\";const SliderHandleFonts=getFonts(SliderHandle);const StatFonts=getFonts(Stat);const cycleOrder=[\"ujquqMqrx\",\"un30Z6zqn\",\"USzZchofa\",\"ZgNWd56Wj\",\"HbAhJ359m\",\"xzaYp78HF\",\"VKXi1NBES\"];const serializationHash=\"framer-V48nC\";const variantClassNames={HbAhJ359m:\"framer-v-1193yvd\",ujquqMqrx:\"framer-v-yd4y9j\",un30Z6zqn:\"framer-v-2pbzok\",USzZchofa:\"framer-v-1u6ocel\",VKXi1NBES:\"framer-v-1wjaelp\",xzaYp78HF:\"framer-v-1xsbayu\",ZgNWd56Wj:\"framer-v-xid94r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"190 kW\":\"VKXi1NBES\",\"200 kW\":\"xzaYp78HF\",\"210 kW\":\"HbAhJ359m\",\"230 kW\":\"ZgNWd56Wj\",\"255 kW\":\"USzZchofa\",\"280 kW\":\"un30Z6zqn\",\"300 kW\":\"ujquqMqrx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ujquqMqrx\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ujquqMqrx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const FR9c75Myngf7mow=activeVariantCallback(async(...args)=>{setVariant(\"VKXi1NBES\");});const FR9c75Myn4t0yja=activeVariantCallback(async(...args)=>{setVariant(\"xzaYp78HF\");});const FR9c75Myn1hccb6d=activeVariantCallback(async(...args)=>{setVariant(\"HbAhJ359m\");});const FR9c75Mynmke8kv=activeVariantCallback(async(...args)=>{setVariant(\"ZgNWd56Wj\");});const FR9c75Myn1rsddx=activeVariantCallback(async(...args)=>{setVariant(\"USzZchofa\");});const FR9c75Myn16wlqb1=activeVariantCallback(async(...args)=>{setVariant(\"un30Z6zqn\");});const FR9c75Myn1nkn2po=activeVariantCallback(async(...args)=>{setVariant(\"ujquqMqrx\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ZgNWd56Wj\",\"HbAhJ359m\",\"xzaYp78HF\",\"VKXi1NBES\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yd4y9j\",className,classNames),\"data-framer-name\":\"300 kW\",layoutDependency:layoutDependency,layoutId:\"ujquqMqrx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({HbAhJ359m:{\"data-framer-name\":\"210 kW\"},un30Z6zqn:{\"data-framer-name\":\"280 kW\"},USzZchofa:{\"data-framer-name\":\"255 kW\"},VKXi1NBES:{\"data-framer-name\":\"190 kW\"},xzaYp78HF:{\"data-framer-name\":\"200 kW\"},ZgNWd56Wj:{\"data-framer-name\":\"230 kW\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1kbklaz\",\"data-styles-preset\":\"tOLw1YNZq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Adaptive Power Capability\"})}),className:\"framer-ukqame\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"atbFmt5xa\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15oquxl\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"x8Ds8aQ7K\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4t3nqg\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"paYSLhatx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qv39g7\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"Rq7Nz_iWu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gl2kkn\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"iRITMq2vw\",style:{backgroundColor:\"var(--token-fb66e3bf-8548-4a4c-97b4-b9df1cf5e140, rgb(203, 203, 203))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15w5s6z\",\"data-framer-name\":\"Points\",layoutDependency:layoutDependency,layoutId:\"J3InvIchh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbo51j\",layoutDependency:layoutDependency,layoutId:\"jNhSutjqN\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10gbcny-container\",layoutDependency:layoutDependency,layoutId:\"OWBZRPzG0-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myngf7mow,height:\"100%\",id:\"OWBZRPzG0\",layoutId:\"OWBZRPzG0\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"190 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c4w12x\",layoutDependency:layoutDependency,layoutId:\"cZg8I2cUd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1srhxg3-container\",layoutDependency:layoutDependency,layoutId:\"hu1DXnoFR-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn4t0yja,height:\"100%\",id:\"hu1DXnoFR\",layoutId:\"hu1DXnoFR\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"200 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqcr86\",layoutDependency:layoutDependency,layoutId:\"c1UvFva05\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wbi3oz-container\",layoutDependency:layoutDependency,layoutId:\"vEfw9gVuz-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn1hccb6d,height:\"100%\",id:\"vEfw9gVuz\",layoutId:\"vEfw9gVuz\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"210 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-txrlap\",layoutDependency:layoutDependency,layoutId:\"yJP6EK2gf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3r8p96-container\",layoutDependency:layoutDependency,layoutId:\"b6JKo_MfO-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Mynmke8kv,height:\"100%\",id:\"b6JKo_MfO\",layoutId:\"b6JKo_MfO\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"230 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9pww2k\",layoutDependency:layoutDependency,layoutId:\"mRbenBduH\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vl9my9-container\",layoutDependency:layoutDependency,layoutId:\"RcPOoKEWn-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn1rsddx,height:\"100%\",id:\"RcPOoKEWn\",layoutId:\"RcPOoKEWn\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"255 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1btda37\",layoutDependency:layoutDependency,layoutId:\"UoDaUJAIn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2firre-container\",layoutDependency:layoutDependency,layoutId:\"eA3Em8qQP-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn16wlqb1,height:\"100%\",id:\"eA3Em8qQP\",layoutId:\"eA3Em8qQP\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"280 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u3ynht\",layoutDependency:layoutDependency,layoutId:\"fDoKSPDXH\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hwkmi2-container\",layoutDependency:layoutDependency,layoutId:\"LFVey6U8B-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn1nkn2po,height:\"100%\",id:\"LFVey6U8B\",layoutId:\"LFVey6U8B\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"300 kW\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+21.599999999999998+30)+10+0+0,...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+0},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+0},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+0},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+21.599999999999998+30)+10+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qoo34j-container\",layoutDependency:layoutDependency,layoutId:\"b_qu6p9zj-container\",children:/*#__PURE__*/_jsx(SliderHandle,{height:\"100%\",id:\"b_qu6p9zj\",layoutId:\"b_qu6p9zj\",style:{height:\"100%\",width:\"100%\"},variant:\"FXua7yQsG\",width:\"100%\",xziZe0l4C:\"300 kW\",...addPropertyOverrides({HbAhJ359m:{xziZe0l4C:\"210 kW\"},un30Z6zqn:{xziZe0l4C:\"280 kW\"},USzZchofa:{xziZe0l4C:\"255 kW\"},VKXi1NBES:{xziZe0l4C:\"190 kW\"},xzaYp78HF:{xziZe0l4C:\"200 kW\"},ZgNWd56Wj:{xziZe0l4C:\"230 kW\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+61.599999999999994+60),...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+61.599999999999994+60)},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+61.599999999999994+60)},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+61.599999999999994+60)},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+61.599999999999994+60)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uptlhq-container\",layoutDependency:layoutDependency,layoutId:\"kpSTV8bZY-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"300 kW\",height:\"100%\",id:\"kpSTV8bZY\",layoutId:\"kpSTV8bZY\",style:{width:\"100%\"},Tc8VmtUPu:\"Max Power Out\",width:\"100%\",...addPropertyOverrides({HbAhJ359m:{gquu6TiH4:\"210 kW\"},un30Z6zqn:{gquu6TiH4:\"280 kW\"},USzZchofa:{gquu6TiH4:\"255 kW\"},VKXi1NBES:{gquu6TiH4:\"190 kW\"},xzaYp78HF:{gquu6TiH4:\"200 kW\"},ZgNWd56Wj:{gquu6TiH4:\"230 kW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+103.6+90),...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+103.6+90)},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+103.6+90)},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+103.6+90)},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+103.6+90)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t2pget-container\",layoutDependency:layoutDependency,layoutId:\"hhIBJTX8l-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"188 A\",height:\"100%\",id:\"hhIBJTX8l\",layoutId:\"hhIBJTX8l\",style:{width:\"100%\"},Tc8VmtUPu:\"Current Draw\",width:\"100%\",...addPropertyOverrides({HbAhJ359m:{gquu6TiH4:\"73 A\",Tc8VmtUPu:\"Current Draw (480Vac 3-phase)\"},un30Z6zqn:{gquu6TiH4:\"163A\"},USzZchofa:{gquu6TiH4:\"131 A\"},VKXi1NBES:{gquu6TiH4:\"48 A\",Tc8VmtUPu:\"Current Draw (480Vac 3-phase)\"},xzaYp78HF:{gquu6TiH4:\"61 A\",Tc8VmtUPu:\"Current Draw (480Vac 3-phase)\"},ZgNWd56Wj:{gquu6TiH4:\"99 A\",Tc8VmtUPu:\"Current Draw (480Vac 3-phase)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+145.6+120),...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+145.6+120)},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+145.6+120)},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+145.6+120)},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+145.6+120)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-idm7n7-container\",layoutDependency:layoutDependency,layoutId:\"adipNAN3m-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"250 A\",height:\"100%\",id:\"adipNAN3m\",layoutId:\"adipNAN3m\",style:{width:\"100%\"},Tc8VmtUPu:\"Breaker Sizing\",width:\"100%\",...addPropertyOverrides({HbAhJ359m:{gquu6TiH4:\"100 A\",Tc8VmtUPu:\"Breaker Sizing (480Vac 3-phase)\"},un30Z6zqn:{gquu6TiH4:\"225 A\"},USzZchofa:{gquu6TiH4:\"175 A\"},VKXi1NBES:{gquu6TiH4:\"60 A\",Tc8VmtUPu:\"Breaker Sizing (480Vac 3-phase)\"},xzaYp78HF:{gquu6TiH4:\"80 A\",Tc8VmtUPu:\"Breaker Sizing (480Vac 3-phase)\"},ZgNWd56Wj:{gquu6TiH4:\"125 A\",Tc8VmtUPu:\"Breaker Sizing (480Vac 3-phase)\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({HbAhJ359m:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+187.6+150)},VKXi1NBES:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+187.6+150)},xzaYp78HF:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+187.6+150)},ZgNWd56Wj:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+187.6+150)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i3odjw-container\",layoutDependency:layoutDependency,layoutId:\"gSROi_OCS-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"208 A\",height:\"100%\",id:\"gSROi_OCS\",layoutId:\"gSROi_OCS\",style:{width:\"100%\"},Tc8VmtUPu:\"Breaker Sizing (208Vac 3-phase)\",width:\"100%\",...addPropertyOverrides({HbAhJ359m:{gquu6TiH4:\"164 A\",Tc8VmtUPu:\"Current Draw (208Vac 3-phase)\"},VKXi1NBES:{gquu6TiH4:\"105 A\",Tc8VmtUPu:\"Current Draw (208Vac 3-phase)\"},xzaYp78HF:{gquu6TiH4:\"134 A\",Tc8VmtUPu:\"Current Draw (208Vac 3-phase)\"},ZgNWd56Wj:{gquu6TiH4:\"223 A\",Tc8VmtUPu:\"Current Draw (208Vac 3-phase)\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({HbAhJ359m:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+229.6+180)},VKXi1NBES:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+229.6+180)},xzaYp78HF:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+229.6+180)},ZgNWd56Wj:{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+229.6+180)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o92a4i-container\",layoutDependency:layoutDependency,layoutId:\"QunnsVagd-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"250 A\",height:\"100%\",id:\"QunnsVagd\",layoutId:\"QunnsVagd\",style:{width:\"100%\"},Tc8VmtUPu:\"Breaker Sizing (208Vac 3-phase)\",width:\"100%\",...addPropertyOverrides({VKXi1NBES:{gquu6TiH4:\"125 A\"},xzaYp78HF:{gquu6TiH4:\"150 A\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||382)-0-379.6)/2+187.6+150),...addPropertyOverrides({HbAhJ359m:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+271.6+210)},VKXi1NBES:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+271.6+210)},xzaYp78HF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+271.6+210)},ZgNWd56Wj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-523.6)/2+271.6+210)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hq5j41-container\",layoutDependency:layoutDependency,layoutId:\"vz2YOmc38-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"1 hour 47 minutes\",height:\"100%\",id:\"vz2YOmc38\",layoutId:\"vz2YOmc38\",style:{width:\"100%\"},Tc8VmtUPu:\"Battery Recharge Time\",width:\"100%\",...addPropertyOverrides({HbAhJ359m:{gquu6TiH4:\"7 hours 10 minutes\"},un30Z6zqn:{gquu6TiH4:\"2 hours 8 minutes\"},USzZchofa:{gquu6TiH4:\"2 hours 52 minutes\"},VKXi1NBES:{gquu6TiH4:\"21 hours 30 minutes\"},xzaYp78HF:{gquu6TiH4:\"10 hours 45 minutes\"},ZgNWd56Wj:{gquu6TiH4:\"4 hours 17 minutes\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V48nC.framer-1odyso4, .framer-V48nC .framer-1odyso4 { display: block; }\",\".framer-V48nC.framer-yd4y9j { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-V48nC .framer-ukqame { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-V48nC .framer-15oquxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-V48nC .framer-4t3nqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 314px; }\",\".framer-V48nC .framer-1qv39g7 { flex: none; height: 6px; left: calc(50.00000000000002% - 300px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 300px; z-index: 1; }\",\".framer-V48nC .framer-1gl2kkn { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-V48nC .framer-15w5s6z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-V48nC .framer-dbo51j, .framer-V48nC .framer-c4w12x, .framer-V48nC .framer-hqcr86, .framer-V48nC .framer-txrlap, .framer-V48nC .framer-9pww2k, .framer-V48nC .framer-1btda37, .framer-V48nC .framer-u3ynht { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 6px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 6px; }\",\".framer-V48nC .framer-10gbcny-container, .framer-V48nC .framer-1srhxg3-container, .framer-V48nC .framer-wbi3oz-container, .framer-V48nC .framer-3r8p96-container, .framer-V48nC .framer-vl9my9-container, .framer-V48nC .framer-2firre-container, .framer-V48nC .framer-hwkmi2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-V48nC .framer-qoo34j-container { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 20px; z-index: 1; }\",\".framer-V48nC .framer-1uptlhq-container, .framer-V48nC .framer-t2pget-container, .framer-V48nC .framer-idm7n7-container, .framer-V48nC .framer-1i3odjw-container, .framer-V48nC .framer-1o92a4i-container, .framer-V48nC .framer-hq5j41-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-V48nC.framer-yd4y9j, .framer-V48nC .framer-15oquxl, .framer-V48nC .framer-4t3nqg, .framer-V48nC .framer-dbo51j, .framer-V48nC .framer-c4w12x, .framer-V48nC .framer-hqcr86, .framer-V48nC .framer-txrlap, .framer-V48nC .framer-9pww2k, .framer-V48nC .framer-1btda37, .framer-V48nC .framer-u3ynht { gap: 0px; } .framer-V48nC.framer-yd4y9j > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-V48nC.framer-yd4y9j > :first-child, .framer-V48nC .framer-15oquxl > :first-child { margin-top: 0px; } .framer-V48nC.framer-yd4y9j > :last-child, .framer-V48nC .framer-15oquxl > :last-child { margin-bottom: 0px; } .framer-V48nC .framer-15oquxl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-V48nC .framer-4t3nqg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-V48nC .framer-4t3nqg > :first-child, .framer-V48nC .framer-dbo51j > :first-child, .framer-V48nC .framer-c4w12x > :first-child, .framer-V48nC .framer-hqcr86 > :first-child, .framer-V48nC .framer-txrlap > :first-child, .framer-V48nC .framer-9pww2k > :first-child, .framer-V48nC .framer-1btda37 > :first-child, .framer-V48nC .framer-u3ynht > :first-child { margin-left: 0px; } .framer-V48nC .framer-4t3nqg > :last-child, .framer-V48nC .framer-dbo51j > :last-child, .framer-V48nC .framer-c4w12x > :last-child, .framer-V48nC .framer-hqcr86 > :last-child, .framer-V48nC .framer-txrlap > :last-child, .framer-V48nC .framer-9pww2k > :last-child, .framer-V48nC .framer-1btda37 > :last-child, .framer-V48nC .framer-u3ynht > :last-child { margin-right: 0px; } .framer-V48nC .framer-dbo51j > *, .framer-V48nC .framer-c4w12x > *, .framer-V48nC .framer-hqcr86 > *, .framer-V48nC .framer-txrlap > *, .framer-V48nC .framer-9pww2k > *, .framer-V48nC .framer-1btda37 > *, .framer-V48nC .framer-u3ynht > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-V48nC.framer-v-2pbzok .framer-qoo34j-container { right: 49px; }\",\".framer-V48nC.framer-v-1u6ocel .framer-qoo34j-container { right: 98px; }\",\".framer-V48nC.framer-v-xid94r .framer-qoo34j-container { right: 147px; }\",\".framer-V48nC.framer-v-1193yvd .framer-qoo34j-container { left: 98px; right: unset; }\",\".framer-V48nC.framer-v-1xsbayu .framer-qoo34j-container { left: 49px; right: unset; }\",\".framer-V48nC.framer-v-1wjaelp .framer-qoo34j-container { left: 0px; right: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 382\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"un30Z6zqn\":{\"layout\":[\"fixed\",\"auto\"]},\"USzZchofa\":{\"layout\":[\"fixed\",\"auto\"]},\"ZgNWd56Wj\":{\"layout\":[\"fixed\",\"auto\"]},\"HbAhJ359m\":{\"layout\":[\"fixed\",\"auto\"]},\"xzaYp78HF\":{\"layout\":[\"fixed\",\"auto\"]},\"VKXi1NBES\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOi_CNOC9f=withCSS(Component,css,\"framer-V48nC\");export default FramerOi_CNOC9f;FramerOi_CNOC9f.displayName=\"Adaptive Power: GridLink\";FramerOi_CNOC9f.defaultProps={height:382,width:500};addPropertyControls(FramerOi_CNOC9f,{variant:{options:[\"ujquqMqrx\",\"un30Z6zqn\",\"USzZchofa\",\"ZgNWd56Wj\",\"HbAhJ359m\",\"xzaYp78HF\",\"VKXi1NBES\"],optionTitles:[\"300 kW\",\"280 kW\",\"255 kW\",\"230 kW\",\"210 kW\",\"200 kW\",\"190 kW\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOi_CNOC9f,[{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\"}]},...SliderHandleFonts,...StatFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOi_CNOC9f\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"382\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"un30Z6zqn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"USzZchofa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZgNWd56Wj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HbAhJ359m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xzaYp78HF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VKXi1NBES\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Am3ARWPwiH8ajT4RUECh/E8xihVH9Cz4t8uio8ePb/tOLw1YNZq.js\";import SliderHandle from\"https://framerusercontent.com/modules/wqwFXYAgKKEfmrOqqPod/XkzqTsigfAuzkWMq7T3z/c08zi7azJ.js\";import Stat from\"https://framerusercontent.com/modules/pxMvCn7izVRQUszcY3HP/baGkKCq6uvYyNsIyPOrs/QAqeLqpqK.js\";const SliderHandleFonts=getFonts(SliderHandle);const StatFonts=getFonts(Stat);const cycleOrder=[\"rHxpOK4fb\",\"z7rYV4e0f\",\"vXVed7p6O\",\"t3WuW_CBg\"];const serializationHash=\"framer-PKei1\";const variantClassNames={rHxpOK4fb:\"framer-v-yclf2r\",t3WuW_CBg:\"framer-v-v6y9nr\",vXVed7p6O:\"framer-v-1btankq\",z7rYV4e0f:\"framer-v-10l6v0h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"160 kW\":\"t3WuW_CBg\",\"170 kW\":\"vXVed7p6O\",\"180 kW\":\"z7rYV4e0f\",\"194 kW\":\"rHxpOK4fb\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"rHxpOK4fb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rHxpOK4fb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const FR9c75Myn65pyzt=activeVariantCallback(async(...args)=>{setVariant(\"t3WuW_CBg\");});const FR9c75Mynyltil6=activeVariantCallback(async(...args)=>{setVariant(\"vXVed7p6O\");});const FR9c75Myn1lohgvi=activeVariantCallback(async(...args)=>{setVariant(\"z7rYV4e0f\");});const FR9c75Mynm9cdgw=activeVariantCallback(async(...args)=>{setVariant(\"rHxpOK4fb\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yclf2r\",className,classNames),\"data-framer-name\":\"194 kW\",layoutDependency:layoutDependency,layoutId:\"rHxpOK4fb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({t3WuW_CBg:{\"data-framer-name\":\"160 kW\"},vXVed7p6O:{\"data-framer-name\":\"170 kW\"},z7rYV4e0f:{\"data-framer-name\":\"180 kW\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1kbklaz\",\"data-styles-preset\":\"tOLw1YNZq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Adaptive Power Capability\"})}),className:\"framer-1xry0ee\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t0SoWyGyx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gyefpb\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"jwSqg5VI1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1th1xp5\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"dFnH9jj7c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fyf325\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"xPIdlwy8r\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r41d6s\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"SwswkhrWN\",style:{backgroundColor:\"var(--token-fb66e3bf-8548-4a4c-97b4-b9df1cf5e140, rgb(203, 203, 203))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qvv5sx\",\"data-framer-name\":\"Points\",layoutDependency:layoutDependency,layoutId:\"EJ3DgjRBp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-54icu6\",layoutDependency:layoutDependency,layoutId:\"ztVWfhrVY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kfg4hd-container\",layoutDependency:layoutDependency,layoutId:\"K42UC6wC9-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn65pyzt,height:\"100%\",id:\"K42UC6wC9\",layoutId:\"K42UC6wC9\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"160 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dp7trm\",layoutDependency:layoutDependency,layoutId:\"kFQBkt_u5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sh2fip-container\",layoutDependency:layoutDependency,layoutId:\"eaZut17gk-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Mynyltil6,height:\"100%\",id:\"eaZut17gk\",layoutId:\"eaZut17gk\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"170 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3v0pcd\",layoutDependency:layoutDependency,layoutId:\"rfUBJ_35T\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kf9535-container\",layoutDependency:layoutDependency,layoutId:\"Q1lrzltUV-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Myn1lohgvi,height:\"100%\",id:\"Q1lrzltUV\",layoutId:\"Q1lrzltUV\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"180 kW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-afzcs8\",layoutDependency:layoutDependency,layoutId:\"oJDPGLgbl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+21.599999999999998+30)+10+0+7.0000000000000036+13322676295501878e-31+0+-7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11mj25p-container\",layoutDependency:layoutDependency,layoutId:\"qhHCbxZYl-container\",children:/*#__PURE__*/_jsx(SliderHandle,{FR9c75Myn:FR9c75Mynm9cdgw,height:\"100%\",id:\"qhHCbxZYl\",layoutId:\"qhHCbxZYl\",variant:\"C79flCdeN\",width:\"100%\",xziZe0l4C:\"194 kW\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+21.599999999999998+30)+10+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w4xoe6-container\",layoutDependency:layoutDependency,layoutId:\"gzIGgoKi5-container\",children:/*#__PURE__*/_jsx(SliderHandle,{height:\"100%\",id:\"gzIGgoKi5\",layoutId:\"gzIGgoKi5\",style:{height:\"100%\",width:\"100%\"},variant:\"FXua7yQsG\",width:\"100%\",xziZe0l4C:\"194 kW\",...addPropertyOverrides({t3WuW_CBg:{xziZe0l4C:\"160 kW\"},vXVed7p6O:{xziZe0l4C:\"170 kW\"},z7rYV4e0f:{xziZe0l4C:\"180 kW\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+61.599999999999994+60),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kjqwjf-container\",layoutDependency:layoutDependency,layoutId:\"lZupQslIg-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"194 kW\",height:\"100%\",id:\"lZupQslIg\",layoutId:\"lZupQslIg\",style:{width:\"100%\"},Tc8VmtUPu:\"Max Power Out\",width:\"100%\",...addPropertyOverrides({t3WuW_CBg:{gquu6TiH4:\"160 kW\"},vXVed7p6O:{gquu6TiH4:\"170 kW\"},z7rYV4e0f:{gquu6TiH4:\"180 kW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+103.6+90),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1krnm-container\",layoutDependency:layoutDependency,layoutId:\"yQzeXyhqH-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"65 A\",height:\"100%\",id:\"yQzeXyhqH\",layoutId:\"yQzeXyhqH\",style:{width:\"100%\"},Tc8VmtUPu:\"Current Draw\",width:\"100%\",...addPropertyOverrides({t3WuW_CBg:{gquu6TiH4:\"15 A\"},vXVed7p6O:{gquu6TiH4:\"25 A\"},z7rYV4e0f:{gquu6TiH4:\"50 A\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+145.6+120),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amx2fx-container\",layoutDependency:layoutDependency,layoutId:\"dsdzmMWH0-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"80 A\",height:\"100%\",id:\"dsdzmMWH0\",layoutId:\"dsdzmMWH0\",style:{width:\"100%\"},Tc8VmtUPu:\"Breaker Sizing\",width:\"100%\",...addPropertyOverrides({t3WuW_CBg:{gquu6TiH4:\"20 A\"},vXVed7p6O:{gquu6TiH4:\"30 A\"},z7rYV4e0f:{gquu6TiH4:\"60 A\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||371.5)-0-379.6)/2+187.6+150),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ibfevo-container\",layoutDependency:layoutDependency,layoutId:\"mhHhxAOwZ-container\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"~4 hrs\",height:\"100%\",id:\"mhHhxAOwZ\",layoutId:\"mhHhxAOwZ\",style:{width:\"100%\"},Tc8VmtUPu:\"Battery Recharge Time\",width:\"100%\",...addPropertyOverrides({t3WuW_CBg:{gquu6TiH4:\"~17 hrs 12 mins\"},vXVed7p6O:{gquu6TiH4:\"~10 hrs 18 min\"},z7rYV4e0f:{gquu6TiH4:\"~5 hrs 12 min\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PKei1.framer-8feobl, .framer-PKei1 .framer-8feobl { display: block; }\",\".framer-PKei1.framer-yclf2r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-PKei1 .framer-1xry0ee { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PKei1 .framer-1gyefpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-PKei1 .framer-1th1xp5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 314px; }\",\".framer-PKei1 .framer-1fyf325 { flex: none; height: 6px; left: calc(50.00000000000002% - 300px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 300px; z-index: 1; }\",\".framer-PKei1 .framer-r41d6s { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-PKei1 .framer-1qvv5sx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-PKei1 .framer-54icu6, .framer-PKei1 .framer-dp7trm, .framer-PKei1 .framer-3v0pcd, .framer-PKei1 .framer-afzcs8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 6px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 6px; }\",\".framer-PKei1 .framer-kfg4hd-container, .framer-PKei1 .framer-1sh2fip-container, .framer-PKei1 .framer-1kf9535-container, .framer-PKei1 .framer-11mj25p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PKei1 .framer-w4xoe6-container { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 20px; z-index: 1; }\",\".framer-PKei1 .framer-1kjqwjf-container, .framer-PKei1 .framer-r1krnm-container, .framer-PKei1 .framer-1amx2fx-container, .framer-PKei1 .framer-ibfevo-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PKei1.framer-yclf2r, .framer-PKei1 .framer-1gyefpb, .framer-PKei1 .framer-1th1xp5, .framer-PKei1 .framer-54icu6, .framer-PKei1 .framer-dp7trm, .framer-PKei1 .framer-3v0pcd, .framer-PKei1 .framer-afzcs8 { gap: 0px; } .framer-PKei1.framer-yclf2r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PKei1.framer-yclf2r > :first-child, .framer-PKei1 .framer-1gyefpb > :first-child { margin-top: 0px; } .framer-PKei1.framer-yclf2r > :last-child, .framer-PKei1 .framer-1gyefpb > :last-child { margin-bottom: 0px; } .framer-PKei1 .framer-1gyefpb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PKei1 .framer-1th1xp5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PKei1 .framer-1th1xp5 > :first-child, .framer-PKei1 .framer-54icu6 > :first-child, .framer-PKei1 .framer-dp7trm > :first-child, .framer-PKei1 .framer-3v0pcd > :first-child, .framer-PKei1 .framer-afzcs8 > :first-child { margin-left: 0px; } .framer-PKei1 .framer-1th1xp5 > :last-child, .framer-PKei1 .framer-54icu6 > :last-child, .framer-PKei1 .framer-dp7trm > :last-child, .framer-PKei1 .framer-3v0pcd > :last-child, .framer-PKei1 .framer-afzcs8 > :last-child { margin-right: 0px; } .framer-PKei1 .framer-54icu6 > *, .framer-PKei1 .framer-dp7trm > *, .framer-PKei1 .framer-3v0pcd > *, .framer-PKei1 .framer-afzcs8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-PKei1.framer-v-10l6v0h .framer-w4xoe6-container { right: 98px; }\",\".framer-PKei1.framer-v-1btankq .framer-w4xoe6-container { right: 196px; }\",\".framer-PKei1.framer-v-v6y9nr .framer-w4xoe6-container { right: 294px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 371.5\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z7rYV4e0f\":{\"layout\":[\"fixed\",\"auto\"]},\"vXVed7p6O\":{\"layout\":[\"fixed\",\"auto\"]},\"t3WuW_CBg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerwg4iXEQlV=withCSS(Component,css,\"framer-PKei1\");export default Framerwg4iXEQlV;Framerwg4iXEQlV.displayName=\"Adaptive Power: GridLink Air-Cooled\";Framerwg4iXEQlV.defaultProps={height:371.5,width:500};addPropertyControls(Framerwg4iXEQlV,{variant:{options:[\"rHxpOK4fb\",\"z7rYV4e0f\",\"vXVed7p6O\",\"t3WuW_CBg\"],optionTitles:[\"194 kW\",\"180 kW\",\"170 kW\",\"160 kW\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerwg4iXEQlV,[{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\"}]},...SliderHandleFonts,...StatFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwg4iXEQlV\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z7rYV4e0f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vXVed7p6O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t3WuW_CBg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"500\",\"framerIntrinsicHeight\":\"371.5\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wg4iXEQlV.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wul0QqzqWxDP0TDp7PrE/rTVOd0sJ9BDisHLep2Mi/ucGYw7eDK.js\";import AdaptivePowerGridLink from\"https://framerusercontent.com/modules/fg1lEcLcxB3sdMO730DN/R60lEdNGui6aJSmMZxYu/Oi_CNOC9f.js\";import TabButton from\"https://framerusercontent.com/modules/sma7E1zqwBn88e7snRS2/5l2qKzmAE76L11CglvyZ/P50TfUBNo.js\";import Stat from\"https://framerusercontent.com/modules/pxMvCn7izVRQUszcY3HP/baGkKCq6uvYyNsIyPOrs/QAqeLqpqK.js\";import AdaptivePowerGridLinkAirCooled from\"https://framerusercontent.com/modules/4iIqFZIXS0gmPYRx49vq/UYBjPfkasxLmRyjy0OHi/wg4iXEQlV.js\";const TabButtonFonts=getFonts(TabButton);const DownloadFonts=getFonts(Download);const StatFonts=getFonts(Stat);const AdaptivePowerGridLinkFonts=getFonts(AdaptivePowerGridLink);const AdaptivePowerGridLinkAirCooledFonts=getFonts(AdaptivePowerGridLinkAirCooled);const cycleOrder=[\"R_no0495Y\",\"VqoXBiYFV\"];const serializationHash=\"framer-dyu9x\";const variantClassNames={R_no0495Y:\"framer-v-1n7kitm\",VqoXBiYFV:\"framer-v-1ffmlkh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Air-Cooled\":\"VqoXBiYFV\",\"Liquid-Cooled\":\"R_no0495Y\"};const getProps=({direction,distribute,gap,height,id,topPadding,width,...props})=>{return{...props,gFhRVpQS5:gap??props.gFhRVpQS5??10,OfQPybvX6:topPadding??props.OfQPybvX6??\"0px 0px 0px 0px\",s4cVwuYnf:humanReadableEnumMap[direction]??direction??props.s4cVwuYnf??\"row\",v1sp7DPu1:humanReadableEnumMap1[distribute]??distribute??props.v1sp7DPu1??\"space-between\",variant:humanReadableVariantMap[props.variant]??props.variant??\"R_no0495Y\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,OfQPybvX6,s4cVwuYnf,v1sp7DPu1,gFhRVpQS5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R_no0495Y\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const VkEh8ag8uoyynl7=activeVariantCallback(async(...args)=>{setVariant(\"VqoXBiYFV\");});const VkEh8ag8up631z1=activeVariantCallback(async(...args)=>{setVariant(\"R_no0495Y\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"VqoXBiYFV\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"VqoXBiYFV\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n7kitm\",className,classNames),\"data-framer-name\":\"Liquid-Cooled\",layoutDependency:layoutDependency,layoutId:\"R_no0495Y\",ref:refBinding,style:{backgroundColor:\"var(--token-b1e90fce-8953-475d-a316-98cfd450db67, rgb(250, 250, 250))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({VqoXBiYFV:{\"data-framer-name\":\"Air-Cooled\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wdeg2p\",\"data-framer-name\":\"Button Group\",layoutDependency:layoutDependency,layoutId:\"hjOfWmOgY\",style:{backgroundColor:\"rgb(221, 221, 221)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"135px\",y:(componentViewport?.y||0)+50+1,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yxp83v-container\",layoutDependency:layoutDependency,layoutId:\"Btt3llH2o-container\",nodeId:\"Btt3llH2o\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(TabButton,{height:\"100%\",id:\"Btt3llH2o\",layoutId:\"Btt3llH2o\",Rk6NvVi0O:\"Air-Cooled\",style:{width:\"100%\"},variant:\"AYz10E2UX\",VkEh8ag8u:VkEh8ag8uoyynl7,width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{variant:\"O1zdWHeP3\",VkEh8ag8u:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"135px\",y:(componentViewport?.y||0)+50+1,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ohgwsx-container\",layoutDependency:layoutDependency,layoutId:\"MWzb4Rp6h-container\",nodeId:\"MWzb4Rp6h\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(TabButton,{height:\"100%\",id:\"MWzb4Rp6h\",layoutId:\"MWzb4Rp6h\",Rk6NvVi0O:\"Liquid-Cooled\",style:{width:\"100%\"},variant:\"O1zdWHeP3\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{variant:\"AYz10E2UX\",VkEh8ag8u:VkEh8ag8up631z1}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1id5yo0\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"D68bOKP1y\",style:{\"--1pytjvc\":gFhRVpQS5,\"--1ru70dh\":numberToPixelString(OfQPybvX6),\"--1yl41mq\":s4cVwuYnf===\"column\"?0:\"calc(calc(max(0, var(--1pytjvc)) * 1px) / 2)\",\"--2dswu9\":s4cVwuYnf===\"row\"?0:\"calc(calc(max(0, var(--1pytjvc)) * 1px) / 2)\",\"--7vedi4\":v1sp7DPu1,\"--izkwo2\":s4cVwuYnf},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67)))\"},children:\"GridLink Specs\"})}),className:\"framer-14pynmv\",fonts:[\"CUSTOM;MiSans Semibold\"],layoutDependency:layoutDependency,layoutId:\"adNQDB4fR\",style:{\"--extracted-1of0zx5\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kon951\",layoutDependency:layoutDependency,layoutId:\"mQQiPs0xy\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-103qkx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"g6z4fVahD-container\",nodeId:\"g6z4fVahD\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(60, 64, 67))\",size:20,type:\"Default\"},id:\"g6z4fVahD\",layoutId:\"g6z4fVahD\",srcFile:\"https://framerusercontent.com/assets/kwvNR8NRQ0ehK5beRUGXfS4Hc.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderRadius:4,color:\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(60, 64, 67))\",gap:8,padding:10,paddingBottom:15,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:15},text:\"Air-Cooled Specs\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9e8pe7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"y2a150dQ6-container\",nodeId:\"y2a150dQ6\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(60, 64, 67))\",size:20,type:\"Default\"},id:\"y2a150dQ6\",layoutId:\"y2a150dQ6\",srcFile:\"https://framerusercontent.com/assets/m6MwjIwHMyKEXYe2SHu2fY3nIko.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgba(0, 0, 0, 0.05)\",borderRadius:4,color:\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(60, 64, 67))\",gap:8,padding:10,paddingBottom:15,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:15},text:\"Liquid-Cooled Specs\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-znyka6\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"DNZNPtDD8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l6pyi1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jP9ppqjeB\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,src:\"https://framerusercontent.com/images/kHA785KrN6ecvwFsZLjYas1wiSE.png\",srcSet:\"https://framerusercontent.com/images/kHA785KrN6ecvwFsZLjYas1wiSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kHA785KrN6ecvwFsZLjYas1wiSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kHA785KrN6ecvwFsZLjYas1wiSE.png 1600w\"},className:\"framer-12vmvlx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tUZietWHa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SqfvoG5LTmSygU7CbaIPRwvciwE.png\",srcSet:\"https://framerusercontent.com/images/SqfvoG5LTmSygU7CbaIPRwvciwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/SqfvoG5LTmSygU7CbaIPRwvciwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SqfvoG5LTmSygU7CbaIPRwvciwE.png 1600w\"},className:\"framer-1atvwab\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yQkz4hYUh\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oh22p9\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"nD_8Fdz_E\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iwh2ys\",layoutDependency:layoutDependency,layoutId:\"vGY3cRZ88\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(34, 34, 34)))\"},children:\"GridLink\"})}),className:\"framer-16y9awm\",fonts:[\"CUSTOM;MiSans Semibold\"],layoutDependency:layoutDependency,layoutId:\"ZeQegD8XQ\",style:{\"--extracted-a0htzi\":\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(34, 34, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(34, 34, 34)))\"},children:\"GridLink XL \"})}),className:\"framer-106slpr\",fonts:[\"CUSTOM;MiSans Semibold\"],layoutDependency:layoutDependency,layoutId:\"zAvjNra95\",style:{\"--extracted-a0htzi\":\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(34, 34, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-971hzc\",layoutDependency:layoutDependency,layoutId:\"yY0Ni4SEJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r2ofzd\",\"data-styles-preset\":\"ucGYw7eDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Liquid-Cooled - Up to 300 kW Output\"})}),className:\"framer-vvpnyd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a_GQTBNMT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VqoXBiYFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r2ofzd\",\"data-styles-preset\":\"ucGYw7eDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Air-Cooled - Up to 194 kW Output\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r2ofzd\",\"data-styles-preset\":\"ucGYw7eDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Liquid-Cooled - Up to 300 kW Output\"})}),className:\"framer-a04lrg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7QIkpSN2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VqoXBiYFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r2ofzd\",\"data-styles-preset\":\"ucGYw7eDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Air-Cooled - Up to 194 kW Output\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-likjp\",layoutDependency:layoutDependency,layoutId:\"Y7W4XB6jw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r2ofzd\",\"data-styles-preset\":\"ucGYw7eDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"(Coming Soon)\"})}),className:\"framer-1pg5bhv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TrxpfjCPx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r2ofzd\",\"data-styles-preset\":\"ucGYw7eDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"(Coming Soon)\"})}),className:\"framer-zbuwbk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yNHZHlQax\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wu28ca\",layoutDependency:layoutDependency,layoutId:\"ktsoaubs3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x7bk29-container\",layoutDependency:layoutDependency,layoutId:\"fF78LtiXj-container\",nodeId:\"fF78LtiXj\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"215 kWh\",height:\"100%\",id:\"fF78LtiXj\",layoutId:\"fF78LtiXj\",style:{width:\"100%\"},Tc8VmtUPu:\"Battery Capacity\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-92merz-container\",layoutDependency:layoutDependency,layoutId:\"Edyg0EOR9-container\",nodeId:\"Edyg0EOR9\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"2 x 215 kWh\",height:\"100%\",id:\"Edyg0EOR9\",layoutId:\"Edyg0EOR9\",style:{width:\"100%\"},Tc8VmtUPu:\"Battery Capacity\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pcevbb\",layoutDependency:layoutDependency,layoutId:\"uwpPFblY7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16eqgcx-container\",layoutDependency:layoutDependency,layoutId:\"ZKyr7kIln-container\",nodeId:\"ZKyr7kIln\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"205 kWh\",height:\"100%\",id:\"ZKyr7kIln\",layoutId:\"ZKyr7kIln\",style:{width:\"100%\"},Tc8VmtUPu:\"Usable Energy (SAT)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hbl3d0-container\",layoutDependency:layoutDependency,layoutId:\"rhfHfvjno-container\",nodeId:\"rhfHfvjno\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"2 x 205 kWh\",height:\"100%\",id:\"rhfHfvjno\",layoutId:\"rhfHfvjno\",style:{width:\"100%\"},Tc8VmtUPu:\"Usable Energy (SAT)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r76fha\",layoutDependency:layoutDependency,layoutId:\"aD0cWQP6H\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3alov3-container\",layoutDependency:layoutDependency,layoutId:\"WvIOZVjOl-container\",nodeId:\"WvIOZVjOl\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"60-120 kW\",height:\"100%\",id:\"WvIOZVjOl\",layoutId:\"WvIOZVjOl\",style:{width:\"100%\"},Tc8VmtUPu:\"Grid Connection\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"44 kW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nxvo5v-container\",layoutDependency:layoutDependency,layoutId:\"yxUHTEegg-container\",nodeId:\"yxUHTEegg\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"60-120 kW\",height:\"100%\",id:\"yxUHTEegg\",layoutId:\"yxUHTEegg\",style:{width:\"100%\"},Tc8VmtUPu:\"Grid Connection\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"44 kW\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pzovmd\",layoutDependency:layoutDependency,layoutId:\"fm5ocEMcp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bedgyj-container\",layoutDependency:layoutDependency,layoutId:\"f73shU_qr-container\",nodeId:\"f73shU_qr\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"DC Max 180 kW\",height:\"100%\",id:\"f73shU_qr\",layoutId:\"f73shU_qr\",style:{width:\"100%\"},Tc8VmtUPu:\"Battery Output Power\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"DC Max 150 kW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1axhf98-container\",layoutDependency:layoutDependency,layoutId:\"fuFfMI2tl-container\",nodeId:\"fuFfMI2tl\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"DC Max 180 kW\",height:\"100%\",id:\"fuFfMI2tl\",layoutId:\"fuFfMI2tl\",style:{width:\"100%\"},Tc8VmtUPu:\"Battery Output Power\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"DC Max 150 kW\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2hp4g\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"gh4JO07kr\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kyxz7m\",\"data-framer-name\":\"Specs: GridLink Type\",layoutDependency:layoutDependency,layoutId:\"LOdeCLqt5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lm9789\",layoutDependency:layoutDependency,layoutId:\"koAGiazf6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w1ubmg-container\",layoutDependency:layoutDependency,layoutId:\"G9h5jP2a3-container\",nodeId:\"G9h5jP2a3\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"180 kW + 120 kW\",height:\"100%\",id:\"G9h5jP2a3\",layoutId:\"G9h5jP2a3\",style:{width:\"100%\"},Tc8VmtUPu:\"Max Output Power\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"44 kW + 150 kW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h1ibco-container\",layoutDependency:layoutDependency,layoutId:\"OG1CaPJdx-container\",nodeId:\"OG1CaPJdx\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"180 kW + 120 kW\",height:\"100%\",id:\"OG1CaPJdx\",layoutId:\"OG1CaPJdx\",style:{width:\"100%\"},Tc8VmtUPu:\"Max Output Power\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"44 kW + 150 kW\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kahr9f\",layoutDependency:layoutDependency,layoutId:\"lfC9W0diw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wyxmaw-container\",layoutDependency:layoutDependency,layoutId:\"we3Bnu8zy-container\",nodeId:\"we3Bnu8zy\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"3Phase 480VAC+/- 15% and\\n3Phase 208VAC +/- 15%\",height:\"100%\",id:\"we3Bnu8zy\",layoutId:\"we3Bnu8zy\",style:{width:\"100%\"},Tc8VmtUPu:\"Input Voltage\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"3Phase 480VAC+/- 10%\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rf20a-container\",layoutDependency:layoutDependency,layoutId:\"VekY2C7kW-container\",nodeId:\"VekY2C7kW\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"3Phase 480VAC+/- 15% and\\n3Phase 208VAC +/- 15%\",height:\"100%\",id:\"VekY2C7kW\",layoutId:\"VekY2C7kW\",style:{width:\"100%\"},Tc8VmtUPu:\"Input Voltage\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"3Phase 480VAC+/- 10%\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sctqvj\",layoutDependency:layoutDependency,layoutId:\"yxrb5_a0z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hcg0uv-container\",layoutDependency:layoutDependency,layoutId:\"DrVR1dpVT-container\",nodeId:\"DrVR1dpVT\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"300V ~ 1000V\",height:\"100%\",id:\"DrVR1dpVT\",layoutId:\"DrVR1dpVT\",style:{width:\"100%\"},Tc8VmtUPu:\"Output Voltage\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ugg9l-container\",layoutDependency:layoutDependency,layoutId:\"J1rO2jgqp-container\",nodeId:\"J1rO2jgqp\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"300V ~ 1000V\",height:\"100%\",id:\"J1rO2jgqp\",layoutId:\"J1rO2jgqp\",style:{width:\"100%\"},Tc8VmtUPu:\"Output Voltage\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r2d2of\",layoutDependency:layoutDependency,layoutId:\"fqPezo5HL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ito0d3-container\",layoutDependency:layoutDependency,layoutId:\"l6_Hs_OfV-container\",nodeId:\"l6_Hs_OfV\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"300-825Vdc, Max 60 kW\",height:\"100%\",id:\"l6_Hs_OfV\",layoutId:\"l6_Hs_OfV\",style:{width:\"100%\"},Tc8VmtUPu:\"Photovolatic Input\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"300-825Vdc, Max 30 kW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eynql3-container\",layoutDependency:layoutDependency,layoutId:\"s1b2irnSd-container\",nodeId:\"s1b2irnSd\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"300-825Vdc, Max 60 kW\",height:\"100%\",id:\"s1b2irnSd\",layoutId:\"s1b2irnSd\",style:{width:\"100%\"},Tc8VmtUPu:\"Photovolatic Input\",width:\"100%\",...addPropertyOverrides({VqoXBiYFV:{gquu6TiH4:\"300-825Vdc, Max 30 kW\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13yrgnt\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"YMkhpBsy2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14dx4mx\",layoutDependency:layoutDependency,layoutId:\"DLmHITOVF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ydvuev-container\",layoutDependency:layoutDependency,layoutId:\"NtRDSx2EU-container\",nodeId:\"NtRDSx2EU\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"7.34 x 3.24 x 7.72 feet\",height:\"100%\",id:\"NtRDSx2EU\",layoutId:\"NtRDSx2EU\",style:{width:\"100%\"},Tc8VmtUPu:\"Dimensions (LxWxH)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sid8z5-container\",layoutDependency:layoutDependency,layoutId:\"Vbh8ebMQI-container\",nodeId:\"Vbh8ebMQI\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"12.05 x 3.24 x 7.72 feet\",height:\"100%\",id:\"Vbh8ebMQI\",layoutId:\"Vbh8ebMQI\",style:{width:\"100%\"},Tc8VmtUPu:\"Dimensions (LxWxH)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h9iaa7\",layoutDependency:layoutDependency,layoutId:\"G_I2qkUBq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18xm2ik-container\",layoutDependency:layoutDependency,layoutId:\"KQamOZ4UM-container\",nodeId:\"KQamOZ4UM\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"7,936 lbs\",height:\"100%\",id:\"KQamOZ4UM\",layoutId:\"KQamOZ4UM\",style:{width:\"100%\"},Tc8VmtUPu:\"Weight\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19ws4tp-container\",layoutDependency:layoutDependency,layoutId:\"O1O8rmtaq-container\",nodeId:\"O1O8rmtaq\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"12,932 lbs\",height:\"100%\",id:\"O1O8rmtaq\",layoutId:\"O1O8rmtaq\",style:{width:\"100%\"},Tc8VmtUPu:\"Weight\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gn8eo0\",layoutDependency:layoutDependency,layoutId:\"sAUv5CDjT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xp3c4g\",layoutDependency:layoutDependency,layoutId:\"TCJhjItsj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ytxc6j-container\",layoutDependency:layoutDependency,layoutId:\"s3vyIBM3u-container\",nodeId:\"s3vyIBM3u\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"CCS / NACS\",height:\"100%\",id:\"s3vyIBM3u\",layoutId:\"s3vyIBM3u\",style:{width:\"100%\"},Tc8VmtUPu:\"Configurations\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ne2bi\",layoutDependency:layoutDependency,layoutId:\"S8hXMvhKv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WOICJXdB52Fwi5GvtYU0RJNtB4.webp\"},className:\"framer-1p3uxnm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yAqNB4Jan\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vKt6sFwKYso0DsZIV63MFWBQA.webp\"},className:\"framer-65jevv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iHn_BOR8t\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ljkd7j\",layoutDependency:layoutDependency,layoutId:\"uYrpkBbWk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sraifb-container\",layoutDependency:layoutDependency,layoutId:\"mSTR9NJsT-container\",nodeId:\"mSTR9NJsT\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(Stat,{gquu6TiH4:\"CCS / NACS\",height:\"100%\",id:\"mSTR9NJsT\",layoutId:\"mSTR9NJsT\",style:{width:\"100%\"},Tc8VmtUPu:\"Configurations\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1crom9s\",layoutDependency:layoutDependency,layoutId:\"agFf4t6ng\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WOICJXdB52Fwi5GvtYU0RJNtB4.webp\"},className:\"framer-fo1i9m\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"U2TDev3Ye\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vKt6sFwKYso0DsZIV63MFWBQA.webp\"},className:\"framer-fyc2x0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CixGcffl_\"})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5rv42d\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"yH4EYN8Vi\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:382,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c87cjg-container\",layoutDependency:layoutDependency,layoutId:\"Iuq1GzCya-container\",nodeId:\"Iuq1GzCya\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(AdaptivePowerGridLink,{height:\"100%\",id:\"Iuq1GzCya\",layoutId:\"Iuq1GzCya\",style:{width:\"100%\"},variant:\"ujquqMqrx\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({VqoXBiYFV:{height:371,width:\"500px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1238nrr-container\",layoutDependency:layoutDependency,layoutId:\"oKX4P1vCL-container\",nodeId:\"oKX4P1vCL\",rendersWithMotion:true,scopeId:\"z_hnGZif0\",children:/*#__PURE__*/_jsx(AdaptivePowerGridLinkAirCooled,{height:\"100%\",id:\"oKX4P1vCL\",layoutId:\"oKX4P1vCL\",style:{width:\"100%\"},variant:\"rHxpOK4fb\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13c0p70\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"OIvX0wk7P\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xg8wzd\",layoutDependency:layoutDependency,layoutId:\"u9Cstk534\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:392,src:\"https://framerusercontent.com/images/1ARNPq5B14EfF59f5kFSrQ818jE.webp\"},className:\"framer-1nco466\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l5_2j0D62\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:391,src:\"https://framerusercontent.com/images/pcW5N9L5Y0oQADgOYFdvfhKveiw.webp\"},className:\"framer-jjt0ce\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZVF4Pcf1u\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dyu9x.framer-131q0x2, .framer-dyu9x .framer-131q0x2 { display: block; }\",\".framer-dyu9x.framer-1n7kitm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 1160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dyu9x .framer-1wdeg2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 1px; position: absolute; top: 50px; width: min-content; z-index: 1; }\",\".framer-dyu9x .framer-1yxp83v-container, .framer-dyu9x .framer-ohgwsx-container { flex: none; height: auto; position: relative; width: 135px; }\",\".framer-dyu9x .framer-1id5yo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: var(--izkwo2); flex-wrap: nowrap; gap: calc(max(0, var(--1pytjvc)) * 1px); height: min-content; justify-content: var(--7vedi4); overflow: hidden; padding: var(--1ru70dh); position: relative; width: 100%; }\",\".framer-dyu9x .framer-14pynmv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dyu9x .framer-kon951 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dyu9x .framer-103qkx-container, .framer-dyu9x .framer-9e8pe7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dyu9x .framer-znyka6 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dyu9x .framer-l6pyi1, .framer-dyu9x .framer-1iwh2ys, .framer-dyu9x .framer-971hzc, .framer-dyu9x .framer-likjp, .framer-dyu9x .framer-1wu28ca, .framer-dyu9x .framer-1pcevbb, .framer-dyu9x .framer-1r76fha, .framer-dyu9x .framer-1pzovmd, .framer-dyu9x .framer-1lm9789, .framer-dyu9x .framer-1kahr9f, .framer-dyu9x .framer-1sctqvj, .framer-dyu9x .framer-1r2d2of, .framer-dyu9x .framer-14dx4mx, .framer-dyu9x .framer-h9iaa7, .framer-dyu9x .framer-gn8eo0 { 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-dyu9x .framer-12vmvlx, .framer-dyu9x .framer-1atvwab { aspect-ratio: 1.3333333333333333 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 240px); max-height: 240px; overflow: hidden; position: relative; width: 1px; }\",\".framer-dyu9x .framer-1oh22p9 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dyu9x .framer-16y9awm, .framer-dyu9x .framer-106slpr, .framer-dyu9x .framer-vvpnyd, .framer-dyu9x .framer-a04lrg, .framer-dyu9x .framer-1pg5bhv, .framer-dyu9x .framer-zbuwbk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-dyu9x .framer-1x7bk29-container, .framer-dyu9x .framer-92merz-container, .framer-dyu9x .framer-16eqgcx-container, .framer-dyu9x .framer-1hbl3d0-container, .framer-dyu9x .framer-3alov3-container, .framer-dyu9x .framer-nxvo5v-container, .framer-dyu9x .framer-bedgyj-container, .framer-dyu9x .framer-1axhf98-container, .framer-dyu9x .framer-1w1ubmg-container, .framer-dyu9x .framer-1h1ibco-container, .framer-dyu9x .framer-wyxmaw-container, .framer-dyu9x .framer-rf20a-container, .framer-dyu9x .framer-1hcg0uv-container, .framer-dyu9x .framer-11ugg9l-container, .framer-dyu9x .framer-ito0d3-container, .framer-dyu9x .framer-eynql3-container, .framer-dyu9x .framer-1ydvuev-container, .framer-dyu9x .framer-sid8z5-container, .framer-dyu9x .framer-18xm2ik-container, .framer-dyu9x .framer-19ws4tp-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-dyu9x .framer-n2hp4g, .framer-dyu9x .framer-13yrgnt, .framer-dyu9x .framer-5rv42d, .framer-dyu9x .framer-13c0p70 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dyu9x .framer-1kyxz7m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dyu9x .framer-xp3c4g, .framer-dyu9x .framer-ljkd7j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dyu9x .framer-1ytxc6j-container, .framer-dyu9x .framer-sraifb-container, .framer-dyu9x .framer-1c87cjg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dyu9x .framer-8ne2bi, .framer-dyu9x .framer-1crom9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dyu9x .framer-1p3uxnm, .framer-dyu9x .framer-65jevv, .framer-dyu9x .framer-fo1i9m, .framer-dyu9x .framer-fyc2x0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 60px; }\",\".framer-dyu9x .framer-1238nrr-container { flex: none; height: auto; position: relative; width: 500px; }\",\".framer-dyu9x .framer-1xg8wzd { 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-dyu9x .framer-1nco466, .framer-dyu9x .framer-jjt0ce { flex: none; height: 50px; overflow: hidden; position: relative; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dyu9x.framer-1n7kitm, .framer-dyu9x .framer-1wdeg2p, .framer-dyu9x .framer-1id5yo0, .framer-dyu9x .framer-kon951, .framer-dyu9x .framer-znyka6, .framer-dyu9x .framer-1oh22p9, .framer-dyu9x .framer-1kyxz7m, .framer-dyu9x .framer-xp3c4g, .framer-dyu9x .framer-8ne2bi, .framer-dyu9x .framer-ljkd7j, .framer-dyu9x .framer-1crom9s, .framer-dyu9x .framer-1xg8wzd { gap: 0px; } .framer-dyu9x.framer-1n7kitm > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-dyu9x.framer-1n7kitm > :first-child, .framer-dyu9x .framer-znyka6 > :first-child, .framer-dyu9x .framer-1oh22p9 > :first-child, .framer-dyu9x .framer-1kyxz7m > :first-child, .framer-dyu9x .framer-xp3c4g > :first-child, .framer-dyu9x .framer-ljkd7j > :first-child { margin-top: 0px; } .framer-dyu9x.framer-1n7kitm > :last-child, .framer-dyu9x .framer-znyka6 > :last-child, .framer-dyu9x .framer-1oh22p9 > :last-child, .framer-dyu9x .framer-1kyxz7m > :last-child, .framer-dyu9x .framer-xp3c4g > :last-child, .framer-dyu9x .framer-ljkd7j > :last-child { margin-bottom: 0px; } .framer-dyu9x .framer-1wdeg2p > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-dyu9x .framer-1wdeg2p > :first-child, .framer-dyu9x .framer-kon951 > :first-child, .framer-dyu9x .framer-8ne2bi > :first-child, .framer-dyu9x .framer-1crom9s > :first-child, .framer-dyu9x .framer-1xg8wzd > :first-child { margin-left: 0px; } .framer-dyu9x .framer-1wdeg2p > :last-child, .framer-dyu9x .framer-kon951 > :last-child, .framer-dyu9x .framer-8ne2bi > :last-child, .framer-dyu9x .framer-1crom9s > :last-child, .framer-dyu9x .framer-1xg8wzd > :last-child { margin-right: 0px; } .framer-dyu9x .framer-1id5yo0 > * { margin-bottom: var(--2dswu9); margin-left: var(--1yl41mq); margin-right: var(--1yl41mq); margin-top: var(--2dswu9); } .framer-dyu9x .framer-1id5yo0 > :first-child { margin-left: 0px; margin-top: 0px; } .framer-dyu9x .framer-1id5yo0 > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-dyu9x .framer-kon951 > *, .framer-dyu9x .framer-1xg8wzd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dyu9x .framer-znyka6 > *, .framer-dyu9x .framer-1kyxz7m > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-dyu9x .framer-1oh22p9 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-dyu9x .framer-xp3c4g > *, .framer-dyu9x .framer-ljkd7j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dyu9x .framer-8ne2bi > *, .framer-dyu9x .framer-1crom9s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2096\n * @framerIntrinsicWidth 1160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VqoXBiYFV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OfQPybvX6\":\"topPadding\",\"s4cVwuYnf\":\"direction\",\"v1sp7DPu1\":\"distribute\",\"gFhRVpQS5\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz_hnGZif0=withCSS(Component,css,\"framer-dyu9x\");export default Framerz_hnGZif0;Framerz_hnGZif0.displayName=\"Specs: GridLink\";Framerz_hnGZif0.defaultProps={height:2096,width:1160};addPropertyControls(Framerz_hnGZif0,{variant:{options:[\"R_no0495Y\",\"VqoXBiYFV\"],optionTitles:[\"Liquid-Cooled\",\"Air-Cooled\"],title:\"Variant\",type:ControlType.Enum},OfQPybvX6:{defaultValue:\"0px 0px 0px 0px\",title:\"Top Padding\",type:ControlType.Padding},s4cVwuYnf:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},v1sp7DPu1:{defaultValue:\"space-between\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},gFhRVpQS5:{defaultValue:10,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(Framerz_hnGZif0,[{explicitInter:true,fonts:[{family:\"MiSans Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/pAaQ8fxMmBWCZY5hy6E5iphso.woff2\"},{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\"}]},...TabButtonFonts,...DownloadFonts,...StatFonts,...AdaptivePowerGridLinkFonts,...AdaptivePowerGridLinkAirCooledFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz_hnGZif0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1160\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"2096\",\"framerVariables\":\"{\\\"OfQPybvX6\\\":\\\"topPadding\\\",\\\"s4cVwuYnf\\\":\\\"direction\\\",\\\"v1sp7DPu1\\\":\\\"distribute\\\",\\\"gFhRVpQS5\\\":\\\"gap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VqoXBiYFV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z_hnGZif0.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import FeatureCardImage from\"#framer/local/canvasComponent/dXStOSWoT/dXStOSWoT.js\";import FeatureCardEnergyModesGridLink from\"#framer/local/canvasComponent/Is8b2GKeK/Is8b2GKeK.js\";import Button from\"#framer/local/canvasComponent/mKE_9gftS/mKE_9gftS.js\";import FeatureCardVideo from\"#framer/local/canvasComponent/oc7BpZAic/oc7BpZAic.js\";import Navigation from\"#framer/local/canvasComponent/Qt7VuNfkH/Qt7VuNfkH.js\";import Footer from\"#framer/local/canvasComponent/vw4Waq9rZ/vw4Waq9rZ.js\";import Highlight from\"#framer/local/canvasComponent/w4Vz2tIXl/w4Vz2tIXl.js\";import ProductBanner from\"#framer/local/canvasComponent/YceDZ5xAk/YceDZ5xAk.js\";import SpecsGridLink from\"#framer/local/canvasComponent/z_hnGZif0/z_hnGZif0.js\";import metadataProvider from\"#framer/local/webPageMetadata/XbSht6mgE/XbSht6mgE.js\";const NavigationFonts=getFonts(Navigation);const ProductBannerFonts=getFonts(ProductBanner);const FeatureCardVideoFonts=getFonts(FeatureCardVideo);const FeatureCardImageFonts=getFonts(FeatureCardImage);const FeatureCardEnergyModesGridLinkFonts=getFonts(FeatureCardEnergyModesGridLink);const HighlightFonts=getFonts(Highlight);const VideoFonts=getFonts(Video);const CarouselFonts=getFonts(Carousel);const ButtonFonts=getFonts(Button);const SpecsGridLinkFonts=getFonts(SpecsGridLink);const FooterFonts=getFonts(Footer);const breakpoints={BEDbHXRA8:\"(min-width: 1200px)\",F6RdU93bx:\"(min-width: 810px) and (max-width: 1199px)\",S8JHml3yN:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-mlvDT\";const variantClassNames={BEDbHXRA8:\"framer-v-1px8bms\",F6RdU93bx:\"framer-v-1xgg89s\",S8JHml3yN:\"framer-v-1sl149w\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"BEDbHXRA8\",Phone:\"S8JHml3yN\",Tablet:\"F6RdU93bx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BEDbHXRA8\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-mlvDT`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-mlvDT`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"mNgy3l7Kv\");const ref2=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"ktVqyZmps\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"BEDbHXRA8\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1px8bms\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9l59z-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{variant:\"VrOojybxl\"},S8JHml3yN:{variant:\"a1U9yyvmM\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"qJAzpZvSk\",layoutId:\"qJAzpZvSk\",style:{width:\"100%\"},variant:\"l92jEugwR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qmzkpo-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{variant:\"pNyVQEa_U\"},S8JHml3yN:{variant:\"uNUJgB1_L\"}},children:/*#__PURE__*/_jsx(ProductBanner,{BAf1CCXDh:\"Get more output with less input, GridLink combines high-power EV charging with integrated storage delivering up to 300kW output. GridLink is the ultimate solution for flexible, reliable power \u2013 wherever you need it\",BHUgaMein:\"208VAC or 480VAC\",bZXAqvFx8:\"fill\",DDWBmed1s:\"Powering EVs, Empowering the Grid\",DqGkUEr_m:\"Output Voltage\",DTw4RL1z1:\"GridLink\",Eak95laLe:\"Max Output Power\",F63EyyJPC:\"fill\",GAdGjxKUR:\"Plugs\",height:\"100%\",id:\"mNgy3l7Kv\",IF150TxRu:addImageAlt({src:\"https://framerusercontent.com/images/pehfSgnEuSuaUxyM4I9p31L5AA.png\",srcSet:\"https://framerusercontent.com/images/pehfSgnEuSuaUxyM4I9p31L5AA.png?scale-down-to=512 512w,https://framerusercontent.com/images/pehfSgnEuSuaUxyM4I9p31L5AA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pehfSgnEuSuaUxyM4I9p31L5AA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pehfSgnEuSuaUxyM4I9p31L5AA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/pehfSgnEuSuaUxyM4I9p31L5AA.png 4760w\"},\"GridLink Logo\"),J3TXQdEeK:\"BatteryFull\",layoutId:\"mNgy3l7Kv\",owIsWSLcC:\"fill\",P3A6FNpyL:\"Input Voltage\",QVvgQq3cM:\"215 or 430 kWh\",S1TblOvzL:\"PlugCharging\",SkZrGpYj7:\"fill\",style:{height:\"100%\",width:\"100%\"},variant:\"w7jFW9IPl\",VS576y7pM:\"Battery Storage Capacity\",width:\"100%\",XbWam2MVk:\"Lightning\",XU1HLoGdm:\"300kW\",z_VPjn5Uw:\"https://framerusercontent.com/assets/r7hbFsMf82L9CaX50zHXFxyeKw.mp4\",z63HU9vg5:\"300-1000 Vdc\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-twy93k\",\"data-framer-name\":\"Section Internals\",name:\"Section Internals\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171fb0a\",\"data-framer-name\":\"Textbox\",name:\"Textbox\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Unparalleled Flexibility\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Unparalleled Flexibility\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Unparalleled Flexibility\"})}),className:\"framer-1y42ee\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Designed specifically for the North American market, GridLink adapts to any power environment with ease, supporting both 208VAC and 480VAC input\\xa0without hardware modifications. GridLink empowers you to grow and evolve without limitations.\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Designed specifically for the North American market, GridLink adapts to any power environment with ease, supporting both 208VAC and 480VAC input\\xa0without hardware modifications. GridLink empowers you to grow and evolve without limitations.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Designed specifically for the North American market, GridLink adapts to any power environment with ease, supporting both 208VAC and 480VAC input\\xa0without hardware modifications. GridLink empowers you to grow and evolve without limitations.\"})}),className:\"framer-18vg8d1\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3bs6x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:1322.8},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:1315.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 6 + 125px)\",y:1330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ry9vd6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S8JHml3yN:{DYkS5IA5g:\"flex-start\",variant:\"AfwYCbHfz\"}},children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/VolD2L8tdS1h4x4HHNYhZW6ZIk.mp4\",DYkS5IA5g:\"center\",ElRhxmWET:\"Crafted from industrial-grade alloy, GridLink is designed to withstand the harshest of environments in a sleek and thin-walled design\",height:\"100%\",id:\"s_DpdvWUV\",layoutId:\"s_DpdvWUV\",mLpGhXcgo:true,pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Build Quality\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:1927.8},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:1790.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 4 + 75px)\",y:1935,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nfip9g-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/DMrfRHUm7mOwEuppif8yjzPTQwI.mp4\",DYkS5IA5g:\"flex-start\",ElRhxmWET:\"Battery capacity at 215kWh with the option to upgrade and double it to 430kWh\",height:\"100%\",id:\"HaWP21aaS\",layoutId:\"HaWP21aaS\",mLpGhXcgo:false,pX2ktt2A4:\"center\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Modular Battery Capacity\",variant:\"AfwYCbHfz\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:1927.8},S8JHml3yN:{height:400,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:2265.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 2 + 25px)\",y:1935,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eqriid-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/n5M395j6kEiju4Brgt6liRbu9SI.mp4\",DYkS5IA5g:\"flex-start\",ElRhxmWET:\"Max Output Power\",height:\"100%\",id:\"uJRooDJa6\",layoutId:\"uJRooDJa6\",mLpGhXcgo:true,pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"300 kW\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"Utilize up to 120kW from the grid with 180kW from the battery for even more charging potential\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:2492.8},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:2690.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 2 + 25px)\",y:2500,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n480nl-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/6DwxVD5BFMQ2OULBlcxeKjqk.mp4\",DYkS5IA5g:\"flex-start\",ElRhxmWET:\"In-house developed liquid cooled 60kW power modules, configurable on 208V or 480V\",height:\"100%\",id:\"udDe9pfZe\",layoutId:\"udDe9pfZe\",mLpGhXcgo:false,pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Liquid Cooled Power Modules\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:2492.8},S8JHml3yN:{height:350,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:3165.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 4 + 75px)\",y:2500,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jw5v0t-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/eBB6i02SkB6nyLh921x9Iv1ToY.mp4\",DYkS5IA5g:\"center\",ElRhxmWET:\"GridLink features a 55-inch touchscreen display complete with an easy-to-navigate user interface with full advertising capabilities\",height:\"100%\",id:\"S06qthHpY\",layoutId:\"S06qthHpY\",mLpGhXcgo:true,pX2ktt2A4:\"flex-end\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"55 inch Touch Display\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"View charge status and manage battery functionality directly on GridlLink or in the cloud\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:3057.8},S8JHml3yN:{height:400,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:3540.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:3065,children:/*#__PURE__*/_jsx(Container,{className:\"framer-120wsjq-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/bNNDrRYPgyim4lCW3WY5EgFa1KI.mp4\",DYkS5IA5g:\"flex-end\",ElRhxmWET:\"With onboard fire suppression and safety measures\",height:\"100%\",id:\"QZ21vvFCU\",layoutId:\"QZ21vvFCU\",mLpGhXcgo:false,pX2ktt2A4:\"flex-end\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"In-House Developed Battery Modules\",variant:\"QCJuyUjSK\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:3057.8},S8JHml3yN:{height:400,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:3965.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:3065,children:/*#__PURE__*/_jsx(Container,{className:\"framer-38g62v-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/4lfOS29LhozfoYIerEkbvaLNtQ.mp4\",DYkS5IA5g:\"flex-end\",ElRhxmWET:\"extendable arms and wires\",height:\"100%\",id:\"h7AHg5l_F\",layoutId:\"h7AHg5l_F\",mLpGhXcgo:false,pX2ktt2A4:\"center\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Cable Management\",variant:\"AfwYCbHfz\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:3442.8},S8JHml3yN:{height:400,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:4390.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 6 + 125px)\",y:3450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4a642-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/SCtyIQPbd4mA98LFgebHKTqBUE.mp4\",DYkS5IA5g:\"flex-end\",ElRhxmWET:\"Available with CCS1 or NACS\",height:\"100%\",id:\"kJfEAChAf\",layoutId:\"kJfEAChAf\",mLpGhXcgo:false,pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Dual Ports with Configurable Plugs\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"\"})})})})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-148rr5d\",\"data-framer-name\":\"Section Functions\",name:\"Section Functions\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fe8j01\",\"data-framer-name\":\"Textbox\",name:\"Textbox\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Game-Changing Functionality\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Game-Changing Functionality\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Game-Changing Functionality\"})}),className:\"framer-1pb74et\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"GridLink's bidirectional energy flow and off-grid capabilities redefine energy management ensuring power for cars, buildings, and the grid at large\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"GridLink's bidirectional energy flow and off-grid capabilities redefine energy management ensuring power for cars, buildings, and the grid at large\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"GridLink's bidirectional energy flow and off-grid capabilities redefine energy management ensuring power for cars, buildings, and the grid at large\"})}),className:\"framer-1rtpdot\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqwj7k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:4305.6},S8JHml3yN:{height:400,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:5106.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 6 + 125px)\",y:4320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eo5eqi-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/sjTsiXV1ZBKRvEMDiRazi19lw48.mp4\",DYkS5IA5g:\"flex-start\",ElRhxmWET:\"Gridlink's advanced system ensures uninterrupted charging and power supply during blackouts\",height:\"100%\",id:\"iztD9uqAt\",layoutId:\"iztD9uqAt\",mLpGhXcgo:true,pX2ktt2A4:\"center\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Off-Grid Functions & Bi-directional Power\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:4910.6},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:5531.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 4 + 75px)\",y:4925,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pn77n8-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/NCKQU9KPHd1nYYh5ItpMgiUSruc.mp4\",DYkS5IA5g:\"flex-end\",ElRhxmWET:\"GridLink supports direct integration with solar power systems, enabling up to 60 kW of PV input\",height:\"100%\",id:\"uJqerUHTa\",layoutId:\"uJqerUHTa\",mLpGhXcgo:false,pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Photovoltaic Integration\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:4910.6},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:6006.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 2 + 25px)\",y:4925,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1muhh2b-container\",children:/*#__PURE__*/_jsx(FeatureCardImage,{AKsEaeF5v:\"\",Ann3dWPuH:addImageAlt({src:\"https://framerusercontent.com/images/k2B38aEif6Hvac6noyrk0iGw.jpg\",srcSet:\"https://framerusercontent.com/images/k2B38aEif6Hvac6noyrk0iGw.jpg?scale-down-to=1024 675w,https://framerusercontent.com/images/k2B38aEif6Hvac6noyrk0iGw.jpg 712w\"},\"\"),DYkS5IA5g:\"flex-start\",ElRhxmWET:\"GridLink's battery-to-grid- (B2G) capability allows stored energy to flow back into the grid, optimizing energy distribution and supporting grid stability while adding revenue potential\",height:\"100%\",id:\"yk1uA8eUK\",layoutId:\"yk1uA8eUK\",pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Battery-to-Grid\",variant:\"lOPbxcIv2\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1t4glwq\",\"data-framer-name\":\"Section Dynamic\",name:\"Section Dynamic\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ae1jd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:5690.6},S8JHml3yN:{height:500,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:6656.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 6 + 125px)\",y:5705,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7banv4-container\",children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/tvdjHDDV7X4bj0LaXGm4ZgY0eI.mp4\",DYkS5IA5g:\"flex-start\",ElRhxmWET:\"GridLink intelligently distributes power between multiple connectors, adjusting output to meet real-time demand\",height:\"100%\",id:\"NG_YK6N8j\",layoutId:\"NG_YK6N8j\",mLpGhXcgo:true,pX2ktt2A4:\"center\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Dynamic Power Allocation\",variant:\"AfwYCbHfz\",width:\"100%\",wyDNtPMy8:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:6295.6},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:7181.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:650,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 6 + 125px)\",y:6310,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3l3jni-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S8JHml3yN:{Q133mRbu8:true,ylnGIlcoZ:\"30px\"}},children:/*#__PURE__*/_jsx(FeatureCardEnergyModesGridLink,{height:\"100%\",id:\"G3fq1b9bg\",layoutId:\"G3fq1b9bg\",Q133mRbu8:false,style:{height:\"100%\",width:\"100%\"},variant:\"cOajEbwsL\",width:\"100%\",ylnGIlcoZ:\"60px\"})})})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-sj1pih\",\"data-framer-name\":\"Section Installation\",name:\"Section Installation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwwgon\",\"data-framer-name\":\"Textbox\",name:\"Textbox\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Seamless Installation and Commissioning\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Seamless Installation and Commissioning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"Seamless Installation and Commissioning\"})}),className:\"framer-1q4wv81\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mc7q8j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:7231.6},S8JHml3yN:{height:450,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:7911.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 2 + 25px)\",y:7252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-habdtp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S8JHml3yN:{variant:\"AfwYCbHfz\"}},children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/WBmvtDlsEWByPgQUv36UOzp2H0.mp4\",DYkS5IA5g:\"flex-start\",ElRhxmWET:\"About the size of a washer and dryer set\",height:\"100%\",id:\"etMhQNUfD\",layoutId:\"etMhQNUfD\",mLpGhXcgo:false,pX2ktt2A4:\"flex-start\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Small Footprint\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"GridLink fits across one parking space width in less than 24 square feet\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 3 + 50px)\",y:7231.6},S8JHml3yN:{height:300,width:\"max(min(100vw, 1200px) - 40px, 50px)\",y:8386.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(max((min(100vw, 1200px) - 165px) / 6, 50px) * 4 + 75px)\",y:7252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bgr12s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S8JHml3yN:{DYkS5IA5g:\"flex-start\"}},children:/*#__PURE__*/_jsx(FeatureCardVideo,{d4ejM3k1i:\"https://framerusercontent.com/assets/qUnfDYctpHGxeNQjkqZZZEg60.mp4\",DYkS5IA5g:\"flex-end\",ElRhxmWET:\"GridLink can be installed on a standard 60kVa industrial socket, dramatically reducing installation timelines\",height:\"100%\",id:\"g6j0tLInq\",layoutId:\"g6j0tLInq\",mLpGhXcgo:false,pX2ktt2A4:\"flex-end\",sNoyYjept:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{height:\"100%\",width:\"100%\"},ujkT3ynLv:\"Easy Deployment\",variant:\"PwVhEs6BC\",width:\"100%\",wyDNtPMy8:\"\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcpoue\",\"data-framer-name\":\"Carousel Card\",name:\"Carousel Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qnrdak\",\"data-framer-name\":\"Overlay\",name:\"Overlay\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14jfh4w\",\"data-framer-name\":\"Textbox\",name:\"Textbox\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\"},children:\"GridLink is ideal for\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\"},children:\"GridLink is ideal for\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\"},children:\"GridLink is ideal for\"})}),className:\"framer-2hex6v\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wnssex\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8015.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:8811.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c05l6c-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"BlUxe7TbQ\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Power\",layoutId:\"BlUxe7TbQ\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Power Constrained Areas\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8015.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:8811.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x16j04-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"yQ53Z0vT0\",JayWaZp3o:\"regular\",JjZJkLf1z:\"ChargingStation\",layoutId:\"yQ53Z0vT0\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Gas Stations &\\nConvenience Stores\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8015.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:8940.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dlkk4x-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"HXRg9fnnh\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Mountains\",layoutId:\"HXRg9fnnh\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"National Parks\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8144.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:8940.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gxyghw-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"IiirpPju9\",JayWaZp3o:\"regular\",JjZJkLf1z:\"ShoppingBagOpen\",layoutId:\"IiirpPju9\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Commercial Centers\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8144.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:9069.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10sao9o-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"Kp5L9x3_a\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Bus\",layoutId:\"Kp5L9x3_a\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Transportation Hubs\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8144.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:9069.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8423,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12el9eo-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"nLwFsPkRf\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Heartbeat\",layoutId:\"nLwFsPkRf\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Hospitals\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8273.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:9198.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8423,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y0vrw9-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"bQPoyrMZV\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Sun\",layoutId:\"bQPoyrMZV\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Solar Developments\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8273.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:9198.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8423,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvhiwo-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"raEciPkuI\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Buildings\",layoutId:\"raEciPkuI\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Mixed-Use Developments\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8273.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:9327.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8423,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yt54ur-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"p92YaGgGg\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Bed\",layoutId:\"p92YaGgGg\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Hotels\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{width:\"max((min(100vw, 1200px) - 240px) / 3, 50px)\",y:8402.6},S8JHml3yN:{width:\"max((min(100vw, 1200px) - 130px) / 2, 50px)\",y:9327.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"max((min(100vw, 1200px) - 260px) / 5, 50px)\",y:8423,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzkae7-container\",children:/*#__PURE__*/_jsx(Highlight,{ASCOdmx3Y:\"\",height:\"100%\",id:\"OmDVoMj8f\",JayWaZp3o:\"regular\",JjZJkLf1z:\"Warehouse\",layoutId:\"OmDVoMj8f\",R8Jmv4EGQ:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",style:{width:\"100%\"},utcGl2Uqp:\"var(--token-a1edba27-b9ef-4cc8-a6c1-6f17c703d45f, rgb(238, 238, 238))\",variant:\"aAGHlGWjZ\",width:\"100%\",ZHfu18cwv:\"Industrial Facilities\"})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwpzsa-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"gsYlGqLgJ\",layoutId:\"gsYlGqLgJ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19aymep-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NB6Wo9AaS\",isMixedBorderRadius:false,layoutId:\"NB6Wo9AaS\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/pR3SNl7RRRBMwTQE1Es1lujHBc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-4bmrvj\",\"data-framer-name\":\"Section End\",name:\"Section End\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(8811.6),pixelHeight:1200,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"min(350px, min(100vw, 1200px))\",src:\"https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png\",srcSet:\"https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png 5000w\"}},S8JHml3yN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(9686.2),pixelHeight:1200,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"min(350px, min(100vw, 1200px))\",src:\"https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png\",srcSet:\"https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png 5000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(8832),pixelHeight:1200,pixelWidth:5e3,positionX:\"center\",positionY:\"center\",sizes:\"min(350px, min(100vw, 1200px))\",src:\"https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png\",srcSet:\"https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jA5ZEE9pkIe9ZHo1LQ8VZzVNuQ.png 5000w\"},className:\"framer-yeg9nk\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"The future of flexible, resilient energy management and EV Charging\"})})},S8JHml3yN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"The future of flexible, resilient energy management and EV Charging\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01pU2FucyBTZW1pYm9sZA==\",\"--framer-font-family\":'\"MiSans Semibold\", \"MiSans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-95630a29-126c-439d-94ad-7cfd36729aef, rgb(60, 64, 67))\"},children:\"The future of flexible, resilient energy management and EV Charging\"})}),className:\"framer-15q4ix7\",fonts:[\"CUSTOM;MiSans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SROfNVxN_\"},implicitPathVariables:undefined},{href:{webPageId:\"SROfNVxN_\"},implicitPathVariables:undefined},{href:{webPageId:\"SROfNVxN_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:9037.6},S8JHml3yN:{y:9906.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:9064,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wu2s52-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{LqrYfx7BA:resolvedLinks[1]},S8JHml3yN:{LqrYfx7BA:resolvedLinks[2],variant:\"V9YgjpkCe\"}},children:/*#__PURE__*/_jsx(Button,{bm1OTe3NR:90,g1zRSKbn9:true,height:\"100%\",Htoq0ctsM:\"fill\",id:\"oBLiUrCIn\",layoutId:\"oBLiUrCIn\",LqrYfx7BA:resolvedLinks[0],Rk6NvVi0O:\"Get in touch with our sales team!\",Uw8MR0cY5:\"var(--token-a7848229-a5bb-47f9-99ec-601d79a048b5, rgb(34, 34, 34))\",variant:\"iWW0bCE6g\",width:\"100%\",xj8TI7XIs:\"PaperPlane\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-125lfuk\",\"data-framer-name\":\"Specs Card\",name:\"Specs Card\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:9287.6},S8JHml3yN:{y:10156.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2096,width:\"calc(min(100vw, 1200px) - 40px)\",y:9314,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dqoy1f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{OfQPybvX6:\"100px 0px 0px 0px\"},S8JHml3yN:{gFhRVpQS5:30,OfQPybvX6:\"100px 0px 0px 0px\",s4cVwuYnf:\"column\",v1sp7DPu1:\"center\"}},children:/*#__PURE__*/_jsx(SpecsGridLink,{gFhRVpQS5:10,height:\"100%\",id:\"r4nMZ5pNa\",layoutId:\"r4nMZ5pNa\",OfQPybvX6:\"0px 0px 0px 0px\",s4cVwuYnf:\"row\",style:{width:\"100%\"},v1sp7DPu1:\"space-between\",variant:\"VqoXBiYFV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{y:11583.6},S8JHml3yN:{y:12452.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:529,width:\"100vw\",y:11610,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tjhv9c-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F6RdU93bx:{variant:\"IfsaczdPy\"},S8JHml3yN:{variant:\"JeMzjwOI7\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ktVqyZmps\",layoutId:\"ktVqyZmps\",OO4kIoTTt:ref3,style:{width:\"100%\"},variant:\"Oj2nkKz8s\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-mlvDT { background: var(--token-5ec1b11e-2bef-41a5-8123-248d7f247cb0, rgb(255, 255, 255)); }`,\".framer-mlvDT.framer-7ca6nj, .framer-mlvDT .framer-7ca6nj { display: block; }\",\".framer-mlvDT.framer-1px8bms { align-content: center; align-items: center; background-color: var(--token-5ec1b11e-2bef-41a5-8123-248d7f247cb0, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-mlvDT .framer-1q9l59z-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-mlvDT .framer-qmzkpo-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-mlvDT .framer-twy93k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 200px 20px 200px 20px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-171fb0a, .framer-mlvDT .framer-fe8j01, .framer-mlvDT .framer-1jwwgon { 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-mlvDT .framer-1y42ee, .framer-mlvDT .framer-1pb74et, .framer-mlvDT .framer-1q4wv81 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-mlvDT .framer-18vg8d1, .framer-mlvDT .framer-1rtpdot { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-mlvDT .framer-c3bs6x, .framer-mlvDT .framer-1sqwj7k, .framer-mlvDT .framer-14ae1jd, .framer-mlvDT .framer-1mc7q8j { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-1ry9vd6-container, .framer-mlvDT .framer-eo5eqi-container, .framer-mlvDT .framer-7banv4-container { align-self: start; flex: none; grid-column: 1 / -1; height: 580px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-nfip9g-container, .framer-mlvDT .framer-jw5v0t-container { align-self: start; flex: none; grid-column: auto / span 4; height: 540px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-eqriid-container, .framer-mlvDT .framer-1n480nl-container { align-self: start; flex: none; grid-column: auto / span 2; height: 540px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-120wsjq-container, .framer-mlvDT .framer-38g62v-container { align-self: start; flex: none; grid-column: auto / span 3; height: 360px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-u4a642-container { align-self: start; flex: none; grid-column: 1 / -1; height: 540px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-148rr5d, .framer-mlvDT .framer-1t4glwq, .framer-mlvDT .framer-sj1pih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 200px 20px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-1pn77n8-container, .framer-mlvDT .framer-bgr12s-container { align-self: start; flex: none; grid-column: auto / span 4; height: 580px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-1muhh2b-container, .framer-mlvDT .framer-habdtp-container { align-self: start; flex: none; grid-column: auto / span 2; height: 580px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-3l3jni-container { align-self: start; flex: none; grid-column: 1 / -1; height: 650px; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-1qcpoue { 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: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mlvDT .framer-qnrdak { background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-mlvDT .framer-14jfh4w { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: -1px; overflow: hidden; padding: 90px; position: absolute; width: 100%; }\",\".framer-mlvDT .framer-2hex6v { --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-mlvDT .framer-wnssex { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-c05l6c-container, .framer-mlvDT .framer-x16j04-container, .framer-mlvDT .framer-1dlkk4x-container, .framer-mlvDT .framer-gxyghw-container, .framer-mlvDT .framer-10sao9o-container, .framer-mlvDT .framer-12el9eo-container, .framer-mlvDT .framer-y0vrw9-container, .framer-mlvDT .framer-1bvhiwo-container, .framer-mlvDT .framer-yt54ur-container, .framer-mlvDT .framer-1pzkae7-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-mlvDT .framer-1uwpzsa-container { flex: none; height: 750px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-19aymep-container { height: auto; position: relative; width: 1000px; }\",\".framer-mlvDT .framer-4bmrvj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 50px 200px 50px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-yeg9nk { flex: none; height: 90px; max-width: 100%; position: relative; width: 350px; }\",\".framer-mlvDT .framer-15q4ix7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-mlvDT .framer-1wu2s52-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mlvDT .framer-125lfuk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 200px 20px; position: relative; width: 100%; }\",\".framer-mlvDT .framer-dqoy1f-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-mlvDT .framer-tjhv9c-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mlvDT.framer-1px8bms, .framer-mlvDT .framer-twy93k, .framer-mlvDT .framer-171fb0a, .framer-mlvDT .framer-148rr5d, .framer-mlvDT .framer-fe8j01, .framer-mlvDT .framer-1t4glwq, .framer-mlvDT .framer-sj1pih, .framer-mlvDT .framer-1jwwgon, .framer-mlvDT .framer-1qcpoue, .framer-mlvDT .framer-14jfh4w, .framer-mlvDT .framer-4bmrvj, .framer-mlvDT .framer-125lfuk { gap: 0px; } .framer-mlvDT.framer-1px8bms > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mlvDT.framer-1px8bms > :first-child, .framer-mlvDT .framer-twy93k > :first-child, .framer-mlvDT .framer-171fb0a > :first-child, .framer-mlvDT .framer-148rr5d > :first-child, .framer-mlvDT .framer-fe8j01 > :first-child, .framer-mlvDT .framer-1t4glwq > :first-child, .framer-mlvDT .framer-sj1pih > :first-child, .framer-mlvDT .framer-1jwwgon > :first-child, .framer-mlvDT .framer-14jfh4w > :first-child, .framer-mlvDT .framer-4bmrvj > :first-child { margin-top: 0px; } .framer-mlvDT.framer-1px8bms > :last-child, .framer-mlvDT .framer-twy93k > :last-child, .framer-mlvDT .framer-171fb0a > :last-child, .framer-mlvDT .framer-148rr5d > :last-child, .framer-mlvDT .framer-fe8j01 > :last-child, .framer-mlvDT .framer-1t4glwq > :last-child, .framer-mlvDT .framer-sj1pih > :last-child, .framer-mlvDT .framer-1jwwgon > :last-child, .framer-mlvDT .framer-14jfh4w > :last-child, .framer-mlvDT .framer-4bmrvj > :last-child { margin-bottom: 0px; } .framer-mlvDT .framer-twy93k > *, .framer-mlvDT .framer-148rr5d > *, .framer-mlvDT .framer-1t4glwq > *, .framer-mlvDT .framer-sj1pih > *, .framer-mlvDT .framer-4bmrvj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-mlvDT .framer-171fb0a > *, .framer-mlvDT .framer-fe8j01 > *, .framer-mlvDT .framer-1jwwgon > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-mlvDT .framer-1qcpoue > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-mlvDT .framer-1qcpoue > :first-child, .framer-mlvDT .framer-125lfuk > :first-child { margin-left: 0px; } .framer-mlvDT .framer-1qcpoue > :last-child, .framer-mlvDT .framer-125lfuk > :last-child { margin-right: 0px; } .framer-mlvDT .framer-14jfh4w > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-mlvDT .framer-125lfuk > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-mlvDT { background: var(--token-5ec1b11e-2bef-41a5-8123-248d7f247cb0, rgb(255, 255, 255)); } .framer-mlvDT.framer-1px8bms { width: 810px; } .framer-mlvDT .framer-nfip9g-container, .framer-mlvDT .framer-eqriid-container, .framer-mlvDT .framer-1n480nl-container, .framer-mlvDT .framer-jw5v0t-container, .framer-mlvDT .framer-1pn77n8-container, .framer-mlvDT .framer-1muhh2b-container, .framer-mlvDT .framer-habdtp-container, .framer-mlvDT .framer-bgr12s-container { grid-column: auto / span 3; } .framer-mlvDT .framer-wnssex { grid-template-columns: repeat(3, minmax(50px, 1fr)); }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-mlvDT { background: var(--token-5ec1b11e-2bef-41a5-8123-248d7f247cb0, rgb(255, 255, 255)); } .framer-mlvDT.framer-1px8bms { width: 390px; } .framer-mlvDT .framer-c3bs6x, .framer-mlvDT .framer-1sqwj7k, .framer-mlvDT .framer-14ae1jd, .framer-mlvDT .framer-1mc7q8j { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-mlvDT .framer-1ry9vd6-container, .framer-mlvDT .framer-3l3jni-container { height: 450px; } .framer-mlvDT .framer-nfip9g-container, .framer-mlvDT .framer-1n480nl-container, .framer-mlvDT .framer-1pn77n8-container, .framer-mlvDT .framer-1muhh2b-container, .framer-mlvDT .framer-habdtp-container { grid-column: auto / span 1; height: 450px; } .framer-mlvDT .framer-eqriid-container, .framer-mlvDT .framer-120wsjq-container, .framer-mlvDT .framer-38g62v-container { grid-column: auto / span 1; height: 400px; } .framer-mlvDT .framer-jw5v0t-container { grid-column: auto / span 1; height: 350px; } .framer-mlvDT .framer-u4a642-container, .framer-mlvDT .framer-eo5eqi-container { height: 400px; } .framer-mlvDT .framer-7banv4-container { height: 500px; } .framer-mlvDT .framer-bgr12s-container { grid-column: auto / span 1; height: 300px; } .framer-mlvDT .framer-14jfh4w { padding: 40px; } .framer-mlvDT .framer-wnssex { grid-template-columns: repeat(2, minmax(50px, 1fr)); }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12050\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"F6RdU93bx\":{\"layout\":[\"fixed\",\"auto\"]},\"S8JHml3yN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerXbSht6mgE=withCSS(Component,css,\"framer-mlvDT\");export default FramerXbSht6mgE;FramerXbSht6mgE.displayName=\"Product / Gridlink\";FramerXbSht6mgE.defaultProps={height:12050,width:1200};addFonts(FramerXbSht6mgE,[{explicitInter:true,fonts:[{family:\"MiSans Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/pAaQ8fxMmBWCZY5hy6E5iphso.woff2\"}]},...NavigationFonts,...ProductBannerFonts,...FeatureCardVideoFonts,...FeatureCardImageFonts,...FeatureCardEnergyModesGridLinkFonts,...HighlightFonts,...VideoFonts,...CarouselFonts,...ButtonFonts,...SpecsGridLinkFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXbSht6mgE\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"12050\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F6RdU93bx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S8JHml3yN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"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", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "AccordianRowFonts", "hJktFgpnm_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "overlay", "padding", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ylnGIlcoZ", "Q133mRbu8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "NPA1GIjD91pwky6z", "args", "NPA1GIjD9ck5qwh", "NPA1GIjD91551jxs", "NPA1GIjD91mxoczg", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerIs8b2GKeK", "withCSS", "Is8b2GKeK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SliderHandleFonts", "getFonts", "c08zi7azJ_default", "StatFonts", "QAqeLqpqK_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "FR9c75Myngf7mow", "args", "FR9c75Myn4t0yja", "FR9c75Myn1hccb6d", "FR9c75Mynmke8kv", "FR9c75Myn1rsddx", "FR9c75Myn16wlqb1", "FR9c75Myn1nkn2po", "ref1", "pe", "isDisplayed", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerOi_CNOC9f", "withCSS", "Oi_CNOC9f_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SliderHandleFonts", "getFonts", "c08zi7azJ_default", "StatFonts", "QAqeLqpqK_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "FR9c75Myn65pyzt", "args", "FR9c75Mynyltil6", "FR9c75Myn1lohgvi", "FR9c75Mynm9cdgw", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerwg4iXEQlV", "withCSS", "wg4iXEQlV_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TabButtonFonts", "getFonts", "P50TfUBNo_default", "DownloadFonts", "Download", "StatFonts", "QAqeLqpqK_default", "AdaptivePowerGridLinkFonts", "Oi_CNOC9f_default", "AdaptivePowerGridLinkAirCooledFonts", "wg4iXEQlV_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "direction", "distribute", "gap", "height", "id", "topPadding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "OfQPybvX6", "s4cVwuYnf", "v1sp7DPu1", "gFhRVpQS5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "VkEh8ag8uoyynl7", "args", "VkEh8ag8up631z1", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "css", "Framerz_hnGZif0", "withCSS", "z_hnGZif0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "Qt7VuNfkH_default", "ProductBannerFonts", "YceDZ5xAk_default", "FeatureCardVideoFonts", "oc7BpZAic_default", "FeatureCardImageFonts", "dXStOSWoT_default", "FeatureCardEnergyModesGridLinkFonts", "Is8b2GKeK_default", "HighlightFonts", "w4Vz2tIXl_default", "VideoFonts", "Video", "CarouselFonts", "Carousel", "ButtonFonts", "mKE_9gftS_default", "SpecsGridLinkFonts", "z_hnGZif0_default", "FooterFonts", "vw4Waq9rZ_default", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "elementId1", "ref3", "defaultLayoutId", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Qt7VuNfkH_default", "YceDZ5xAk_default", "x", "RichText2", "oc7BpZAic_default", "dXStOSWoT_default", "Is8b2GKeK_default", "w4Vz2tIXl_default", "Carousel", "Video", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "mKE_9gftS_default", "z_hnGZif0_default", "vw4Waq9rZ_default", "css", "FramerXbSht6mgE", "withCSS", "XbSht6mgE_default", "addFonts", "NavigationFonts", "ProductBannerFonts", "FeatureCardVideoFonts", "FeatureCardImageFonts", "FeatureCardEnergyModesGridLinkFonts", "HighlightFonts", "VideoFonts", "CarouselFonts", "ButtonFonts", "SpecsGridLinkFonts", "FooterFonts", "__FramerMetadata__"]
}
