{"version":3,"file":"FmNvxz4U-I7XHcyc998K2V6DBLWQdGJN0SyEDP3sdwM.C7cSLzgn.mjs","names":["addPropertyOverrides","enabledGestures","serializationHash","variantClassNames","transition1","animation","animation1","transition2","Transition","Variants","getProps","createLayoutDependency","Component","className","css","size","addPropertyOverrides","MotionDivWithFX","cycleOrder","serializationHash","variantClassNames","animation","transition1","transition2","transformTemplate1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","serializationHash","variantClassNames","transition1","transition2","humanReadableVariantMap","getProps","Component","className","css","fonts","css","className","Button4","Image","Material","PartnerLogos","ButtonPartner","BlueModule","PurpleModule","GreenModule","Button3","Material1","ButtonSolutions","ICONPlatform","CTAFooterBanner","Footer","LeapNavigation","LeapNavigationMobile","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/saWZHomn6CdsDZ6onYPn/eIUeVMAzqpvnf2FPYnmn/Classic_Counter.js","https:/framerusercontent.com/modules/HwDucjBKgwtrriRincCY/dAwDy5ae7AvRTJduASs5/FC4KSR44m.js","https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js","https:/framerusercontent.com/modules/CPq4i2NzFSdDfSTCNz6I/kXyO8FSkrTgiGJXlTcwX/jzGfSuw70.js","https:/framerusercontent.com/modules/BmshP3hOPbymgLZ0r4ZY/4wSAYvZrVj33CnbqjrF7/z6osMmzw8.js","https:/framerusercontent.com/modules/EOiuOnnvqMHsnwLhaPlq/ncE0oLOIvzM7zmCWpprf/aJfCpDNrL.js","https:/framerusercontent.com/modules/wDwg0hlVS01UHVxkuzme/9yQeyhK8fYk3nGBw9zoK/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";// Function to pad numbers with leading zeros and ensure trailing zeros\nconst padWithZeros=(number,intLength,decimalLength)=>{const[integer,decimal=\"\"]=String(number||\"\").split(\".\");const paddedInteger=integer.padStart(intLength,\"0\");const paddedDecimal=decimal.padEnd(decimalLength,\"0\");return decimalLength>0?`${paddedInteger}.${paddedDecimal}`:paddedInteger;};/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 300\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ClassicCounter({targetNumber=\"1000.00\",startValue=\"0.00\",speed=2,delay=0,font={font:{},color:\"#000\",fontSize:44},prefix=\"\",suffix=\"\",prefixColor=\"#000\",suffixColor=\"#000\"}){const parsedStartValue=parseFloat(startValue)||0;const parsedTargetNumber=parseFloat(targetNumber)||0;const parsedSpeed=parseFloat(speed)||2;const[currentDigits,setCurrentDigits]=useState([]);const[isVisible,setIsVisible]=useState(false);const[isAnimationStarted,setIsAnimationStarted]=useState(false);const containerRef=useRef(null);// Determine the number of decimal places in the input\nconst getDecimalPlaces=value=>{const decimalPart=String(value).split(\".\")[1]||\"\";return decimalPart.length;};const decimalPlaces=Math.max(getDecimalPlaces(startValue),getDecimalPlaces(targetNumber));// Use Intersection Observer to detect visibility\nuseEffect(()=>{const observer=new IntersectionObserver(([entry])=>setIsVisible(entry.isIntersecting),{threshold:.1});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);// Initialize digits with proper padding\nuseEffect(()=>{const[startInt]=String(parsedStartValue).split(\".\");const[targetInt]=String(parsedTargetNumber).split(\".\");const maxIntLength=Math.max(startInt.length,targetInt.length);const initialDigits=padWithZeros(parsedStartValue,maxIntLength,decimalPlaces).split(\"\");setCurrentDigits(initialDigits);},[parsedStartValue,parsedTargetNumber,decimalPlaces]);// Trigger the animation after the delay when visible\nuseEffect(()=>{if(!isVisible||isAnimationStarted)return;const delayTimeout=setTimeout(()=>{setIsAnimationStarted(true)// Start the animation after the delay\n;},delay*1e3);return()=>clearTimeout(delayTimeout);},[isVisible,delay,isAnimationStarted]);// Animate digits once the animation starts\nuseEffect(()=>{if(!isAnimationStarted)return;const[startInt]=String(parsedStartValue).split(\".\");const[targetInt]=String(parsedTargetNumber).split(\".\");const maxIntLength=Math.max(startInt.length,targetInt.length);const targetDigits=padWithZeros(parsedTargetNumber,maxIntLength,decimalPlaces);const startDigits=padWithZeros(parsedStartValue,maxIntLength,decimalPlaces);let startTime=null;const animateDigits=timestamp=>{if(!startTime)startTime=timestamp;const elapsed=(timestamp-startTime)/1e3;const progress=Math.min(elapsed/parsedSpeed,1);const newDigits=targetDigits.split(\"\").map((char,index)=>{if(char===\".\")return\".\"// Handle decimal points\n;const startDigit=parseInt(startDigits[index],10)||0;const endDigit=parseInt(char,10);const interpolatedValue=Math.floor(startDigit+progress*(endDigit-startDigit));return String(interpolatedValue);});setCurrentDigits(newDigits);if(progress<1){requestAnimationFrame(animateDigits);}};requestAnimationFrame(animateDigits);},[isAnimationStarted,parsedStartValue,parsedTargetNumber,parsedSpeed,decimalPlaces]);// Render the digits, including the decimal point\nconst renderDigit=(digit,index)=>{return /*#__PURE__*/_jsx(\"div\",{style:{...font.font,fontSize:font.fontSize||\"44px\",color:font.color||\"#000\",display:\"inline-block\",minWidth:`${font.fontSize*.6||26}px`,height:`${font.fontSize||44}px`,textAlign:\"center\",lineHeight:`${font.fontSize||44}px`},children:digit},index);};return /*#__PURE__*/_jsxs(\"div\",{ref:containerRef,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",...font.font,fontSize:font.fontSize||\"44px\",color:font.color||\"#000\"},children:[prefix&&/*#__PURE__*/_jsx(\"span\",{style:{color:prefixColor,...font.font,fontSize:font.fontSize||\"44px\",marginRight:\"4px\"},children:prefix}),currentDigits.map((digit,index)=>renderDigit(digit,index)),suffix&&/*#__PURE__*/_jsx(\"span\",{style:{color:suffixColor,...font.font,fontSize:font.fontSize||\"44px\",marginLeft:\"4px\"},children:suffix})]});}// Add Property Controls for Framer\naddPropertyControls(ClassicCounter,{targetNumber:{type:ControlType.String,title:\"Target Number\",defaultValue:\"1000.00\"},startValue:{type:ControlType.String,title:\"Start Value\",defaultValue:\"0.00\"},speed:{type:ControlType.Number,title:\"Speed (s)\",defaultValue:2,min:.1,max:10,step:.1},delay:{type:ControlType.Number,title:\"Delay (s)\",defaultValue:0,min:0,max:10,step:.1},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixColor:{type:ControlType.Color,title:\"Prefix Color\",defaultValue:\"#000\",hidden:({prefix})=>!prefix},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixColor:{type:ControlType.Color,title:\"Suffix Color\",defaultValue:\"#000\",hidden:({suffix})=>!suffix},font:{description:\"[Mr. Framer](https://mrframer.com), Get Free High Quality Framer Resources.\",type:ControlType.Object,title:\"Font\",controls:{font:{type:\"font\",title:\"Font Family\"},color:{type:ControlType.Color,defaultValue:\"#000\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:44}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ClassicCounter\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"300\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Classic_Counter.map","// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const enabledGestures={m1MH5i_8q:{hover:true}};const serializationHash=\"framer-FgtEq\";const variantClassNames={m1MH5i_8q:\"framer-v-ia8jlw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.25,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:18,delay:0,mass:1,stiffness:308,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"m1MH5i_8q\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"m1MH5i_8q-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B8UBtIU99\"},motionChild:true,nodeId:\"m1MH5i_8q\",openInNewTab:false,scopeId:\"FC4KSR44m\",children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-ia8jlw\",className,classNames)} framer-1g6cmq3`,\"data-framer-appear-id\":\"ia8jlw\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"m1MH5i_8q\",optimized:true,ref:refBinding,style:{backgroundColor:\"rgb(17, 17, 17)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({\"m1MH5i_8q-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Learn More\"})}),className:\"framer-afllmy\",\"data-framer-name\":\"Book a demo\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"g2ep6JSmP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\" >\"})}),className:\"framer-1jjbwbc\",\"data-framer-name\":\">\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"zUgRNRyNK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FgtEq.framer-1g6cmq3, .framer-FgtEq .framer-1g6cmq3 { display: block; }\",\".framer-FgtEq.framer-ia8jlw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-FgtEq .framer-afllmy, .framer-FgtEq .framer-1jjbwbc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FgtEq.framer-ia8jlw { gap: 0px; } .framer-FgtEq.framer-ia8jlw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-FgtEq.framer-ia8jlw > :first-child { margin-left: 0px; } .framer-FgtEq.framer-ia8jlw > :last-child { margin-right: 0px; } }\",\".framer-FgtEq.framer-v-ia8jlw.hover.framer-ia8jlw { gap: 8px; }\",\".framer-FgtEq.framer-v-ia8jlw.hover .framer-afllmy { order: 0; }\",\".framer-FgtEq.framer-v-ia8jlw.hover .framer-1jjbwbc { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FgtEq.framer-v-ia8jlw.hover.framer-ia8jlw { gap: 0px; } .framer-FgtEq.framer-v-ia8jlw.hover.framer-ia8jlw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-FgtEq.framer-v-ia8jlw.hover.framer-ia8jlw > :first-child { margin-left: 0px; } .framer-FgtEq.framer-v-ia8jlw.hover.framer-ia8jlw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 35\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"CtXwJSxlB\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFC4KSR44m=withCSS(Component,css,\"framer-FgtEq\");export default FramerFC4KSR44m;FramerFC4KSR44m.displayName=\"Button 3\";FramerFC4KSR44m.defaultProps={height:35,width:115};addFonts(FramerFC4KSR44m,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFC4KSR44m\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"115\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CtXwJSxlB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"35\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FC4KSR44m.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"AGOqTpdok\",\"cnd0t3oW_\",\"v8bpTS7Yv\"];const serializationHash=\"framer-N8CO0\";const variantClassNames={AGOqTpdok:\"framer-v-5jo9fk\",cnd0t3oW_:\"framer-v-m5n6pj\",v8bpTS7Yv:\"framer-v-pqdisz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={delay:.1,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"AGOqTpdok\",Mid:\"cnd0t3oW_\",Tablet:\"v8bpTS7Yv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"AGOqTpdok\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AGOqTpdok\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-5jo9fk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"AGOqTpdok\",ref:refBinding,style:{...style},...addPropertyOverrides({cnd0t3oW_:{\"data-framer-name\":\"Mid\"},v8bpTS7Yv:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bm2zi0-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WUMztRAZE-container\",nodeId:\"WUMztRAZE\",rendersWithMotion:true,scopeId:\"jzGfSuw70\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"WUMztRAZE\",layoutId:\"WUMztRAZE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oynyyn\",\"data-border\":true,\"data-framer-name\":\"Calcom\",layoutDependency:layoutDependency,layoutId:\"eXVs2z_Hq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7hzefm\",layoutDependency:layoutDependency,layoutId:\"CDOuF2UoE\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42.5,intrinsicWidth:200,pixelHeight:85,pixelWidth:400,src:\"https://framerusercontent.com/images/HXu7INaFiOElCRZqoaCH7oSMHsg.png\"},className:\"framer-17w47ye\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"I54xQJZJU\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-itgt9z\",\"data-border\":true,\"data-framer-name\":\"Crossnokaye\",layoutDependency:layoutDependency,layoutId:\"YgXSfYWIf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nrrsa7\",layoutDependency:layoutDependency,layoutId:\"NCWRFjXDw\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:512,pixelHeight:136,pixelWidth:1024,sizes:\"100px\",src:\"https://framerusercontent.com/images/mzrR2TQlvECNN0vdOMererANGc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mzrR2TQlvECNN0vdOMererANGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mzrR2TQlvECNN0vdOMererANGc.png 1024w\"},className:\"framer-yo91tj\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"SQf0puK6g\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9vc7eq\",\"data-border\":true,\"data-framer-name\":\"Samsung\",layoutDependency:layoutDependency,layoutId:\"iD3Bn5snO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15fqe7n\",layoutDependency:layoutDependency,layoutId:\"R0fIff6NN\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2773,intrinsicWidth:10091,pixelHeight:425,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"84px\",src:\"https://framerusercontent.com/images/EApNP90KWpMEyCUXkvLZYImsRYo.png\",srcSet:\"https://framerusercontent.com/images/EApNP90KWpMEyCUXkvLZYImsRYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/EApNP90KWpMEyCUXkvLZYImsRYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EApNP90KWpMEyCUXkvLZYImsRYo.png 1600w\"},className:\"framer-qvfkze\",\"data-framer-name\":\"Pearlx\",layoutDependency:layoutDependency,layoutId:\"g9ifJSLf_\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cfkfle\",\"data-border\":true,\"data-framer-name\":\"Carrier\",layoutDependency:layoutDependency,layoutId:\"duV5KxcM2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eecfrr\",layoutDependency:layoutDependency,layoutId:\"x0_0CHbpT\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:774,intrinsicWidth:1920,pixelHeight:774,pixelWidth:1920,src:\"https://framerusercontent.com/images/r9b066ly0TXnqFpLwdRe8oUeUfI.png\"},className:\"framer-123ct68\",\"data-framer-name\":\"Carrier logo black\",layoutDependency:layoutDependency,layoutId:\"yTCvu6VX2\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7lvl91\",\"data-border\":true,\"data-framer-name\":\"Sunbelt\",layoutDependency:layoutDependency,layoutId:\"dHBYDfdnl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:47,intrinsicWidth:215,pixelHeight:47,pixelWidth:215,src:\"https://framerusercontent.com/images/MwJUoOQ6Gbm6DAK38n5EcOxzkY.png\"},className:\"framer-11lhvu1\",\"data-framer-name\":\"Sunbelt\",layoutDependency:layoutDependency,layoutId:\"eU5LDmlrj\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cpoqdi\",\"data-border\":true,\"data-framer-name\":\"Resideo\",layoutDependency:layoutDependency,layoutId:\"fE7WY_B3W\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:142,intrinsicWidth:654,pixelHeight:142,pixelWidth:654,positionX:\"center\",positionY:\"center\",sizes:\"84px\",src:\"https://framerusercontent.com/images/omtkVmaDvFJG9gkftWSytF7SnM.png\",srcSet:\"https://framerusercontent.com/images/omtkVmaDvFJG9gkftWSytF7SnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/omtkVmaDvFJG9gkftWSytF7SnM.png 654w\"},className:\"framer-1mqvjxg\",\"data-framer-name\":\"Sunbelt\",layoutDependency:layoutDependency,layoutId:\"Sh9bqn38q\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7p1jb7\",\"data-border\":true,\"data-framer-name\":\"Lineage\",layoutDependency:layoutDependency,layoutId:\"UIAJUWzno\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kvpllk\",layoutDependency:layoutDependency,layoutId:\"QL8M0MkTm\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116.5,intrinsicWidth:458.5,pixelHeight:233,pixelWidth:917,sizes:\"94.4549px\",src:\"https://framerusercontent.com/images/7KSWKhcczBUj6QvD0B8DeYND09o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7KSWKhcczBUj6QvD0B8DeYND09o.png?scale-down-to=512 512w,https://framerusercontent.com/images/7KSWKhcczBUj6QvD0B8DeYND09o.png 917w\"},className:\"framer-1wg1h9u\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"S6ba9VkOr\",transformTemplate:transformTemplate3})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3eedz\",\"data-border\":true,\"data-framer-name\":\"evcs\",layoutDependency:layoutDependency,layoutId:\"MKNYm_8Sm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:275,intrinsicWidth:752,pixelHeight:550,pixelWidth:1504,sizes:\"95px\",src:\"https://framerusercontent.com/images/AkQ6aixm20LHIqthP6RuJuJ0l3Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AkQ6aixm20LHIqthP6RuJuJ0l3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/AkQ6aixm20LHIqthP6RuJuJ0l3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AkQ6aixm20LHIqthP6RuJuJ0l3Y.png 1504w\"},className:\"framer-1a97d8k\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"UZpOb6vVl\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11p5eu3\",\"data-border\":true,\"data-framer-name\":\"Synop\",layoutDependency:layoutDependency,layoutId:\"pXpzM1mrV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:589,pixelWidth:1262,positionX:\"center\",positionY:\"center\",sizes:\"92px\",src:\"https://framerusercontent.com/images/ZF9TWHsFcmnYTp8HSv4qTgiwVBY.png\",srcSet:\"https://framerusercontent.com/images/ZF9TWHsFcmnYTp8HSv4qTgiwVBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZF9TWHsFcmnYTp8HSv4qTgiwVBY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZF9TWHsFcmnYTp8HSv4qTgiwVBY.png 1262w\"},className:\"framer-1mdbie0\",\"data-framer-name\":\"Synop\",layoutDependency:layoutDependency,layoutId:\"wzuoHy0Yl\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3q915\",\"data-border\":true,\"data-framer-name\":\"Bovlabs\",layoutDependency:layoutDependency,layoutId:\"fT4BQ9aws\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1975,pixelWidth:5953,positionX:\"center\",positionY:\"center\",sizes:\"99px\",src:\"https://framerusercontent.com/images/BN0nmTzVrtzMd6H9BeqBdPs66Gg.png\",srcSet:\"https://framerusercontent.com/images/BN0nmTzVrtzMd6H9BeqBdPs66Gg.png?scale-down-to=512 512w,https://framerusercontent.com/images/BN0nmTzVrtzMd6H9BeqBdPs66Gg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BN0nmTzVrtzMd6H9BeqBdPs66Gg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BN0nmTzVrtzMd6H9BeqBdPs66Gg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/BN0nmTzVrtzMd6H9BeqBdPs66Gg.png 5953w\"},className:\"framer-1i7solc\",\"data-framer-name\":\"Bovlabs\",layoutDependency:layoutDependency,layoutId:\"YCrhIrXdl\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s9v0ag\",\"data-border\":true,\"data-framer-name\":\"MobilityHouse\",layoutDependency:layoutDependency,layoutId:\"qHI1HL1O_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:115,pixelWidth:899,positionX:\"center\",positionY:\"center\",sizes:\"99px\",src:\"https://framerusercontent.com/images/N2JvID8WHKFqGBHAaGaHqqWH8.png\",srcSet:\"https://framerusercontent.com/images/N2JvID8WHKFqGBHAaGaHqqWH8.png?scale-down-to=512 512w,https://framerusercontent.com/images/N2JvID8WHKFqGBHAaGaHqqWH8.png 899w\"},className:\"framer-o1d454\",\"data-framer-name\":\"MobilityHouse\",layoutDependency:layoutDependency,layoutId:\"bnAZuybNS\"})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3yhtfd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sTZlTfVu4-container\",nodeId:\"sTZlTfVu4\",rendersWithMotion:true,scopeId:\"jzGfSuw70\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"sTZlTfVu4\",layoutId:\"sTZlTfVu4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11bnish\",\"data-border\":true,\"data-framer-name\":\"Copper\",layoutDependency:layoutDependency,layoutId:\"IFIPBakcF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:342,pixelWidth:1184,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/S1E1qa8yZdohWpJ4HxaMckkxmY8.webp\",srcSet:\"https://framerusercontent.com/images/S1E1qa8yZdohWpJ4HxaMckkxmY8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/S1E1qa8yZdohWpJ4HxaMckkxmY8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/S1E1qa8yZdohWpJ4HxaMckkxmY8.webp 1184w\"},className:\"framer-17511ec\",layoutDependency:layoutDependency,layoutId:\"g1aGTED68\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tund83\",\"data-border\":true,\"data-framer-name\":\"Nuvve\",layoutDependency:layoutDependency,layoutId:\"Jf5ogcT0Y\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:2041,pixelHeight:500,pixelWidth:2041,sizes:\"84px\",src:\"https://framerusercontent.com/images/hq48cnddj9k8I3L4bUxSWlwwgEU.png\",srcSet:\"https://framerusercontent.com/images/hq48cnddj9k8I3L4bUxSWlwwgEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hq48cnddj9k8I3L4bUxSWlwwgEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hq48cnddj9k8I3L4bUxSWlwwgEU.png 2041w\"},className:\"framer-1uh7ojq\",\"data-framer-name\":\"Nuvve\",layoutDependency:layoutDependency,layoutId:\"UqGtyKPjO\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xu8u24\",\"data-border\":true,\"data-framer-name\":\"Optiwatt\",layoutDependency:layoutDependency,layoutId:\"ipaHdv2oR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98,intrinsicWidth:512,pixelHeight:196,pixelWidth:1024,sizes:\"84px\",src:\"https://framerusercontent.com/images/FuU1r1qfjoN5flkgMm9GbVlTSgA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FuU1r1qfjoN5flkgMm9GbVlTSgA.png?scale-down-to=512 512w,https://framerusercontent.com/images/FuU1r1qfjoN5flkgMm9GbVlTSgA.png 1024w\"},className:\"framer-jbgt9u\",\"data-framer-name\":\"Optiwatt\",layoutDependency:layoutDependency,layoutId:\"IDiNuE0u0\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsbl90\",\"data-border\":true,\"data-framer-name\":\"QCells\",layoutDependency:layoutDependency,layoutId:\"Nek8DNYbj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:83,intrinsicWidth:292,pixelHeight:83,pixelWidth:292,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TgIDdYOurQQ0rjQbY39X6WVRs8.png\"},className:\"framer-l6kiby\",\"data-framer-name\":\"QCells\",layoutDependency:layoutDependency,layoutId:\"C8uL8SK_T\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kdnbk6\",\"data-border\":true,\"data-framer-name\":\"Logical Buildings\",layoutDependency:layoutDependency,layoutId:\"lBgB_drEQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:82,intrinsicWidth:213.5,pixelHeight:164,pixelWidth:427,src:\"https://framerusercontent.com/images/EQHDFnx3gXQ9FwkOAxcJimipz8.png\"},className:\"framer-v3lq4v\",\"data-framer-name\":\"Logical Buildings\",layoutDependency:layoutDependency,layoutId:\"nnJ5cYZAt\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-410665\",\"data-border\":true,\"data-framer-name\":\"national grid\",layoutDependency:layoutDependency,layoutId:\"r6sDce5xd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:606,intrinsicWidth:2921,pixelHeight:606,pixelWidth:2921,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/7EjH05hYFX1LBubVrvwd9VgB9iU.png\",srcSet:\"https://framerusercontent.com/images/7EjH05hYFX1LBubVrvwd9VgB9iU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7EjH05hYFX1LBubVrvwd9VgB9iU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7EjH05hYFX1LBubVrvwd9VgB9iU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7EjH05hYFX1LBubVrvwd9VgB9iU.png 2921w\"},className:\"framer-131vkcx\",\"data-framer-name\":\"national grid\",layoutDependency:layoutDependency,layoutId:\"ZMfQQ9rGM\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-elpqit\",\"data-border\":true,\"data-framer-name\":\"gridpoint\",layoutDependency:layoutDependency,layoutId:\"zTvtlCqN4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:304,intrinsicWidth:667,pixelHeight:512,pixelWidth:1024,sizes:\"110px\",src:\"https://framerusercontent.com/images/zT6RMdXVzMOiz1UK3454OZTLsN8.png\",srcSet:\"https://framerusercontent.com/images/zT6RMdXVzMOiz1UK3454OZTLsN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zT6RMdXVzMOiz1UK3454OZTLsN8.png 1024w\"},className:\"framer-a1i652\",\"data-framer-name\":\"Gridpoint\",layoutDependency:layoutDependency,layoutId:\"n9XZBvFR9\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m2gis0\",\"data-border\":true,\"data-framer-name\":\"Therma\",layoutDependency:layoutDependency,layoutId:\"zQjmwhUNB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:132,pixelHeight:24,pixelWidth:132,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/c9aU7p3fLqRH0zQdac9zHZZ264.webp\"},className:\"framer-1ttohwi\",\"data-framer-name\":\"Therma\",layoutDependency:layoutDependency,layoutId:\"T4EfAWFu6\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yuxixf\",\"data-border\":true,\"data-framer-name\":\"PearlX\",layoutDependency:layoutDependency,layoutId:\"yqoM6SddJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:100,pixelHeight:49,pixelWidth:200,src:\"https://framerusercontent.com/images/VmpcVXpjzJt0BqX3TrWeTurr7g.png\"},className:\"framer-1fpaj3e\",\"data-framer-name\":\"Pearlx\",layoutDependency:layoutDependency,layoutId:\"vR9tORHnT\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ypcw4k\",\"data-border\":true,\"data-framer-name\":\"EnergyHub\",layoutDependency:layoutDependency,layoutId:\"eOamxazBT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1aioinc\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iWqWVI0Tw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95 19\"><path d=\"M 13.038 6.599 C 12.517 6.599 12.068 6.93 11.851 7.409 L 9.011 7.409 C 8.969 7.272 8.914 7.138 8.846 7.008 C 8.777 6.878 8.697 6.759 8.609 6.652 L 10.029 3.97 C 10.518 4.004 11.005 3.745 11.265 3.254 C 11.632 2.562 11.411 1.676 10.772 1.274 C 10.134 0.872 9.319 1.107 8.953 1.798 C 8.693 2.29 8.73 2.879 9.003 3.324 L 7.589 5.994 C 7.321 5.927 7.042 5.921 6.768 5.983 L 4.789 2.246 C 5.062 1.802 5.099 1.212 4.839 0.721 C 4.473 0.029 3.658 -0.206 3.02 0.196 C 2.381 0.598 2.161 1.485 2.527 2.176 C 2.787 2.668 3.274 2.927 3.763 2.892 L 5.742 6.629 C 5.556 6.856 5.421 7.124 5.341 7.41 L 2.513 7.41 C 2.295 6.931 1.846 6.601 1.326 6.601 C 0.594 6.601 0 7.253 0 8.056 C 0 8.86 0.594 9.512 1.326 9.512 C 1.847 9.512 2.296 9.181 2.513 8.702 L 5.353 8.702 C 5.395 8.839 5.449 8.973 5.518 9.103 C 5.587 9.233 5.667 9.352 5.754 9.46 L 4.334 12.142 C 3.846 12.107 3.359 12.366 3.098 12.858 C 2.732 13.549 2.953 14.435 3.592 14.837 C 4.23 15.239 5.045 15.005 5.411 14.313 C 5.671 13.821 5.633 13.232 5.361 12.787 L 6.775 10.117 C 7.042 10.184 7.322 10.191 7.595 10.128 L 9.574 13.865 C 9.302 14.31 9.265 14.899 9.525 15.39 C 9.891 16.082 10.705 16.317 11.344 15.915 C 11.982 15.513 12.203 14.626 11.837 13.935 C 11.577 13.443 11.09 13.184 10.601 13.219 L 8.622 9.482 C 8.808 9.255 8.942 8.987 9.023 8.701 L 11.851 8.701 C 12.068 9.18 12.517 9.51 13.038 9.51 C 13.77 9.51 14.364 8.859 14.364 8.055 C 14.364 7.251 13.77 6.599 13.038 6.599 Z\" fill=\"#111111\"></path><path d=\"M 13.038 6.599 C 12.517 6.599 12.068 6.93 11.851 7.409 L 9.011 7.409 C 8.969 7.272 8.914 7.138 8.846 7.008 C 8.777 6.878 8.697 6.759 8.609 6.652 L 10.029 3.97 C 10.518 4.004 11.005 3.745 11.265 3.254 C 11.632 2.562 11.411 1.676 10.772 1.274 C 10.134 0.872 9.319 1.107 8.953 1.798 C 8.693 2.29 8.73 2.879 9.003 3.324 L 7.589 5.994 C 7.321 5.927 7.042 5.921 6.768 5.983 L 4.789 2.246 C 5.062 1.802 5.099 1.212 4.839 0.721 C 4.473 0.029 3.658 -0.206 3.02 0.196 C 2.381 0.598 2.161 1.485 2.527 2.176 C 2.787 2.668 3.274 2.927 3.763 2.892 L 5.742 6.629 C 5.556 6.856 5.421 7.124 5.341 7.41 L 2.513 7.41 C 2.295 6.931 1.846 6.601 1.326 6.601 C 0.594 6.601 0 7.253 0 8.056 C 0 8.86 0.594 9.512 1.326 9.512 C 1.847 9.512 2.296 9.181 2.513 8.702 L 5.353 8.702 C 5.395 8.839 5.449 8.973 5.518 9.103 C 5.587 9.233 5.667 9.352 5.754 9.46 L 4.334 12.142 C 3.846 12.107 3.359 12.366 3.098 12.858 C 2.732 13.549 2.953 14.435 3.592 14.837 C 4.23 15.239 5.045 15.005 5.411 14.313 C 5.671 13.821 5.633 13.232 5.361 12.787 L 6.775 10.117 C 7.042 10.184 7.322 10.191 7.595 10.128 L 9.574 13.865 C 9.302 14.31 9.265 14.899 9.525 15.39 C 9.891 16.082 10.705 16.317 11.344 15.915 C 11.982 15.513 12.203 14.626 11.837 13.935 C 11.577 13.443 11.09 13.184 10.601 13.219 L 8.622 9.482 C 8.808 9.255 8.942 8.987 9.023 8.701 L 11.851 8.701 C 12.068 9.18 12.517 9.51 13.038 9.51 C 13.77 9.51 14.364 8.859 14.364 8.055 C 14.364 7.251 13.77 6.599 13.038 6.599 Z\" fill=\"#111111\"></path><path d=\"M 16.917 15.053 L 16.917 2.096 L 23.549 2.096 L 23.549 3.884 L 18.849 3.884 L 18.849 7.132 L 23.549 7.132 L 23.549 8.982 L 18.849 8.982 L 18.849 13.168 L 23.549 13.168 L 23.549 15.053 Z\" fill=\"#111111\"></path><path d=\"M 16.917 15.053 L 16.917 2.096 L 23.549 2.096 L 23.549 3.884 L 18.849 3.884 L 18.849 7.132 L 23.549 7.132 L 23.549 8.982 L 18.849 8.982 L 18.849 13.168 L 23.549 13.168 L 23.549 15.053 Z\" fill=\"#111111\"></path><path d=\"M 24.957 15.053 L 24.957 6.663 L 26.613 6.663 L 26.613 8.035 C 26.964 7.457 27.378 7.035 27.855 6.769 C 28.331 6.504 28.91 6.371 29.592 6.371 C 30.165 6.371 30.654 6.47 31.057 6.668 C 31.46 6.865 31.775 7.159 32.002 7.548 C 32.138 7.778 32.235 8.046 32.294 8.353 C 32.354 8.66 32.384 9.197 32.384 9.964 L 32.384 15.053 L 30.606 15.053 L 30.606 10.743 C 30.606 9.639 30.483 8.907 30.237 8.544 C 29.99 8.181 29.554 7.999 28.926 7.999 C 28.515 7.999 28.148 8.082 27.826 8.247 C 27.504 8.412 27.251 8.645 27.067 8.946 C 26.937 9.147 26.847 9.405 26.795 9.721 C 26.744 10.036 26.718 10.539 26.718 11.23 L 26.718 15.053 Z\" fill=\"#111111\"></path><path d=\"M 24.957 15.053 L 24.957 6.663 L 26.613 6.663 L 26.613 8.035 C 26.964 7.457 27.378 7.035 27.855 6.769 C 28.331 6.504 28.91 6.371 29.592 6.371 C 30.165 6.371 30.654 6.47 31.057 6.668 C 31.46 6.865 31.775 7.159 32.002 7.548 C 32.138 7.778 32.235 8.046 32.294 8.353 C 32.354 8.66 32.384 9.197 32.384 9.964 L 32.384 15.053 L 30.606 15.053 L 30.606 10.743 C 30.606 9.639 30.483 8.907 30.237 8.544 C 29.99 8.181 29.554 7.999 28.926 7.999 C 28.515 7.999 28.148 8.082 27.826 8.247 C 27.504 8.412 27.251 8.645 27.067 8.946 C 26.937 9.147 26.847 9.405 26.795 9.721 C 26.744 10.036 26.718 10.539 26.718 11.23 L 26.718 15.053 Z\" fill=\"#111111\"></path><path d=\"M 39.484 9.849 C 39.414 9.247 39.203 8.789 38.851 8.473 C 38.499 8.157 38.018 7.999 37.406 7.999 C 36.827 7.999 36.362 8.153 36.01 8.46 C 35.658 8.766 35.412 9.23 35.271 9.849 Z M 41.31 11.141 L 35.158 11.141 C 35.201 11.926 35.415 12.538 35.799 12.978 C 36.183 13.417 36.694 13.637 37.333 13.637 C 37.901 13.637 38.375 13.508 38.754 13.247 C 39.132 12.988 39.462 12.569 39.744 11.991 L 41.229 12.893 C 40.796 13.737 40.26 14.366 39.622 14.779 C 38.983 15.192 38.234 15.398 37.373 15.398 C 36.14 15.398 35.158 14.988 34.427 14.168 C 33.697 13.348 33.331 12.253 33.331 10.884 C 33.331 9.569 33.709 8.488 34.464 7.641 C 35.219 6.795 36.189 6.371 37.373 6.371 C 38.613 6.371 39.579 6.758 40.272 7.53 C 40.964 8.303 41.31 9.386 41.31 10.778 Z\" fill=\"#111111\"></path><path d=\"M 39.484 9.849 C 39.414 9.247 39.203 8.789 38.851 8.473 C 38.499 8.157 38.018 7.999 37.406 7.999 C 36.827 7.999 36.362 8.153 36.01 8.46 C 35.658 8.766 35.412 9.23 35.271 9.849 Z M 41.31 11.141 L 35.158 11.141 C 35.201 11.926 35.415 12.538 35.799 12.978 C 36.183 13.417 36.694 13.637 37.333 13.637 C 37.901 13.637 38.375 13.508 38.754 13.247 C 39.132 12.988 39.462 12.569 39.744 11.991 L 41.229 12.893 C 40.796 13.737 40.26 14.366 39.622 14.779 C 38.983 15.192 38.234 15.398 37.373 15.398 C 36.14 15.398 35.158 14.988 34.427 14.168 C 33.697 13.348 33.331 12.253 33.331 10.884 C 33.331 9.569 33.709 8.488 34.464 7.641 C 35.219 6.795 36.189 6.371 37.373 6.371 C 38.613 6.371 39.579 6.758 40.272 7.53 C 40.964 8.303 41.31 9.386 41.31 10.778 Z\" fill=\"#111111\"></path><path d=\"M 44.255 7.999 C 44.445 7.445 44.695 7.035 45.006 6.769 C 45.317 6.503 45.703 6.371 46.163 6.371 C 46.412 6.371 46.657 6.404 46.898 6.468 C 47.138 6.533 47.375 6.627 47.608 6.751 L 46.975 8.379 C 46.823 8.261 46.659 8.175 46.483 8.119 C 46.308 8.063 46.111 8.035 45.895 8.035 C 45.31 8.035 44.891 8.29 44.637 8.8 C 44.383 9.311 44.255 10.168 44.255 11.371 L 44.255 15.053 L 42.494 15.053 L 42.494 6.645 L 44.255 6.645 Z\" fill=\"#111111\"></path><path d=\"M 44.255 7.999 C 44.445 7.445 44.695 7.035 45.006 6.769 C 45.317 6.503 45.703 6.371 46.163 6.371 C 46.412 6.371 46.657 6.404 46.898 6.468 C 47.138 6.533 47.375 6.627 47.608 6.751 L 46.975 8.379 C 46.823 8.261 46.659 8.175 46.483 8.119 C 46.308 8.063 46.111 8.035 45.895 8.035 C 45.31 8.035 44.891 8.29 44.637 8.8 C 44.383 9.311 44.255 10.168 44.255 11.371 L 44.255 15.053 L 42.494 15.053 L 42.494 6.645 L 44.255 6.645 Z\" fill=\"#111111\"></path><path d=\"M 53.581 10.831 C 53.581 9.964 53.396 9.288 53.025 8.804 C 52.655 8.321 52.136 8.078 51.471 8.078 C 50.805 8.078 50.282 8.328 49.9 8.827 C 49.519 9.326 49.328 10.017 49.328 10.902 C 49.328 11.793 49.512 12.48 49.88 12.964 C 50.248 13.448 50.768 13.69 51.438 13.69 C 52.072 13.69 52.587 13.427 52.985 12.902 C 53.383 12.377 53.581 11.687 53.581 10.831 Z M 55.294 14.531 C 55.294 16.171 54.994 17.326 54.393 17.996 C 53.792 18.665 52.781 19 51.357 19 C 50.297 19 49.45 18.757 48.817 18.27 C 48.184 17.783 47.861 17.136 47.851 16.327 L 49.742 16.319 C 49.769 16.678 49.923 16.953 50.205 17.141 C 50.486 17.33 50.881 17.425 51.39 17.425 C 52.142 17.425 52.683 17.245 53.013 16.885 C 53.343 16.525 53.511 15.923 53.517 15.08 L 53.533 13.965 C 53.219 14.448 52.852 14.808 52.433 15.044 C 52.013 15.28 51.533 15.398 50.992 15.398 C 49.905 15.398 49.048 14.992 48.423 14.181 C 47.798 13.37 47.486 12.259 47.486 10.849 C 47.486 9.51 47.805 8.428 48.443 7.605 C 49.082 6.782 49.915 6.371 50.943 6.371 C 51.571 6.371 52.108 6.514 52.554 6.8 C 53.001 7.086 53.327 7.498 53.533 8.035 L 53.533 6.662 L 55.294 6.662 Z\" fill=\"#111111\"></path><path d=\"M 53.581 10.831 C 53.581 9.964 53.396 9.288 53.025 8.804 C 52.655 8.321 52.136 8.078 51.471 8.078 C 50.805 8.078 50.282 8.328 49.9 8.827 C 49.519 9.326 49.328 10.017 49.328 10.902 C 49.328 11.793 49.512 12.48 49.88 12.964 C 50.248 13.448 50.768 13.69 51.438 13.69 C 52.072 13.69 52.587 13.427 52.985 12.902 C 53.383 12.377 53.581 11.687 53.581 10.831 Z M 55.294 14.531 C 55.294 16.171 54.994 17.326 54.393 17.996 C 53.792 18.665 52.781 19 51.357 19 C 50.297 19 49.45 18.757 48.817 18.27 C 48.184 17.783 47.861 17.136 47.851 16.327 L 49.742 16.319 C 49.769 16.678 49.923 16.953 50.205 17.141 C 50.486 17.33 50.881 17.425 51.39 17.425 C 52.142 17.425 52.683 17.245 53.013 16.885 C 53.343 16.525 53.511 15.923 53.517 15.08 L 53.533 13.965 C 53.219 14.448 52.852 14.808 52.433 15.044 C 52.013 15.28 51.533 15.398 50.992 15.398 C 49.905 15.398 49.048 14.992 48.423 14.181 C 47.798 13.37 47.486 12.259 47.486 10.849 C 47.486 9.51 47.805 8.428 48.443 7.605 C 49.082 6.782 49.915 6.371 50.943 6.371 C 51.571 6.371 52.108 6.514 52.554 6.8 C 53.001 7.086 53.327 7.498 53.533 8.035 L 53.533 6.662 L 55.294 6.662 Z\" fill=\"#111111\"></path><path d=\"M 58.603 19 L 56.793 19 L 58.904 14.327 L 56.079 6.663 L 58.027 6.663 L 59.439 11.009 C 59.521 11.274 59.592 11.543 59.655 11.818 C 59.717 12.092 59.767 12.371 59.805 12.654 C 59.875 12.359 60.043 11.891 60.308 11.247 L 60.349 11.141 L 62.248 6.663 L 64.156 6.663 Z\" fill=\"#111111\"></path><path d=\"M 58.603 19 L 56.793 19 L 58.904 14.327 L 56.079 6.663 L 58.027 6.663 L 59.439 11.009 C 59.521 11.274 59.592 11.543 59.655 11.818 C 59.717 12.092 59.767 12.371 59.805 12.654 C 59.875 12.359 60.043 11.891 60.308 11.247 L 60.349 11.141 L 62.248 6.663 L 64.156 6.663 Z\" fill=\"#111111\"></path><path d=\"M 64.937 15.053 L 64.937 2.096 L 66.869 2.096 L 66.869 6.875 L 72.713 6.875 L 72.713 2.096 L 74.645 2.096 L 74.645 15.053 L 72.713 15.053 L 72.713 8.76 L 66.869 8.76 L 66.869 15.053 Z\" fill=\"#111111\"></path><path d=\"M 64.937 15.053 L 64.937 2.096 L 66.869 2.096 L 66.869 6.875 L 72.713 6.875 L 72.713 2.096 L 74.645 2.096 L 74.645 15.053 L 72.713 15.053 L 72.713 8.76 L 66.869 8.76 L 66.869 15.053 Z\" fill=\"#111111\"></path><path d=\"M 83.739 6.695 L 83.739 15.085 L 82.083 15.085 L 82.083 13.713 C 81.732 14.291 81.317 14.714 80.841 14.979 C 80.365 15.245 79.786 15.377 79.104 15.377 C 78.531 15.377 78.042 15.278 77.639 15.081 C 77.236 14.883 76.921 14.59 76.693 14.2 C 76.558 13.97 76.461 13.702 76.401 13.395 C 76.342 13.088 76.312 12.551 76.312 11.784 L 76.312 6.695 L 78.089 6.695 L 78.089 11.005 C 78.089 12.109 78.213 12.841 78.459 13.204 C 78.705 13.567 79.142 13.749 79.77 13.749 C 80.181 13.749 80.548 13.666 80.87 13.501 C 81.192 13.336 81.445 13.103 81.629 12.802 C 81.758 12.601 81.849 12.343 81.901 12.027 C 81.952 11.712 81.978 11.209 81.978 10.518 L 81.978 6.695 Z\" fill=\"#111111\"></path><path d=\"M 83.739 6.695 L 83.739 15.085 L 82.083 15.085 L 82.083 13.713 C 81.732 14.291 81.317 14.714 80.841 14.979 C 80.365 15.245 79.786 15.377 79.104 15.377 C 78.531 15.377 78.042 15.278 77.639 15.081 C 77.236 14.883 76.921 14.59 76.693 14.2 C 76.558 13.97 76.461 13.702 76.401 13.395 C 76.342 13.088 76.312 12.551 76.312 11.784 L 76.312 6.695 L 78.089 6.695 L 78.089 11.005 C 78.089 12.109 78.213 12.841 78.459 13.204 C 78.705 13.567 79.142 13.749 79.77 13.749 C 80.181 13.749 80.548 13.666 80.87 13.501 C 81.192 13.336 81.445 13.103 81.629 12.802 C 81.758 12.601 81.849 12.343 81.901 12.027 C 81.952 11.712 81.978 11.209 81.978 10.518 L 81.978 6.695 Z\" fill=\"#111111\"></path><path d=\"M 87.122 10.846 C 87.122 11.692 87.322 12.374 87.72 12.893 C 88.118 13.412 88.633 13.672 89.264 13.672 C 89.922 13.672 90.432 13.432 90.793 12.954 C 91.154 12.476 91.334 11.797 91.334 10.916 C 91.334 10.041 91.146 9.358 90.769 8.865 C 90.391 8.372 89.874 8.125 89.216 8.125 C 88.558 8.125 88.045 8.365 87.676 8.843 C 87.307 9.321 87.122 9.989 87.122 10.846 Z M 87.178 2.121 L 87.178 8.082 C 87.382 7.557 87.706 7.152 88.153 6.866 C 88.6 6.58 89.133 6.437 89.754 6.437 C 90.764 6.437 91.584 6.844 92.213 7.657 C 92.841 8.471 93.156 9.54 93.156 10.863 C 93.156 12.258 92.847 13.355 92.229 14.157 C 91.611 14.959 90.764 15.36 89.689 15.36 C 89.155 15.36 88.68 15.243 88.265 15.01 C 87.851 14.777 87.488 14.421 87.178 13.943 L 87.178 15.019 L 85.437 15.019 L 85.437 2.121 Z\" fill=\"#111111\"></path><path d=\"M 87.122 10.846 C 87.122 11.692 87.322 12.374 87.72 12.893 C 88.118 13.412 88.633 13.672 89.264 13.672 C 89.922 13.672 90.432 13.432 90.793 12.954 C 91.154 12.476 91.334 11.797 91.334 10.916 C 91.334 10.041 91.146 9.358 90.769 8.865 C 90.391 8.372 89.874 8.125 89.216 8.125 C 88.558 8.125 88.045 8.365 87.676 8.843 C 87.307 9.321 87.122 9.989 87.122 10.846 Z M 87.178 2.121 L 87.178 8.082 C 87.382 7.557 87.706 7.152 88.153 6.866 C 88.6 6.58 89.133 6.437 89.754 6.437 C 90.764 6.437 91.584 6.844 92.213 7.657 C 92.841 8.471 93.156 9.54 93.156 10.863 C 93.156 12.258 92.847 13.355 92.229 14.157 C 91.611 14.959 90.764 15.36 89.689 15.36 C 89.155 15.36 88.68 15.243 88.265 15.01 C 87.851 14.777 87.488 14.421 87.178 13.943 L 87.178 15.019 L 85.437 15.019 L 85.437 2.121 Z\" fill=\"#111111\"></path><path d=\"M 93.859 6.374 C 93.903 6.37 93.941 6.362 93.974 6.348 C 94.007 6.334 94.034 6.311 94.055 6.28 C 94.075 6.248 94.085 6.205 94.085 6.151 C 94.085 6.104 94.077 6.067 94.062 6.039 C 94.046 6.011 94.025 5.988 93.998 5.971 C 93.971 5.954 93.941 5.942 93.907 5.936 C 93.874 5.93 93.839 5.927 93.802 5.927 L 93.532 5.927 L 93.532 6.378 L 93.727 6.378 C 93.771 6.378 93.815 6.377 93.859 6.374 Z M 93.385 7.093 L 93.385 5.791 L 93.843 5.791 C 93.979 5.791 94.077 5.821 94.139 5.883 C 94.201 5.945 94.232 6.034 94.232 6.151 C 94.232 6.207 94.224 6.257 94.209 6.299 C 94.193 6.342 94.171 6.378 94.144 6.407 C 94.116 6.436 94.084 6.459 94.048 6.477 C 94.012 6.494 93.973 6.506 93.932 6.514 L 94.288 7.093 L 94.116 7.093 L 93.78 6.514 L 93.532 6.514 L 93.532 7.093 Z M 93.412 5.551 C 93.305 5.602 93.213 5.671 93.135 5.757 C 93.058 5.844 92.997 5.946 92.954 6.063 C 92.91 6.18 92.888 6.306 92.888 6.442 C 92.888 6.577 92.91 6.703 92.954 6.82 C 92.997 6.937 93.058 7.039 93.135 7.126 C 93.213 7.213 93.305 7.282 93.412 7.332 C 93.518 7.382 93.634 7.408 93.76 7.408 C 93.884 7.408 93.999 7.382 94.106 7.332 C 94.213 7.282 94.305 7.213 94.383 7.126 C 94.46 7.039 94.521 6.937 94.566 6.82 C 94.61 6.703 94.632 6.577 94.632 6.442 C 94.632 6.306 94.61 6.18 94.566 6.063 C 94.521 5.946 94.46 5.844 94.383 5.757 C 94.305 5.671 94.213 5.602 94.106 5.551 C 93.999 5.501 93.884 5.476 93.76 5.476 C 93.634 5.476 93.518 5.501 93.412 5.551 Z M 94.169 5.402 C 94.294 5.459 94.404 5.539 94.496 5.641 C 94.589 5.743 94.662 5.862 94.714 6 C 94.767 6.137 94.793 6.284 94.793 6.442 C 94.793 6.601 94.767 6.749 94.714 6.885 C 94.662 7.022 94.589 7.14 94.496 7.241 C 94.404 7.342 94.294 7.421 94.169 7.479 C 94.043 7.536 93.906 7.565 93.76 7.565 C 93.614 7.565 93.478 7.536 93.352 7.479 C 93.226 7.421 93.117 7.342 93.024 7.241 C 92.931 7.14 92.859 7.022 92.806 6.885 C 92.753 6.749 92.727 6.601 92.727 6.442 C 92.727 6.284 92.753 6.137 92.806 6 C 92.859 5.862 92.931 5.743 93.024 5.641 C 93.117 5.539 93.226 5.459 93.352 5.402 C 93.478 5.344 93.614 5.315 93.76 5.315 C 93.906 5.315 94.043 5.344 94.169 5.402 Z\" fill=\"#111111\"></path></svg>',svgContentId:12579769874,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wopmng\",\"data-border\":true,\"data-framer-name\":\"Generac\",layoutDependency:layoutDependency,layoutId:\"NwIWvZASz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:277,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"92px\",src:\"https://framerusercontent.com/images/ymVYkGM6Yreu2bKIm1YPXfLCRpM.png\",srcSet:\"https://framerusercontent.com/images/ymVYkGM6Yreu2bKIm1YPXfLCRpM.png?scale-down-to=512 512w,https://framerusercontent.com/images/ymVYkGM6Yreu2bKIm1YPXfLCRpM.png 900w\"},className:\"framer-18h2znz\",\"data-framer-name\":\"Generac\",layoutDependency:layoutDependency,layoutId:\"CphwYqa_b\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ggzaqt\",\"data-border\":true,\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"XHfXN4urO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:2041,pixelHeight:21,pixelWidth:127,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ARCrUCMxnHZdInwHuN8ZtX9OBY.png\"},className:\"framer-p58xvw\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"k7PbP_jR9\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gft12r\",\"data-border\":true,\"data-framer-name\":\"ChargeNet\",layoutDependency:layoutDependency,layoutId:\"Y6qcoKive\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:2041,pixelHeight:145,pixelWidth:480,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5E0ENbbflijM65KwFy05nq8OjI.png\"},className:\"framer-1dp8y8u\",\"data-framer-name\":\"ChargeNet\",layoutDependency:layoutDependency,layoutId:\"guCVrTCJ5\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kmzunl\",\"data-border\":true,\"data-framer-name\":\"Bidirectional\",layoutDependency:layoutDependency,layoutId:\"n4Cu4IlF0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:2041,pixelHeight:418,pixelWidth:1557,positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/RdZO28qpkI2ENqi3gPrm0rJMAU.png\",srcSet:\"https://framerusercontent.com/images/RdZO28qpkI2ENqi3gPrm0rJMAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/RdZO28qpkI2ENqi3gPrm0rJMAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RdZO28qpkI2ENqi3gPrm0rJMAU.png 1557w\"},className:\"framer-pafpyk\",\"data-framer-name\":\"Bidirectional\",layoutDependency:layoutDependency,layoutId:\"n5s4AqFEB\",transformTemplate:transformTemplate1})})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nz34jx-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fgCsyzwKh-container\",nodeId:\"fgCsyzwKh\",rendersWithMotion:true,scopeId:\"jzGfSuw70\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"fgCsyzwKh\",layoutId:\"fgCsyzwKh\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gpxfhx\",\"data-border\":true,\"data-framer-name\":\"Flair\",layoutDependency:layoutDependency,layoutId:\"OiLLPySgc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lftiv0\",layoutDependency:layoutDependency,layoutId:\"fGwiW73G5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:419,pixelHeight:159,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7wm4b3T0mdC2PZGZ04n7SoUTV0.png\"},className:\"framer-14eidwn\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"CaCeCGDaG\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-obyxly\",\"data-border\":true,\"data-framer-name\":\"Windmill\",layoutDependency:layoutDependency,layoutId:\"Lwf394eip\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:143,pixelHeight:50,pixelWidth:286,src:\"https://framerusercontent.com/images/H7zlMSLVucxFooW1yUG6SHCRA.png\"},className:\"framer-1f8jhkm\",\"data-framer-name\":\"High_Res_Windmill_Logo_1_\",layoutDependency:layoutDependency,layoutId:\"SevVEFAwq\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dme465\",\"data-border\":true,\"data-framer-name\":\"Epic charging\",layoutDependency:layoutDependency,layoutId:\"JmqcLJWFo\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o387kf\",layoutDependency:layoutDependency,layoutId:\"SJdZmn5sk\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75,intrinsicWidth:419,pixelHeight:150,pixelWidth:838,sizes:\"100px\",src:\"https://framerusercontent.com/images/rzeQU3UEZ6phLexG3Ofop6cp0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rzeQU3UEZ6phLexG3Ofop6cp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/rzeQU3UEZ6phLexG3Ofop6cp0.png 838w\"},className:\"framer-qv3bkh\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"LRXnIQ44t\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nfly1x\",\"data-border\":true,\"data-framer-name\":\"sonnen\",layoutDependency:layoutDependency,layoutId:\"y0Kk1Rer0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:118,intrinsicWidth:427,pixelHeight:118,pixelWidth:427,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RxJzFItYIS6UTFXVlpm5W9ShE.png\"},className:\"framer-e33k2o\",\"data-framer-name\":\"Sonnen\",layoutDependency:layoutDependency,layoutId:\"XkIynESSF\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ttmaxm\",\"data-border\":true,\"data-framer-name\":\"ETB\",layoutDependency:layoutDependency,layoutId:\"ab3LQhuIy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4mn8yl\",layoutDependency:layoutDependency,layoutId:\"RbJqv1dtS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-672l9l\",\"data-framer-name\":\"Energy_Toolbase\",fill:\"black\",intrinsicHeight:119,intrinsicWidth:736,layoutDependency:layoutDependency,layoutId:\"axKpCSobo\",svg:'<svg width=\"736\" height=\"119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#111\"><path d=\"M126.8 59.35c0 7.793-6.277 14.088-14.049 14.088-7.771 0-14.048-6.295-14.048-14.088 0-7.794 6.277-14.088 14.048-14.088 7.772 0 14.049 6.294 14.049 14.088ZM15.31 98.617C-1.43 59.65 23.677 35.07 26.07 31.773c-4.783-2.398-8.37-6.594-9.864-11.69-13.75 14.688-25.407 48.26-.897 78.534ZM27.862 2.098c6.875-3.897 15.244-1.499 19.13 5.395 3.886 6.895 1.494 15.288-5.38 19.184-6.875 3.897-15.244 1.5-19.13-5.395-3.587-6.894-1.196-15.287 5.38-19.184Zm89.073 76.136c-24.81 34.471-58.585 25.479-62.77 25.179.3 5.096-1.195 10.491-5.08 14.688 19.727 3.896 54.698-3.298 67.85-39.867Zm-89.073 38.668c-6.576-3.897-8.967-12.29-5.081-19.184 3.885-6.595 12.255-8.993 19.13-5.096 6.575 3.897 8.967 12.29 5.08 19.184-3.885 6.594-12.553 8.992-19.129 5.096ZM78.975 59.35c0 9.892-8.07 17.985-17.934 17.985S43.107 69.242 43.107 59.35s8.07-17.985 17.934-17.985 17.934 8.093 17.934 17.985ZM49.085 1.199c42.145 4.496 51.112 38.367 52.607 42.264 4.184-2.997 9.864-4.196 14.945-2.997-5.679-19.184-29.293-46.161-67.552-39.267Zm123.446 52.755c-.598-1.798-1.794-3.596-3.288-5.095-2.691-2.698-5.978-4.197-9.864-4.197-3.886 0-7.174 1.499-9.864 4.197-1.494 1.498-2.69 3.297-3.288 5.095h26.304Zm186.813 4.497c0 3.896 1.495 7.194 4.185 9.891 2.69 2.698 5.978 4.197 9.864 4.197 3.885 0 7.173-1.499 9.863-4.197 2.691-2.697 4.185-5.995 4.185-9.891V35.37h9.266v37.167c0 6.296-2.391 11.99-6.875 16.487-4.483 4.496-9.864 6.894-16.439 6.894h-1.794v-9.292h1.794c3.885 0 7.173-1.199 9.863-4.197 1.495-1.498 2.392-2.997 2.989-4.496-3.885 2.698-8.07 3.897-12.852 3.897-6.277 0-11.956-2.398-16.44-6.894-4.484-4.496-6.875-9.892-6.875-16.486V35.37h9.266v23.08Zm-48.721 0c0 3.896 1.495 7.194 4.185 9.891 2.69 2.698 5.978 4.197 9.864 4.197 3.885 0 7.173-1.499 9.863-4.197 2.69-2.697 4.185-5.995 4.185-9.891 0-3.897-1.495-7.194-4.185-9.892-2.69-2.698-5.978-4.197-9.863-4.197-3.886 0-7.174 1.5-9.864 4.197-2.69 2.698-4.185 5.995-4.185 9.892Zm37.064 2.697v11.39c0 6.296-2.391 11.99-6.875 16.487-4.483 4.496-9.863 6.894-16.439 6.894h-1.794v-9.292h1.794c3.885 0 7.173-1.199 9.863-4.197 1.495-1.498 2.392-2.997 2.99-4.496-3.886 2.698-8.071 3.897-12.853 3.897-6.277 0-11.956-2.398-16.44-6.894-4.483-4.496-6.875-9.892-6.875-16.486 0-6.295 2.392-11.99 6.875-16.486 4.484-4.497 9.864-6.895 16.44-6.895 6.277 0 11.956 2.398 16.439 6.895 4.484 4.496 6.875 9.891 6.875 16.486v2.697Zm-78.91-7.194c-.598-1.798-1.793-3.596-3.288-5.095-2.69-2.698-5.978-4.197-9.864-4.197-3.885 0-7.173 1.499-9.864 4.197-1.494 1.498-2.69 3.297-3.287 5.095h26.303Zm-2.989 13.789h11.059c-1.195 2.698-2.69 5.096-4.782 7.194-4.484 4.496-9.864 6.894-16.44 6.894-6.277 0-11.956-2.398-16.439-6.894-4.484-4.496-6.875-9.892-6.875-16.486 0-6.295 2.391-11.99 6.875-16.486 4.483-4.497 9.863-6.895 16.439-6.895 6.277 0 11.956 2.398 16.44 6.895 4.483 4.496 6.875 9.891 6.875 16.486 0 1.498 0 3.297-.299 4.496h-35.869c.598 1.798 1.794 3.597 3.288 5.096 2.691 2.697 5.978 4.196 9.864 4.196 3.886 0 7.174-1.499 9.864-4.196-.299 0 0 0 0-.3Zm-72.035-9.292v23.08h-9.266v-23.08c0-6.295 2.391-11.99 6.874-16.486 4.484-4.497 9.864-6.895 16.44-6.895 6.576 0 11.956 2.398 16.44 6.895 4.483 4.496 6.874 9.891 6.874 16.486v23.08h-9.266v-23.08c0-3.897-1.494-7.194-4.184-9.892-2.69-2.698-5.978-4.197-9.864-4.197-3.886 0-7.174 1.5-9.864 4.197-2.989 2.698-4.184 5.995-4.184 9.892Zm96.246 0c0-3.897 1.494-7.194 4.185-9.892 2.69-2.698 5.978-4.197 9.863-4.197V35.07c-6.277 0-11.956 2.398-16.439 6.895-4.484 4.496-6.875 9.891-6.875 16.486v23.08h9.266v-23.08Zm-120.458 9.292h11.06c-1.196 2.698-2.69 5.096-4.783 7.194-4.483 4.496-9.863 6.894-16.439 6.894-6.576 0-11.956-2.398-16.44-6.894-4.483-4.496-6.875-9.892-6.875-16.486 0-6.295 2.392-11.99 6.875-16.486 4.484-4.497 9.864-6.895 16.44-6.895 6.576 0 11.956 2.398 16.439 6.895 4.484 4.496 6.875 9.891 6.875 16.486 0 1.498 0 3.297-.299 4.496h-35.868c.598 1.798 1.793 3.597 3.288 5.096 2.69 2.697 5.978 4.196 9.864 4.196 3.885 0 7.173-1.499 9.863-4.196-.298 0 0 0 0-.3ZM660.936 35.37h11.658c3.885 0 7.173 1.499 9.863 4.197 2.69 2.697 3.886 5.695 4.185 9.591h-9.266c-.299-2.398-2.092-4.196-4.483-4.196h-11.658c-2.391 0-4.483 2.098-4.483 4.496 0 2.698 2.092 4.496 4.483 4.496h12.554c3.886 0 7.174 1.5 9.864 4.197 2.69 2.698 4.185 5.995 4.185 9.892 0 3.896-1.495 7.194-4.185 9.891-2.69 2.698-5.978 4.197-9.864 4.197h-11.657c-3.886 0-7.174-1.499-9.864-4.197-2.69-2.697-3.885-5.695-4.184-9.592h9.266c.299 2.398 2.092 4.197 4.483 4.197h11.657c2.392 0 4.484-2.098 4.484-4.496 0-2.698-2.092-4.497-4.484-4.497h-12.554c-3.885 0-7.173-1.498-9.863-4.196-2.69-2.698-4.185-5.995-4.185-9.892 0-3.896 1.495-7.194 4.185-9.892 2.69-2.997 5.978-4.196 9.863-4.196Zm64.862 18.584c-.598-1.798-1.793-3.597-3.288-5.095-2.69-2.698-5.978-4.197-9.864-4.197-3.885 0-7.173 1.499-9.863 4.197-1.495 1.498-2.69 3.297-3.288 5.095h26.303Zm-2.69 13.789h11.059c-1.195 2.698-2.69 5.096-4.782 7.194-4.484 4.496-9.864 6.894-16.44 6.894-6.277 0-11.956-2.398-16.439-6.894-4.484-4.496-6.875-9.892-6.875-16.486 0-6.595 2.391-11.99 6.875-16.486 4.483-4.497 9.864-6.895 16.439-6.895 6.277 0 11.956 2.398 16.44 6.895 4.484 4.496 6.875 9.891 6.875 16.486 0 1.498 0 3.297-.299 4.496h-35.868c.597 1.798 1.793 3.597 3.288 5.096 2.69 2.697 5.978 4.196 9.863 4.196 3.886 0 7.174-1.499 9.864-4.196-.299 0-.299 0 0-.3ZM621.78 44.663c-3.885 0-7.173 1.498-9.864 4.196-2.69 2.697-4.184 5.995-4.184 9.891 0 3.897 1.494 7.194 4.184 9.892 2.691 2.698 5.979 4.197 9.864 4.197 3.886 0 7.174-1.5 9.864-4.197 2.69-2.698 4.185-5.995 4.185-9.892 0-3.896-1.495-7.194-4.185-9.891-2.69-2.998-5.978-4.197-9.864-4.197Zm14.049 32.372c-3.886 2.998-8.668 4.496-13.75 4.496-6.277 0-11.956-2.398-16.439-6.894-4.484-4.496-6.875-9.892-6.875-16.486 0-6.595 2.391-11.99 6.875-16.486 4.483-4.496 9.863-6.895 16.439-6.895 6.277 0 11.956 2.398 16.44 6.895 4.483 4.496 6.875 9.891 6.875 16.486v23.08h-9.266v-4.196h-.299Zm-63.965-32.373c-3.886 0-7.174 1.499-9.864 4.197-2.69 2.697-4.185 5.995-4.185 9.891 0 3.897 1.495 7.194 4.185 9.892 2.69 2.698 5.978 4.197 9.864 4.197 3.885 0 7.173-1.5 9.863-4.197 2.691-2.698 4.185-5.995 4.185-9.892 0-3.896-1.494-7.194-4.185-9.891-2.69-2.998-5.978-4.197-9.863-4.197Zm-13.75-20.083v15.287c3.886-2.997 8.668-4.496 13.75-4.496 6.277 0 11.956 2.398 16.439 6.894 4.484 4.496 6.875 9.892 6.875 16.486 0 6.595-2.391 11.99-6.875 16.487-4.483 4.496-9.864 6.894-16.439 6.894-6.277 0-11.956-2.398-16.44-6.894-4.483-4.497-6.875-9.892-6.875-16.487V24.58h9.565ZM507.899 35.37c6.277 0 11.956 2.398 16.439 6.894 4.484 4.496 6.875 9.892 6.875 16.486 0 6.595-2.391 11.99-6.875 16.487-4.483 4.496-9.864 6.894-16.439 6.894-6.277 0-11.956-2.398-16.44-6.894-4.484-4.497-6.875-9.892-6.875-16.487 0-6.594 2.391-11.99 6.875-16.486 4.782-4.796 10.163-6.894 16.44-6.894Zm0 9.292c-3.886 0-7.174 1.499-9.864 4.197-2.69 2.697-4.185 5.995-4.185 9.891 0 3.897 1.495 7.194 4.185 9.892 2.69 2.698 5.978 4.197 9.864 4.197 3.885 0 7.173-1.5 9.863-4.197 2.69-2.698 4.185-5.995 4.185-9.892 0-3.896-1.495-7.194-4.185-9.891-2.69-2.998-5.978-4.197-9.863-4.197Zm-48.721-9.292c6.277 0 11.956 2.398 16.439 6.894 4.484 4.496 6.875 9.892 6.875 16.486 0 6.595-2.391 11.99-6.875 16.487-4.483 4.496-9.864 6.894-16.439 6.894-6.277 0-11.956-2.398-16.44-6.894-4.484-4.497-6.875-9.892-6.875-16.487 0-6.594 2.391-11.99 6.875-16.486 4.782-4.796 10.163-6.894 16.44-6.894Zm0 9.292c-3.886 0-7.174 1.499-9.864 4.197-2.69 2.697-4.185 5.995-4.185 9.891 0 3.897 1.495 7.194 4.185 9.892 2.69 2.698 5.978 4.197 9.864 4.197 3.885 0 7.173-1.5 9.863-4.197 2.69-2.698 4.185-5.995 4.185-9.892 0-3.896-1.495-7.194-4.185-9.891-2.69-2.998-5.978-4.197-9.863-4.197ZM421.516 24.58v10.79h13.749v9.292h-13.749v13.789c0 3.896 1.494 7.194 4.185 9.891 2.69 2.698 5.978 4.197 9.863 4.197v9.292c-6.277 0-11.956-2.398-16.439-6.894-4.484-4.496-6.875-9.892-6.875-16.486V24.579h9.266Zm122.849 57.252h-9.266V24.579h9.266v57.252Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.96)\" d=\"M0 0h735v119H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cj6rq4\",\"data-border\":true,\"data-framer-name\":\"Sunnova\",layoutDependency:layoutDependency,layoutId:\"HPMCGvW_I\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b5tdfu\",\"data-framer-name\":\"sunnova_solar_energy_company_copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SZFjKl4yR\",opacity:1,style:{backgroundColor:\"rgba(104, 24, 24, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 14\"><path d=\"M 41.668 0.25 C 42.181 0.091 42.713 -0.015 43.248 0 C 44.048 -0.019 44.84 0.182 45.558 0.534 L 45.58 0.492 C 45.577 0.507 45.573 0.534 45.573 0.549 C 46.504 1.006 47.293 1.771 47.813 2.686 C 48.253 3.447 48.492 4.325 48.532 5.21 C 48.547 5.483 48.521 5.759 48.503 6.031 C 48.415 6.788 48.18 7.526 47.802 8.181 C 47.417 8.146 47.043 8.029 46.658 7.984 C 46.776 7.779 46.908 7.59 47.01 7.378 C 47.395 6.599 47.546 5.698 47.421 4.836 C 47.406 4.73 47.395 4.62 47.366 4.514 C 47.146 3.417 46.479 2.433 45.573 1.816 C 45.045 1.453 44.436 1.218 43.806 1.135 C 43.014 1.033 42.192 1.158 41.47 1.517 C 40.161 2.142 39.219 3.508 39.083 4.987 C 39.05 5.471 39.054 5.963 39.178 6.432 C 39.211 6.641 39.31 6.83 39.34 7.034 C 39.046 7.026 38.757 6.981 38.463 6.974 C 38.375 6.974 38.287 6.962 38.199 6.951 C 38.188 6.894 38.174 6.841 38.159 6.784 C 37.983 6.099 37.954 5.384 38.038 4.684 C 38.064 4.571 38.075 4.45 38.093 4.336 C 38.144 4.121 38.196 3.905 38.262 3.697 C 38.614 2.634 39.285 1.684 40.172 1.033 C 40.63 0.685 41.136 0.428 41.668 0.25 Z M 31.211 7.643 C 32.67 7.586 34.129 7.624 35.592 7.624 C 35.845 7.655 36.102 7.639 36.359 7.655 C 36.524 7.681 36.696 7.666 36.865 7.677 C 37.044 7.674 37.224 7.704 37.404 7.7 C 37.561 7.708 37.719 7.7 37.877 7.719 C 38.104 7.738 38.335 7.723 38.562 7.753 C 38.731 7.761 38.9 7.757 39.068 7.783 C 39.325 7.787 39.578 7.817 39.835 7.829 C 40.047 7.855 40.264 7.866 40.48 7.878 C 41.224 7.95 41.969 8.01 42.713 8.101 C 42.79 8.109 42.863 8.112 42.94 8.12 C 43.102 8.146 43.263 8.165 43.424 8.173 L 43.443 8.188 C 44.04 8.237 44.631 8.336 45.228 8.408 C 45.368 8.442 45.511 8.449 45.65 8.468 C 46.277 8.563 46.904 8.638 47.527 8.759 C 47.89 8.828 48.253 8.899 48.62 8.964 C 48.781 8.986 48.939 9.036 49.1 9.047 L 49.122 9.062 C 49.324 9.089 49.518 9.142 49.72 9.168 C 50.439 9.308 51.15 9.478 51.865 9.641 L 52.884 9.868 C 53.493 10.019 54.094 10.194 54.703 10.356 C 55.33 10.53 55.961 10.689 56.577 10.89 C 57.215 11.083 57.842 11.302 58.476 11.506 C 59.015 11.677 59.547 11.874 60.075 12.074 C 61.032 12.43 61.996 12.77 62.931 13.175 C 63.521 13.429 64.108 13.686 64.695 13.947 C 64.83 14.011 64.97 14.076 65.113 14.121 C 64.977 14.106 64.852 14.038 64.72 14.011 C 64.486 13.936 64.244 13.868 64.009 13.788 C 63.822 13.728 63.635 13.667 63.444 13.61 C 63.03 13.474 62.616 13.338 62.201 13.198 C 61.538 12.99 60.867 12.808 60.199 12.608 C 59.66 12.464 59.129 12.29 58.586 12.161 C 57.926 12.006 57.266 11.843 56.61 11.673 C 56.122 11.552 55.634 11.423 55.139 11.332 C 54.49 11.189 53.838 11.052 53.189 10.909 C 53.009 10.882 52.833 10.829 52.653 10.806 C 52.551 10.78 52.448 10.765 52.342 10.746 C 51.073 10.519 49.808 10.262 48.528 10.106 C 48.36 10.065 48.187 10.065 48.019 10.031 C 47.795 9.989 47.564 9.97 47.344 9.925 C 46.955 9.883 46.57 9.823 46.185 9.789 C 45.555 9.709 44.924 9.637 44.293 9.562 C 43.355 9.456 42.409 9.406 41.47 9.308 C 41.29 9.312 41.111 9.27 40.931 9.274 C 39.989 9.236 39.046 9.145 38.104 9.119 C 37.833 9.085 37.558 9.108 37.286 9.089 C 36.997 9.058 36.7 9.085 36.41 9.055 C 35.761 9.028 35.112 9.039 34.459 9.032 C 33.414 9.032 32.369 9.032 31.324 9.047 C 30.881 9.085 30.437 9.051 29.993 9.092 C 29.759 9.096 29.52 9.1 29.286 9.108 C 29.051 9.138 28.809 9.123 28.574 9.138 C 28.417 9.157 28.259 9.153 28.101 9.161 C 26.697 9.244 25.293 9.338 23.892 9.459 C 22.785 9.558 21.681 9.664 20.574 9.789 C 19.906 9.868 19.243 9.966 18.579 10.038 L 18.557 10.054 C 18.403 10.061 18.253 10.08 18.102 10.106 C 17.809 10.137 17.519 10.182 17.23 10.224 C 16.54 10.311 15.851 10.421 15.165 10.53 C 14.744 10.606 14.315 10.659 13.893 10.75 C 13.281 10.841 12.672 10.962 12.06 11.068 C 10.945 11.272 9.83 11.491 8.719 11.734 C 8.331 11.821 7.938 11.892 7.553 11.991 C 7.48 12.006 7.41 12.017 7.337 12.032 C 6.2 12.286 5.071 12.555 3.942 12.842 C 3.575 12.944 3.205 13.031 2.842 13.141 C 2.358 13.266 1.881 13.414 1.397 13.538 L 1.379 13.554 C 1.03 13.633 0.693 13.75 0.352 13.849 C 0.235 13.883 0.121 13.928 -0.004 13.924 C 0.422 13.762 0.836 13.569 1.261 13.406 C 1.995 13.107 2.746 12.85 3.494 12.589 C 5.394 11.926 7.319 11.329 9.262 10.81 C 10.461 10.489 11.667 10.194 12.877 9.917 C 13.394 9.804 13.915 9.686 14.436 9.588 L 14.454 9.573 C 14.854 9.505 15.246 9.414 15.642 9.335 C 16.845 9.108 18.051 8.888 19.265 8.71 L 19.287 8.703 C 19.591 8.672 19.888 8.608 20.192 8.574 C 21.208 8.434 22.227 8.309 23.247 8.181 C 23.8 8.12 24.358 8.067 24.911 8.006 C 25.942 7.927 26.968 7.836 28.002 7.779 C 28.175 7.749 28.354 7.768 28.527 7.745 C 28.736 7.726 28.945 7.742 29.154 7.715 C 29.352 7.7 29.55 7.711 29.748 7.692 C 30.019 7.666 30.294 7.692 30.565 7.658 C 30.778 7.647 30.994 7.647 31.211 7.643 Z\" fill=\"#111111\"></path><path d=\"M 2.299 0.946 C 2.875 0.443 3.63 0.231 4.367 0.174 C 5.207 0.114 6.079 0.185 6.857 0.545 C 7.326 0.761 7.762 1.094 8.012 1.566 C 8.199 1.918 8.301 2.312 8.367 2.705 L 6.868 2.91 C 6.813 2.459 6.6 2.009 6.222 1.756 C 5.735 1.426 5.126 1.404 4.565 1.434 C 4.096 1.472 3.593 1.566 3.241 1.915 C 2.988 2.149 2.886 2.535 2.996 2.864 C 3.069 3.095 3.249 3.273 3.454 3.39 C 3.652 3.492 3.865 3.553 4.074 3.625 C 5.141 3.965 6.244 4.177 7.286 4.594 C 7.803 4.794 8.261 5.184 8.503 5.702 C 8.73 6.205 8.756 6.788 8.65 7.325 C 8.543 7.87 8.243 8.366 7.832 8.725 C 7.396 9.119 6.853 9.365 6.292 9.494 C 5.661 9.637 5.012 9.656 4.371 9.603 C 3.623 9.535 2.864 9.304 2.284 8.794 C 1.683 8.271 1.346 7.492 1.221 6.705 C 1.731 6.633 2.24 6.542 2.75 6.47 C 2.816 6.977 3.014 7.488 3.399 7.825 C 3.839 8.215 4.433 8.351 5.001 8.362 C 5.496 8.366 6.013 8.309 6.453 8.056 C 6.736 7.889 6.985 7.632 7.084 7.306 C 7.172 7.023 7.165 6.69 7.007 6.432 C 6.882 6.228 6.684 6.081 6.468 5.997 C 5.907 5.77 5.309 5.645 4.726 5.486 C 4.129 5.324 3.531 5.161 2.959 4.923 C 2.442 4.707 1.976 4.329 1.72 3.81 C 1.467 3.322 1.426 2.736 1.54 2.198 C 1.639 1.706 1.925 1.264 2.299 0.946 Z M 22.202 0.692 C 22.719 0.344 23.338 0.178 23.951 0.159 C 24.508 0.132 25.073 0.212 25.59 0.431 C 26.026 0.609 26.437 0.885 26.708 1.286 C 26.994 1.699 27.122 2.206 27.174 2.705 C 27.251 3.394 27.218 4.086 27.225 4.775 L 27.225 7.061 C 26.715 7.095 26.206 7.136 25.7 7.189 L 25.7 4.832 C 25.692 4.298 25.718 3.765 25.67 3.235 C 25.634 2.887 25.571 2.524 25.373 2.229 C 25.095 1.797 24.603 1.551 24.112 1.498 C 23.613 1.449 23.093 1.514 22.638 1.744 C 22.29 1.926 21.978 2.202 21.795 2.565 C 21.52 3.099 21.454 3.712 21.435 4.306 L 21.435 7.708 C 20.922 7.783 20.412 7.863 19.903 7.954 L 19.903 0.363 L 21.289 0.363 L 21.289 1.631 C 21.527 1.264 21.835 0.935 22.202 0.692 Z M 31.878 0.446 C 32.52 0.163 33.235 0.102 33.924 0.189 C 34.485 0.265 35.039 0.469 35.497 0.817 C 35.948 1.162 36.227 1.703 36.333 2.259 C 36.45 2.864 36.45 3.485 36.454 4.098 L 36.454 6.868 C 35.944 6.845 35.431 6.834 34.921 6.822 L 34.921 4.416 C 34.918 3.939 34.94 3.458 34.863 2.985 C 34.819 2.679 34.723 2.372 34.529 2.126 C 34.225 1.725 33.733 1.517 33.249 1.483 C 32.765 1.453 32.263 1.525 31.827 1.756 C 31.511 1.926 31.229 2.176 31.049 2.497 C 30.833 2.876 30.741 3.315 30.69 3.746 C 30.639 4.189 30.657 4.639 30.653 5.082 L 30.653 6.856 C 30.144 6.871 29.634 6.902 29.128 6.921 C 29.132 4.73 29.124 2.543 29.132 0.352 C 29.594 0.356 30.056 0.352 30.514 0.352 C 30.51 0.772 30.514 1.192 30.514 1.612 C 30.855 1.112 31.321 0.689 31.878 0.446 Z M 59.583 0.636 C 60.119 0.363 60.713 0.242 61.303 0.185 C 61.827 0.144 62.359 0.14 62.883 0.193 C 63.415 0.254 63.95 0.375 64.416 0.655 C 64.764 0.859 65.091 1.146 65.263 1.525 C 65.402 1.846 65.45 2.202 65.49 2.55 C 65.556 3.171 65.531 3.795 65.534 4.419 C 65.534 5.218 65.531 6.016 65.545 6.811 C 65.556 7.257 65.564 7.704 65.608 8.146 C 65.648 8.506 65.751 8.854 65.901 9.179 C 65.938 9.259 65.985 9.331 66 9.418 L 64.416 9.418 C 64.247 9.07 64.152 8.691 64.112 8.309 C 63.448 8.884 62.663 9.327 61.816 9.516 C 61.307 9.634 60.775 9.652 60.258 9.599 C 59.642 9.535 59.019 9.327 58.538 8.911 C 58.161 8.598 57.896 8.164 57.787 7.677 C 57.68 7.185 57.695 6.663 57.849 6.186 C 58.04 5.619 58.447 5.142 58.942 4.836 C 59.345 4.582 59.803 4.45 60.262 4.355 C 60.859 4.223 61.468 4.181 62.069 4.086 C 62.718 3.988 63.367 3.871 63.991 3.659 C 63.998 3.36 64.016 3.054 63.961 2.758 C 63.914 2.475 63.818 2.183 63.609 1.983 C 63.316 1.691 62.916 1.54 62.52 1.476 C 62.08 1.404 61.629 1.411 61.189 1.464 C 60.793 1.521 60.379 1.638 60.082 1.934 C 59.759 2.259 59.598 2.713 59.481 3.156 L 57.977 2.951 C 58.091 2.406 58.3 1.877 58.634 1.434 C 58.883 1.097 59.213 0.825 59.583 0.636 Z M 61.138 5.517 C 60.65 5.608 60.119 5.683 59.741 6.046 C 59.33 6.425 59.235 7.091 59.477 7.594 C 59.682 8.01 60.108 8.264 60.54 8.355 C 61.417 8.532 62.381 8.351 63.1 7.787 C 63.455 7.507 63.73 7.114 63.848 6.667 C 64.009 6.088 63.991 5.479 63.991 4.885 C 63.07 5.237 62.099 5.369 61.138 5.517 Z M 10.461 6.236 L 10.461 0.363 L 11.986 0.363 L 11.986 5.123 C 11.986 5.619 11.99 6.118 12.038 6.614 C 12.067 6.89 12.104 7.174 12.232 7.424 C 12.408 7.768 12.723 8.018 13.072 8.158 C 13.493 8.328 13.963 8.332 14.403 8.245 C 14.927 8.143 15.418 7.851 15.752 7.416 C 16.034 7.011 16.141 6.508 16.196 6.024 C 16.247 5.57 16.232 5.112 16.232 4.658 C 16.232 3.228 16.236 1.794 16.232 0.363 L 17.776 0.363 C 17.772 3.019 17.776 5.679 17.776 8.336 C 17.318 8.426 16.863 8.521 16.405 8.619 C 16.405 8.445 16.401 8.275 16.405 8.101 C 16.254 8.321 16.082 8.521 15.895 8.706 C 15.869 8.737 15.833 8.741 15.796 8.752 C 14.78 8.979 13.768 9.221 12.764 9.486 C 12.694 9.501 12.624 9.539 12.555 9.512 C 11.821 9.323 11.117 8.854 10.784 8.135 C 10.531 7.537 10.483 6.875 10.461 6.236 Z M 48.638 0.363 L 50.263 0.363 C 50.893 2.115 51.517 3.871 52.144 5.626 C 52.381 6.274 52.593 6.932 52.778 7.598 C 53.101 6.444 53.544 5.331 53.948 4.204 C 54.413 2.921 54.879 1.642 55.345 0.363 C 55.873 0.367 56.401 0.363 56.929 0.367 C 55.788 3.386 54.644 6.406 53.5 9.425 L 52.939 9.425 C 52.829 9.429 52.727 9.388 52.624 9.361 C 52.408 9.301 52.195 9.244 51.979 9.183 C 50.86 6.243 49.749 3.303 48.638 0.363 Z\" fill=\"#111111\"></path></svg>',svgContentId:11726991336,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l30z2u\",\"data-border\":true,\"data-framer-name\":\"EV connect\",layoutDependency:layoutDependency,layoutId:\"SBzs1PE_C\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:203,intrinsicWidth:750,pixelHeight:406,pixelWidth:1500,sizes:\"110px\",src:\"https://framerusercontent.com/images/yO5eGtYwrsTOGMvWcKvBxGo3tXc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yO5eGtYwrsTOGMvWcKvBxGo3tXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yO5eGtYwrsTOGMvWcKvBxGo3tXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yO5eGtYwrsTOGMvWcKvBxGo3tXc.png 1500w\"},className:\"framer-z69xlz\",\"data-framer-name\":\"EV_Connect\",layoutDependency:layoutDependency,layoutId:\"awA19kgWn\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6tvoxt\",\"data-border\":true,\"data-framer-name\":\"Brainbox\",layoutDependency:layoutDependency,layoutId:\"h4JbpU7Ew\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pb231x\",\"data-framer-name\":\"Brainbox\",layoutDependency:layoutDependency,layoutId:\"b36muaah_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:42.5,intrinsicWidth:200,pixelHeight:120,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/SEc0p9G7R9chthVhFEJHa6MaW8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SEc0p9G7R9chthVhFEJHa6MaW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/SEc0p9G7R9chthVhFEJHa6MaW8.png 800w\"},className:\"framer-11hu5fp\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"q5VWzKLs_\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yh4r9s\",\"data-border\":true,\"data-framer-name\":\"BTR\",layoutDependency:layoutDependency,layoutId:\"aZSS5rFtq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6wt0p\",\"data-framer-name\":\"BTR\",layoutDependency:layoutDependency,layoutId:\"QjNrDpigM\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:42.5,intrinsicWidth:200,pixelHeight:179,pixelWidth:282,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CsSWl9m6fqDWfVzdN4jRnOjqDw.png\"},className:\"framer-p7yv5i\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"DghYdupSp\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ky9b9b\",\"data-border\":true,\"data-framer-name\":\"Electricfish\",layoutDependency:layoutDependency,layoutId:\"g0d1jcDKD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1juh46a\",\"data-framer-name\":\"Electricfish\",layoutDependency:layoutDependency,layoutId:\"qNWhe58SC\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:42.5,intrinsicWidth:200,pixelHeight:716,pixelWidth:5489,positionX:\"center\",positionY:\"center\",sizes:\"95px\",src:\"https://framerusercontent.com/images/5EH9GbboFm6wXuAsnrWpu4e26g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5EH9GbboFm6wXuAsnrWpu4e26g.png?scale-down-to=512 512w,https://framerusercontent.com/images/5EH9GbboFm6wXuAsnrWpu4e26g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5EH9GbboFm6wXuAsnrWpu4e26g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5EH9GbboFm6wXuAsnrWpu4e26g.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/5EH9GbboFm6wXuAsnrWpu4e26g.png 5489w\"},className:\"framer-19yt1fb\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"DDH0Vji5z\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tqylhk\",\"data-border\":true,\"data-framer-name\":\"Franklin\",layoutDependency:layoutDependency,layoutId:\"gYtmNVuRc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b7vo52\",\"data-framer-name\":\"Franklin\",layoutDependency:layoutDependency,layoutId:\"ykzqlmclv\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:42.5,intrinsicWidth:200,pixelHeight:211,pixelWidth:1047,positionX:\"center\",positionY:\"center\",sizes:\"95px\",src:\"https://framerusercontent.com/images/j6x3CfSzKsYcfEbbIkXWJN5arL4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j6x3CfSzKsYcfEbbIkXWJN5arL4.png?scale-down-to=512 512w,https://framerusercontent.com/images/j6x3CfSzKsYcfEbbIkXWJN5arL4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j6x3CfSzKsYcfEbbIkXWJN5arL4.png 1047w\"},className:\"framer-1yas76\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"GanyXVaJf\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eay1m9\",\"data-border\":true,\"data-framer-name\":\"Enersponse 2\",layoutDependency:layoutDependency,layoutId:\"IdFDHjW_3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(242, 242, 242)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qb94iq\",\"data-framer-name\":\"Enersponse\",layoutDependency:layoutDependency,layoutId:\"RIMAaRh7E\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19lgaog\",\"data-framer-name\":\"Enersponse\",fill:\"black\",intrinsicHeight:121,intrinsicWidth:705,layoutDependency:layoutDependency,layoutId:\"jesOUG13O\",svg:'<svg width=\"705\" height=\"121\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#111110\"><path d=\"M355.324 60.5V43.878 60.5c0 8.24.071 16.41 0 24.65.071-8.24 0-16.48 0-24.65ZM155.217 35.567v41.061-16.41c-.071-8.24 0-16.41 0-24.65Zm63.949 24.581v-16.41 16.41c0 8.31.071 16.621 0 24.932.071-8.381 0-16.692 0-24.932Zm433.885-33.032c0 22.186.07 44.442 0 66.628 0 2.042.494 2.887 2.753 2.817 16.446-.07 32.821-.07 49.268-.14V83.108c-11.011 0-22.093-.07-33.105.07-2.188 0-3.176-.493-3.035-2.888.212-3.732.142-7.465 0-11.198-.07-2.183.706-2.747 2.824-2.747 9.74.07 19.481-.07 29.222.07 2.611.071 3.6-.633 3.317-3.31-.211-2.394-.141-4.93 0-7.324.141-2.184-.706-2.747-2.823-2.747-9.741.07-19.481-.07-29.222.07-2.612.07-3.529-.704-3.388-3.31.211-3.24.141-6.55 0-9.79-.071-1.69.423-2.535 2.329-2.535 11.294.14 22.517.14 33.81.21V24.37c-16.517-.07-33.034-.07-49.621-.212-2.188.07-2.329 1.268-2.329 2.958ZM100.442 101.28c-.988-.071-1.764.211-2.33 1.197-3.528 5.987-7.128 11.973-11.01 18.523h612.887c.564 0 1.199-.07 1.764 0 1.835.212 2.471-.493 2.4-2.324-.141-4.296 0-8.592-.071-12.959 0-5.071.565-4.367-4.517-4.367H103.548c-.988-.07-2.047-.07-3.106-.07Z\"/><path d=\"M94.02 96.35c-2.965.351-3.177-1.198-3.107-3.522.07-13.664 0-27.257.07-40.92 0-.846-.423-1.832.424-2.536 1.06.352 1.342 1.268 1.906 1.972 8.612 11.973 17.646 23.594 25.552 35.99 4.588 7.254 9.741 10.706 18.422 9.367 2.824-.422 3.671-.845 3.671-3.803-.141-20.706-.071-41.484-.071-62.19 0-5.846 0-5.846 5.929-6.691C142.158 16.058 137.64 8.31 132.77 0c-4.447 7.607-8.47 14.65-12.705 21.622-1.553 2.606-.494 3.1 1.835 2.747 2.894-.423 3.529.845 3.459 3.522-.141 12.959-.071 25.848-.071 38.807 0 .986.424 2.113-.494 3.028-1.341-.493-1.765-1.83-2.47-2.817-7.906-10.846-16.306-21.41-23.364-32.82-4.94-7.889-10.658-11.41-19.905-10.002-2.823.423-3.67.986-3.67 3.804.14 21.34 0 42.61.14 63.95 0 3.1-.352 5.001-4.093 4.438-1.835-.282-2.753.282-1.553 2.324 3.882 6.55 7.623 13.1 11.435 19.65 1.13 1.902 1.835 1.62 2.823-.141a2772.52 2772.52 0 0 1 11.294-19.368c.917-1.55.847-2.677-1.412-2.395ZM.07 42.963v50.64c0 1.831.142 3.028 2.542 2.958 19.058-.07 38.045-.07 57.103 0 2.117 0 2.611-.775 2.54-2.676-.14-3.24-.211-6.55 0-9.79.212-2.888-.705-3.733-3.67-3.733-12.21.14-24.422 0-36.633.14-2.259 0-3.106-.563-3.035-2.957.14-4.508.211-9.086 0-13.664-.142-2.888.705-3.803 3.67-3.733 11.858.141 23.717 0 35.575.141 2.4 0 3.388-.563 3.247-3.099-.212-3.028-.283-6.057 0-9.085.282-3.029-.847-3.663-3.741-3.663-11.858.141-23.717 0-35.575.141-2.47 0-3.247-.775-3.176-3.17.14-4.084.211-8.17 0-12.254-.142-2.677.635-3.592 3.529-3.522 12.211.141 24.422 0 36.633.141 2.4 0 3.389-.634 3.177-3.099a75.534 75.534 0 0 1 0-9.79c.14-2.394-.565-3.24-3.106-3.24-18.705.07-37.34.07-56.044 0C.565 9.65 0 10.495 0 12.82c.07 10.07.07 20.142.07 30.143ZM510.893 96.63a66.493 66.493 0 0 1 9.176 0c2.47.141 3.176-.704 3.176-3.169-.141-13.734-.07-27.468 0-41.202 0-.986-.423-2.042.424-2.888 1.059.353 1.341 1.268 1.906 2.043 8.54 11.832 17.081 23.665 25.551 35.567 7.059 9.86 6.988 9.931 19.129 9.65h.353c1.976.281 2.682-.493 2.682-2.536-.071-22.397-.071-44.724 0-67.12 0-2.254-.847-2.747-2.894-2.677-2.965.141-5.859.211-8.823 0-3.035-.282-4.024.634-3.953 3.803.212 11.903.071 23.736.071 35.638v5.846c-.212.07-.494.211-.706.282-.494-.634-1.059-1.198-1.553-1.831-8.047-11.129-16.799-21.975-23.999-33.596-5.082-8.17-11.011-11.691-20.469-10.212-2.612.422-3.247.986-3.247 3.521.141 9.79.07 19.58.07 29.37 0 12.114.071 24.228-.07 36.342-.212 2.536.564 3.31 3.176 3.17Zm-52.515 1.27c22.234 0 38.186-15.566 38.186-37.4 0-21.904-15.74-37.469-38.045-37.469-22.234 0-38.257 15.565-38.257 37.328-.071 21.834 15.952 37.54 38.116 37.54ZM447.79 39.3c7.694-3.943 15.74-3.732 23.081 1.198 9.953 6.55 12.776 22.327 6.212 33.314-5.859 9.79-18.564 13.311-29.011 8.029-7.552-3.803-11.858-11.692-11.787-23.735.282-6.762 3.105-14.58 11.505-18.805ZM219.166 85.01c0 2.747-.07 5.564-.07 8.311-.071 2.676.776 3.451 3.388 3.24 3.247-.211 6.564-.141 9.882 0 1.906.07 2.4-.634 2.4-2.465-.071-5.494 0-10.987 0-16.41 0-7.044 0-6.903 7.199-7.114 2.965-.07 4.659.775 6 3.451 3.529 6.832 7.411 13.523 11.082 20.284.847 1.62 1.906 2.395 3.811 2.324 4.094-.14 8.259-.14 12.353 0 2.47.07 2.894-.493 1.553-2.676-3.812-6.268-7.553-12.607-11.365-18.946-.988-1.69-2.823-3.451-2.823-5.141.071-2.395 3.176-1.972 4.87-3.029 8.4-5.141 12.211-15.002 9.6-25.637-2.329-9.649-10.517-16.48-20.893-16.762-11.506-.352-23.011-.07-34.516-.212-2.4 0-2.541 1.198-2.541 3.029v32.82c.07 8.312.141 16.622.07 24.933Zm16.305-46.907c1.977-1.83 6.071-.422 9.176-.563 2.471-.07 4.941-.07 7.412 0 5.717.282 9.599 4.014 9.882 9.438.282 5.141-3.6 9.79-9.035 10.142-5.365.352-10.8.07-16.164.211-1.623 0-1.976-.775-1.906-2.183.071-2.536 0-5.142 0-8.24.283-2.607-1.553-6.762.635-8.805Zm-76.867 58.528c13.058-.14 26.046-.07 39.104-.07 9.458 0 9.317 0 9.458-9.438.071-3.029-.706-4.015-3.882-3.944-9.882.211-19.764 0-29.575.14-2.329 0-3.106-.704-2.964-2.958.141-3.592.211-7.254 0-10.846-.142-2.535.917-3.099 3.246-3.028 7.412.14 14.823.07 22.164 0 3.176 0 7.2 1.338 9.176-.564 2.188-2.042.424-6.198.776-9.367.283-2.536-.564-3.451-3.246-3.38-9.6.14-19.27 0-28.87.14-2.329 0-3.388-.493-3.246-3.029a70.433 70.433 0 0 0 0-9.437c-.142-2.395.705-3.24 3.176-3.17 7.764.141 15.528.07 23.222.07 10.306 0 10.235 0 10.023-10.352-.07-2.325-.776-2.959-3.035-2.959-15.246.07-30.563.07-45.809 0-2.471 0-3.177.705-3.177 3.17 0 2.747.071 5.493.071 8.24V76.91c0 5.494 0 10.917-.071 16.41-.07 2.466.636 3.311 3.459 3.311Zm426.966-7.325c8.259 6.128 17.576 8.593 29.011 8.593 4.305.07 9.74-.705 14.823-2.958 8.681-3.874 13.128-10.706 13.34-20.073.141-8.945-4.729-14.79-12.776-18.312-4.447-1.902-9.105-3.029-13.764-4.156-3.953-.986-8.046-1.69-11.787-3.521-2.118-1.057-3.671-2.536-3.671-5.071 0-2.606 1.341-4.437 3.529-5.635 1.13-.633 2.4-1.056 3.6-1.197 8.188-1.197 15.599.916 22.164 5.705 1.764 1.268 2.753 1.55 4.094-.493 1.623-2.535 3.6-4.93 5.576-7.184 1.27-1.479.847-2.254-.424-3.38-10.376-8.945-30.916-11.41-42.915-4.93-7.553 4.084-11.788 10.353-11.647 18.945.212 8.663 5.153 14.157 13.059 17.326 3.811 1.55 7.764 2.606 11.787 3.522 4.447 1.056 9.035 1.76 13.129 3.944 5.294 2.817 5.576 8.381.565 11.691a11.548 11.548 0 0 1-4.518 1.831c-9.529 1.55-17.928-.986-25.198-7.043-2.33-1.901-3.389-1.55-4.8.705-1.2 1.972-2.541 4.014-4.094 5.634-2.541 2.606-1.553 4.156.917 6.057Zm-298.643-.704c8.188 6.691 17.788 9.156 27.74 9.367 7.835-.07 14.894-1.197 21.246-5.352 10.8-7.043 14.047-27.961-2.541-35.427-3.953-1.76-8.117-3.029-12.352-4.085-5.012-1.268-10.164-1.831-14.823-4.367-4.235-2.324-4.376-7.536-.353-10.212 1.271-.845 2.682-1.338 4.235-1.55 8.259-1.127 15.599 1.057 22.164 5.846 1.694 1.268 2.611 1.48 3.882-.352 1.694-2.465 3.6-4.86 5.576-7.254 1.271-1.48 1.059-2.536-.494-3.733-4.094-3.029-8.47-5.494-13.482-6.691-11.152-2.747-22.093-2.958-32.186 3.733-11.435 7.606-12.776 26.693 2.682 33.736 4.164 1.902 8.611 3.099 13.058 4.155 4.588 1.127 9.176 1.902 13.411 4.015 2.471 1.268 4.306 3.099 4.235 5.916-.07 2.747-1.694 4.86-4.094 6.057-1.341.705-2.823 1.268-4.305 1.48-9.67 1.549-18.141-1.198-25.411-7.537-1.623-1.408-2.47-1.69-3.67.352-1.553 2.465-3.247 4.86-5.153 7.043-1.764 2.043-1.27 3.31.635 4.86Zm68.398-3.522c0 2.748-.071 5.494-.071 8.241-.071 2.677.776 3.451 3.388 3.31 3.176-.21 6.353-.14 9.529 0 2.188.141 2.823-.704 2.753-2.817-.141-6.761.07-13.522-.071-20.284-.07-2.324.777-2.958 3.035-2.958 5.859.14 11.717.211 17.647 0 13.481-.493 22.587-9.93 22.516-23.242-.071-13.311-9.247-22.75-22.658-23.03-11.011-.212-22.093 0-33.104-.142-2.4 0-2.964.845-2.894 3.029.071 5.564.071 11.057.071 16.621V60.43c-.141 8.24-.071 16.48-.141 24.65Zm15.599-45.497c0-1.48.635-2.043 2.117-2.043 2.683.07 5.365 0 8.118 0 2.47 0 4.941-.07 7.411 0 5.576.282 9.529 4.226 9.741 9.508.211 5.212-3.6 9.72-9.106 10.072-5.364.352-10.799.07-16.164.14-1.552 0-2.047-.633-2.047-2.042-.07-5.141-.07-10.424-.07-15.636ZM65.009 101.561c-20.822 0-41.574 0-62.397-.071-1.976 0-2.682.564-2.611 2.536.14 4.789.14 9.578 0 14.297-.071 1.902.423 2.606 2.47 2.606 24.987-.07 50.045-.07 75.808-.07-3.741-6.41-7.2-12.326-10.658-18.312-.565-1.057-1.553-.986-2.612-.986Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h705v121H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N8CO0.framer-pmnyaf, .framer-N8CO0 .framer-pmnyaf { display: block; }\",\".framer-N8CO0.framer-5jo9fk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 318px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-N8CO0 .framer-bm2zi0-container { flex: none; height: 94px; position: relative; width: 100%; }\",\".framer-N8CO0 .framer-1oynyyn, .framer-N8CO0 .framer-itgt9z, .framer-N8CO0 .framer-9vc7eq, .framer-N8CO0 .framer-1cfkfle, .framer-N8CO0 .framer-7lvl91, .framer-N8CO0 .framer-cpoqdi, .framer-N8CO0 .framer-7p1jb7, .framer-N8CO0 .framer-c3eedz, .framer-N8CO0 .framer-11p5eu3, .framer-N8CO0 .framer-c3q915, .framer-N8CO0 .framer-s9v0ag, .framer-N8CO0 .framer-11bnish, .framer-N8CO0 .framer-tund83, .framer-N8CO0 .framer-xu8u24, .framer-N8CO0 .framer-fsbl90, .framer-N8CO0 .framer-kdnbk6, .framer-N8CO0 .framer-410665, .framer-N8CO0 .framer-elpqit, .framer-N8CO0 .framer-1m2gis0, .framer-N8CO0 .framer-1yuxixf, .framer-N8CO0 .framer-1ypcw4k, .framer-N8CO0 .framer-1wopmng, .framer-N8CO0 .framer-ggzaqt, .framer-N8CO0 .framer-1gft12r, .framer-N8CO0 .framer-kmzunl, .framer-N8CO0 .framer-gpxfhx, .framer-N8CO0 .framer-obyxly, .framer-N8CO0 .framer-1dme465, .framer-N8CO0 .framer-1nfly1x, .framer-N8CO0 .framer-ttmaxm, .framer-N8CO0 .framer-cj6rq4, .framer-N8CO0 .framer-l30z2u, .framer-N8CO0 .framer-6tvoxt, .framer-N8CO0 .framer-1yh4r9s, .framer-N8CO0 .framer-ky9b9b, .framer-N8CO0 .framer-tqylhk, .framer-N8CO0 .framer-eay1m9 { height: 66px; overflow: hidden; position: relative; width: 130px; will-change: var(--framer-will-change-override, transform); }\",\".framer-N8CO0 .framer-7hzefm, .framer-N8CO0 .framer-1pb231x { flex: none; height: 22px; left: calc(50.00000000000002% - 100px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 22px / 2); width: 100px; }\",\".framer-N8CO0 .framer-17w47ye, .framer-N8CO0 .framer-11hu5fp { aspect-ratio: 4.705882352941177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 50%; }\",\".framer-N8CO0 .framer-1nrrsa7 { flex: none; height: 14px; left: calc(49.230769230769255% - 100px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 100px; }\",\".framer-N8CO0 .framer-yo91tj { aspect-ratio: 7.529411764705882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 50%; }\",\".framer-N8CO0 .framer-15fqe7n { flex: none; height: 34px; left: calc(47.692307692307715% - 86px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 34px / 2); width: 86px; }\",\".framer-N8CO0 .framer-qvfkze { aspect-ratio: 4.081632653061225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 84px; }\",\".framer-N8CO0 .framer-1eecfrr { flex: none; height: 39px; left: calc(49.230769230769255% - 87px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 39px / 2); width: 87px; }\",\".framer-N8CO0 .framer-123ct68 { aspect-ratio: 2.4806201550387597 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: absolute; right: 0px; top: 51%; width: 86px; }\",\".framer-N8CO0 .framer-11lhvu1, .framer-N8CO0 .framer-1mqvjxg { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 84px; }\",\".framer-N8CO0 .framer-1kvpllk { flex: none; height: 24px; left: calc(50.00000000000002% - 96px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 24px / 2); width: 96px; }\",\".framer-N8CO0 .framer-1wg1h9u { aspect-ratio: 3.9356223175965663 / 1; bottom: 0px; flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 94px); }\",\".framer-N8CO0 .framer-1a97d8k { aspect-ratio: 2.7345454545454544 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 45%; overflow: visible; position: absolute; top: 50%; width: 95px; }\",\".framer-N8CO0 .framer-1mdbie0, .framer-N8CO0 .framer-18h2znz { flex: none; height: 31px; left: 19px; overflow: visible; position: absolute; top: 18px; width: 92px; }\",\".framer-N8CO0 .framer-1i7solc { flex: none; height: 32px; left: calc(49.230769230769255% - 99px / 2); overflow: visible; position: absolute; top: calc(54.54545454545456% - 32px / 2); width: 99px; }\",\".framer-N8CO0 .framer-o1d454 { flex: none; height: 32px; left: calc(49.230769230769255% - 99px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 99px; }\",\".framer-N8CO0 .framer-3yhtfd-container { flex: none; height: 89px; position: relative; width: 100%; }\",\".framer-N8CO0 .framer-17511ec { flex: none; height: 43px; left: calc(50.00000000000002% - 96px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 43px / 2); width: 96px; }\",\".framer-N8CO0 .framer-1uh7ojq, .framer-N8CO0 .framer-jbgt9u, .framer-N8CO0 .framer-l6kiby, .framer-N8CO0 .framer-p58xvw { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 51%; overflow: visible; position: absolute; top: 50%; width: 84px; }\",\".framer-N8CO0 .framer-v3lq4v { aspect-ratio: 2.6036585365853657 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 49%; overflow: visible; position: absolute; top: 50%; width: 86px; }\",\".framer-N8CO0 .framer-131vkcx { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 100px; }\",\".framer-N8CO0 .framer-a1i652 { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 110px; }\",\".framer-N8CO0 .framer-1ttohwi { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 85px; }\",\".framer-N8CO0 .framer-1fpaj3e { aspect-ratio: 4.081632653061225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 51%; overflow: visible; position: absolute; top: 52%; width: 66px; }\",\".framer-N8CO0 .framer-1aioinc { flex: none; height: 19px; left: calc(49.230769230769255% - 95px / 2); position: absolute; top: calc(48.484848484848506% - 19px / 2); width: 95px; }\",\".framer-N8CO0 .framer-1dp8y8u, .framer-N8CO0 .framer-pafpyk { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: -5px; overflow: visible; position: absolute; right: -4px; top: 50%; }\",\".framer-N8CO0 .framer-nz34jx-container { flex: none; height: 97px; position: relative; width: 100%; }\",\".framer-N8CO0 .framer-lftiv0, .framer-N8CO0 .framer-o387kf { flex: none; height: 19px; left: calc(50.00000000000002% - 100px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 19px / 2); width: 100px; }\",\".framer-N8CO0 .framer-14eidwn, .framer-N8CO0 .framer-qv3bkh { aspect-ratio: 5.586666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 47%; }\",\".framer-N8CO0 .framer-1f8jhkm { aspect-ratio: 5.72 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 96px; }\",\".framer-N8CO0 .framer-e33k2o { aspect-ratio: 5.224489795918367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 120px; }\",\".framer-N8CO0 .framer-4mn8yl { flex: none; height: 16px; left: calc(50.00000000000002% - 98px / 2); overflow: hidden; position: absolute; top: calc(53.03030303030305% - 16px / 2); width: 98px; }\",\".framer-N8CO0 .framer-672l9l { aspect-ratio: 6.184873949579832 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-N8CO0 .framer-1b5tdfu { flex: none; height: 14px; left: calc(50.00000000000002% - 66px / 2); position: absolute; top: calc(53.03030303030305% - 14px / 2); width: 66px; }\",\".framer-N8CO0 .framer-z69xlz { aspect-ratio: 3.6945812807881775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: 50%; overflow: visible; position: absolute; top: 48%; width: 110px; }\",\".framer-N8CO0 .framer-p6wt0p { flex: none; height: 47px; left: calc(49.230769230769255% - 55px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 47px / 2); width: 55px; }\",\".framer-N8CO0 .framer-p7yv5i { aspect-ratio: 4.705882352941177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: -56px; overflow: visible; position: absolute; right: -56px; top: 49%; }\",\".framer-N8CO0 .framer-1juh46a, .framer-N8CO0 .framer-1b7vo52 { flex: none; height: 47px; left: calc(49.230769230769255% - 95px / 2); overflow: hidden; position: absolute; top: calc(48.484848484848506% - 47px / 2); width: 95px; }\",\".framer-N8CO0 .framer-19yt1fb, .framer-N8CO0 .framer-1yas76 { aspect-ratio: 4.705882352941177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 49%; }\",\".framer-N8CO0 .framer-qb94iq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; left: 49%; overflow: hidden; padding: 0px; position: absolute; top: 48%; width: min-content; }\",\".framer-N8CO0 .framer-19lgaog { aspect-ratio: 5.8264462809917354 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 104px; }\",\".framer-N8CO0.framer-v-m5n6pj.framer-5jo9fk { width: 997px; }\",\".framer-N8CO0.framer-v-pqdisz.framer-5jo9fk { height: 349px; width: 811px; }\",'.framer-N8CO0[data-border=\"true\"]::after, .framer-N8CO0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 318\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cnd0t3oW_\":{\"layout\":[\"fixed\",\"fixed\"]},\"v8bpTS7Yv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjzGfSuw70=withCSS(Component,css,\"framer-N8CO0\");export default FramerjzGfSuw70;FramerjzGfSuw70.displayName=\"Partner Logos\";FramerjzGfSuw70.defaultProps={height:318,width:1200};addPropertyControls(FramerjzGfSuw70,{variant:{options:[\"AGOqTpdok\",\"cnd0t3oW_\",\"v8bpTS7Yv\"],optionTitles:[\"Desktop\",\"Mid\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjzGfSuw70,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjzGfSuw70\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cnd0t3oW_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v8bpTS7Yv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"318\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jzGfSuw70.map","// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1vwNMzzVPjnrNqVAixyW/aneZkxeWNAvcJ6ThFMSi/VbZOvSYEN.js\";const enabledGestures={ffyFjBDEK:{hover:true},kzohWd8T_:{hover:true}};const cycleOrder=[\"ffyFjBDEK\",\"kzohWd8T_\",\"G8f6uSQFE\"];const serializationHash=\"framer-cr2kq\";const variantClassNames={ffyFjBDEK:\"framer-v-1w5z5l\",G8f6uSQFE:\"framer-v-1v18vty\",kzohWd8T_:\"framer-v-1qdhzpo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:79,delay:0,mass:1,stiffness:308,type:\"spring\"};const transition2={damping:18,delay:0,mass:1,stiffness:308,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ffyFjBDEK\",\"Variant 2\":\"kzohWd8T_\",\"Variant 3\":\"G8f6uSQFE\"};const getProps=({height,id,tap,width,...props})=>{return{...props,Rsh6xvOTA:tap??props.Rsh6xvOTA,variant:humanReadableVariantMap[props.variant]??props.variant??\"ffyFjBDEK\"};};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,Rsh6xvOTA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ffyFjBDEK\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapuopu17=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Rsh6xvOTA){const res=await Rsh6xvOTA(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"kzohWd8T_-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({G8f6uSQFE:{value:transition2},kzohWd8T_:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kN0ySTQ2t\"},motionChild:true,nodeId:\"ffyFjBDEK\",openInNewTab:false,scopeId:\"z6osMmzw8\",...addPropertyOverrides({kzohWd8T_:{href:{webPageId:\"BGqRtQgwF\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1w5z5l\",className,classNames)} framer-117grnz`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ffyFjBDEK\",onTap:onTapuopu17,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(17, 17, 17, 0.07)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 78, 252)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"ffyFjBDEK-hover\":{backgroundColor:\"rgb(36, 104, 249)\"},\"kzohWd8T_-hover\":{\"--border-color\":\"rgb(18, 18, 18)\"},G8f6uSQFE:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(18, 18, 18, 0.2)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},kzohWd8T_:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(18, 18, 18, 0.2)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgba(255, 255, 255, 0)\"}},...addPropertyOverrides({\"ffyFjBDEK-hover\":{\"data-framer-name\":undefined},\"kzohWd8T_-hover\":{\"data-framer-name\":undefined},G8f6uSQFE:{\"data-framer-name\":\"Variant 3\"},kzohWd8T_:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ismet2\",\"data-styles-preset\":\"VbZOvSYEN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Explore partner solutions\"})}),className:\"framer-1ajg4bh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gEjhh4fMi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{G8f6uSQFE:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\"},kzohWd8T_:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({G8f6uSQFE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ismet2\",\"data-styles-preset\":\"VbZOvSYEN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Explore partner solutions\"})})},kzohWd8T_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ismet2\",\"data-styles-preset\":\"VbZOvSYEN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:\"Explore partner solutions\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1u51j8m\",\"data-framer-name\":\"Vector 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uG9x8ie0s\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 12\"><path d=\"M 1.234 10.181 L 5.333 6.307 C 5.585 6.069 5.585 5.654 5.333 5.415 L 1.234 1.541\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"#111111\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11125696960,withExternalLayout:true,...addPropertyOverrides({\"kzohWd8T_-hover\":{svgContentId:11583740053}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cr2kq.framer-117grnz, .framer-cr2kq .framer-117grnz { display: block; }\",\".framer-cr2kq.framer-1w5z5l { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-cr2kq .framer-1ajg4bh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cr2kq .framer-1u51j8m { flex: none; height: 12px; position: relative; width: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cr2kq.framer-1w5z5l { gap: 0px; } .framer-cr2kq.framer-1w5z5l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cr2kq.framer-1w5z5l > :first-child { margin-left: 0px; } .framer-cr2kq.framer-1w5z5l > :last-child { margin-right: 0px; } }\",\".framer-cr2kq.framer-v-1qdhzpo.framer-1w5z5l { gap: 8px; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cr2kq.framer-v-1qdhzpo .framer-1ajg4bh, .framer-cr2kq.framer-v-1v18vty .framer-1ajg4bh { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cr2kq.framer-v-1qdhzpo.framer-1w5z5l { gap: 0px; } .framer-cr2kq.framer-v-1qdhzpo.framer-1w5z5l > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-cr2kq.framer-v-1qdhzpo.framer-1w5z5l > :first-child { margin-left: 0px; } .framer-cr2kq.framer-v-1qdhzpo.framer-1w5z5l > :last-child { margin-right: 0px; } }\",\".framer-cr2kq.framer-v-1v18vty.framer-1w5z5l { gap: 8px; height: 45px; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cr2kq.framer-v-1v18vty.framer-1w5z5l { gap: 0px; } .framer-cr2kq.framer-v-1v18vty.framer-1w5z5l > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-cr2kq.framer-v-1v18vty.framer-1w5z5l > :first-child { margin-left: 0px; } .framer-cr2kq.framer-v-1v18vty.framer-1w5z5l > :last-child { margin-right: 0px; } }\",\".framer-cr2kq.framer-v-1qdhzpo.hover.framer-1w5z5l { gap: 10px; padding: 0px 16px 0px 16px; }\",\".framer-cr2kq.framer-v-1qdhzpo.hover .framer-1u51j8m { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cr2kq.framer-v-1qdhzpo.hover.framer-1w5z5l { gap: 0px; } .framer-cr2kq.framer-v-1qdhzpo.hover.framer-1w5z5l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cr2kq.framer-v-1qdhzpo.hover.framer-1w5z5l > :first-child { margin-left: 0px; } .framer-cr2kq.framer-v-1qdhzpo.hover.framer-1w5z5l > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-cr2kq[data-border=\"true\"]::after, .framer-cr2kq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 214\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"kzohWd8T_\":{\"layout\":[\"auto\",\"fixed\"]},\"G8f6uSQFE\":{\"layout\":[\"auto\",\"fixed\"]},\"pBZLRXh5Z\":{\"layout\":[\"auto\",\"fixed\"]},\"paDJIhoyj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Rsh6xvOTA\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerz6osMmzw8=withCSS(Component,css,\"framer-cr2kq\");export default Framerz6osMmzw8;Framerz6osMmzw8.displayName=\"Button - Partner\";Framerz6osMmzw8.defaultProps={height:36,width:214};addPropertyControls(Framerz6osMmzw8,{variant:{options:[\"ffyFjBDEK\",\"kzohWd8T_\",\"G8f6uSQFE\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},Rsh6xvOTA:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framerz6osMmzw8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz6osMmzw8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"214\",\"framerVariables\":\"{\\\"Rsh6xvOTA\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kzohWd8T_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"G8f6uSQFE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pBZLRXh5Z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"paDJIhoyj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z6osMmzw8.map","// Generated by Framer (ee31e22)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-Ombvj .framer-styles-preset-qdhqnc:not(.rich-text-wrapper), .framer-Ombvj .framer-styles-preset-qdhqnc.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Ombvj\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b012016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ICONPlatform from\"https://framerusercontent.com/modules/4I1cPczrgthJOHEqtgVO/5NqEG2eN4OFE2LKJAowL/QXNw8jMux.js\";import{Icon as Material1}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/7x3e9wpcXzo54wT5JrXM/Material.js\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import ClassicCounter from\"https://framerusercontent.com/modules/saWZHomn6CdsDZ6onYPn/eIUeVMAzqpvnf2FPYnmn/Classic_Counter.js\";import LeapNavigation from\"#framer/local/canvasComponent/BvEkZ10E6/BvEkZ10E6.js\";import Button3 from\"#framer/local/canvasComponent/FC4KSR44m/FC4KSR44m.js\";import PartnerLogos from\"#framer/local/canvasComponent/jzGfSuw70/jzGfSuw70.js\";import CTAFooterBanner from\"#framer/local/canvasComponent/ohJ4qlHLX/ohJ4qlHLX.js\";import PurpleModule from\"#framer/local/canvasComponent/OwUx7MsN9/OwUx7MsN9.js\";import BlueModule from\"#framer/local/canvasComponent/T6NVTkJ2a/T6NVTkJ2a.js\";import Footer from\"#framer/local/canvasComponent/v68yvGBtJ/v68yvGBtJ.js\";import LeapNavigationMobile from\"#framer/local/canvasComponent/wX1RNZQv7/wX1RNZQv7.js\";import Button4 from\"#framer/local/canvasComponent/xrprcNEgF/xrprcNEgF.js\";import ButtonSolutions from\"#framer/local/canvasComponent/Z1HIueZQs/Z1HIueZQs.js\";import ButtonPartner from\"#framer/local/canvasComponent/z6osMmzw8/z6osMmzw8.js\";import GreenModule from\"#framer/local/canvasComponent/ZNiXoBXs0/ZNiXoBXs0.js\";import*as sharedStyle9 from\"#framer/local/css/aJfCpDNrL/aJfCpDNrL.js\";import*as sharedStyle8 from\"#framer/local/css/baGwanjeU/baGwanjeU.js\";import*as sharedStyle2 from\"#framer/local/css/Gxy1nXlpx/Gxy1nXlpx.js\";import*as sharedStyle from\"#framer/local/css/LoO0oRM_1/LoO0oRM_1.js\";import*as sharedStyle1 from\"#framer/local/css/MiKhclFYq/MiKhclFYq.js\";import*as sharedStyle6 from\"#framer/local/css/NX1H1neN2/NX1H1neN2.js\";import*as sharedStyle4 from\"#framer/local/css/Ot6gvtLSX/Ot6gvtLSX.js\";import*as sharedStyle7 from\"#framer/local/css/QhCV1YUeY/QhCV1YUeY.js\";import*as sharedStyle3 from\"#framer/local/css/r6KWOZr1g/r6KWOZr1g.js\";import*as sharedStyle5 from\"#framer/local/css/twU6R_GNi/twU6R_GNi.js\";import*as sharedStyle10 from\"#framer/local/css/WP6eAjcnm/WP6eAjcnm.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Button4Fonts=getFonts(Button4);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithFX=withFX(motion.div);const MaterialFonts=getFonts(Material);const RichTextWithFX=withFX(RichText);const PartnerLogosFonts=getFonts(PartnerLogos);const ContainerWithFX=withFX(Container);const ButtonPartnerFonts=getFonts(ButtonPartner);const BlueModuleFonts=getFonts(BlueModule);const PurpleModuleFonts=getFonts(PurpleModule);const GreenModuleFonts=getFonts(GreenModule);const Button3Fonts=getFonts(Button3);const ImageWithFX=withFX(Image);const Material1Fonts=getFonts(Material1);const ButtonSolutionsFonts=getFonts(ButtonSolutions);const ClassicCounterFonts=getFonts(ClassicCounter);const ICONPlatformFonts=getFonts(ICONPlatform);const CTAFooterBannerFonts=getFonts(CTAFooterBanner);const FooterFonts=getFonts(Footer);const LeapNavigationFonts=getFonts(LeapNavigation);const LeapNavigationMobileFonts=getFonts(LeapNavigationMobile);const breakpoints={JGNErKFyH:\"(max-width: 809px)\",RJFe0A7FH:\"(min-width: 1200px)\",yel4sbrq0:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JdXIG\";const variantClassNames={JGNErKFyH:\"framer-v-74zeyp\",RJFe0A7FH:\"framer-v-mxn4r3\",yel4sbrq0:\"framer-v-kdy4wr\"};const transition1={delay:.1,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={delay:.3,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={delay:.25,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:.2,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.6,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition6={delay:.4,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition7={bounce:.95,delay:.1,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition8={damping:60,delay:.1,mass:1,stiffness:406,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition9={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"RJFe0A7FH\",Phone:\"JGNErKFyH\",Tablet:\"yel4sbrq0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RJFe0A7FH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"yel4sbrq0\",\"JGNErKFyH\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"yel4sbrq0\",\"JGNErKFyH\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JGNErKFyH\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"JGNErKFyH\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"RJFe0A7FH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-mxn4r3\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1860,pixelWidth:2912,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Bj45RzTZlrNom1Wn2resxheCUk.png\",srcSet:\"https://framerusercontent.com/images/Bj45RzTZlrNom1Wn2resxheCUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bj45RzTZlrNom1Wn2resxheCUk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bj45RzTZlrNom1Wn2resxheCUk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bj45RzTZlrNom1Wn2resxheCUk.png 2912w\"},className:\"framer-1p5ekq4\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-aerinj\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zrje4a\",\"data-framer-name\":\"Headline\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rfne1f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-shvov2\",\"data-styles-preset\":\"MiKhclFYq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Build and scale your virtual power plants \"})})},yel4sbrq0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-shvov2\",\"data-styles-preset\":\"MiKhclFYq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Build and scale your virtual power plants \"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-119d2oo\",\"data-styles-preset\":\"LoO0oRM_1\",children:\"Build and scale your virtual power plants \"})}),className:\"framer-1nq999w\",\"data-framer-appear-id\":\"1nq999w\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n7idhq\",\"data-styles-preset\":\"r6KWOZr1g\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Turn your distributed energy resources into revenue through Leap's platform and help create a cleaner, more resilient, and more affordable electric grid.\"})})},yel4sbrq0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n7idhq\",\"data-styles-preset\":\"r6KWOZr1g\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Turn your distributed energy resources into revenue through Leap's platform and help create a cleaner, more resilient, and more affordable electric grid.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s9lxmy\",\"data-styles-preset\":\"Gxy1nXlpx\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Turn your distributed energy resources into revenue through Leap's platform and help create a cleaner, more resilient, and more affordable electric grid.\"})}),className:\"framer-14y8h7y\",\"data-framer-appear-id\":\"14y8h7y\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{y:(componentViewport?.y||0)+0+0+40+-9.5+30+12+0+6+0+320.75},yel4sbrq0:{y:(componentViewport?.y||0)+0+0+40+13.5+-20+0+25.5+0+357.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+0+0+40+38.5+29.5+0+8+0+348.5,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-sqnygf-container\",\"data-framer-appear-id\":\"sqnygf\",initial:animation5,nodeId:\"JAEN6Stmn\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button4,{gK0cB1I8m:\"Book a demo\",height:\"100%\",id:\"JAEN6Stmn\",layoutId:\"JAEN6Stmn\",variant:\"fwQPo6FvY\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-auoz8h\",\"data-framer-name\":\"Platform Visual\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+-9.5+30+400+7),pixelHeight:883,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"333px\",src:\"https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg\",srcSet:\"https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg 1400w\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+13.5+72+7),pixelHeight:883,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"373.8125px\",src:\"https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg\",srcSet:\"https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg 1400w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+38.5+39.5+0),pixelHeight:883,pixelWidth:1400,positionX:\"center\",positionY:\"center\",sizes:\"551px\",src:\"https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg\",srcSet:\"https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzZKQdlRzwvKjviMTQFNcV64lek.svg 1400w\"},className:\"framer-16uu7h0\",\"data-framer-appear-id\":\"16uu7h0\",initial:animation1,optimized:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation7,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+38.5+39.5+102.5),pixelHeight:743,pixelWidth:1123,positionX:\"center\",positionY:\"center\",sizes:\"293px\",src:\"https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg\",srcSet:\"https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg 1123w\"},className:\"framer-1rajwx9 hidden-kdy4wr hidden-74zeyp\",\"data-framer-appear-id\":\"1rajwx9\",\"data-framer-name\":\"dispatch\",initial:animation8,optimized:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+-9.5+30+400+86),pixelHeight:743,pixelWidth:1123,positionX:\"center\",positionY:\"center\",sizes:\"179px\",src:\"https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg\",srcSet:\"https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg 1123w\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+13.5+72+64),pixelHeight:743,pixelWidth:1123,positionX:\"center\",positionY:\"center\",sizes:\"197px\",src:\"https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg\",srcSet:\"https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vV4HJBP9bto0sLr3p6yzBfbja8.svg 1123w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation7,background:{alt:\"\",fit:\"fit\",pixelHeight:762,pixelWidth:1226,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZwwXiq98kKOjEDoZTsnAlHrJAk.svg\",srcSet:\"https://framerusercontent.com/images/ZwwXiq98kKOjEDoZTsnAlHrJAk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ZwwXiq98kKOjEDoZTsnAlHrJAk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZwwXiq98kKOjEDoZTsnAlHrJAk.svg 1226w\"},className:\"framer-1jnxepo hidden-mxn4r3\",\"data-framer-appear-id\":\"1jnxepo\",\"data-framer-name\":\"dispatch\",initial:animation8,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+-9.5+30+400+314-195),pixelHeight:888,pixelWidth:437,positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/LIgSQbigIpNe7keoJKJ3FAn7o.png\",srcSet:\"https://framerusercontent.com/images/LIgSQbigIpNe7keoJKJ3FAn7o.png 437w\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+13.5+72+314-180.3357),pixelHeight:888,pixelWidth:437,positionX:\"center\",positionY:\"center\",sizes:\"147.1618px\",src:\"https://framerusercontent.com/images/LIgSQbigIpNe7keoJKJ3FAn7o.png\",srcSet:\"https://framerusercontent.com/images/LIgSQbigIpNe7keoJKJ3FAn7o.png 437w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation9,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+38.5+39.5+443-281),pixelHeight:888,pixelWidth:437,positionX:\"center\",positionY:\"center\",sizes:\"217px\",src:\"https://framerusercontent.com/images/LIgSQbigIpNe7keoJKJ3FAn7o.png\",srcSet:\"https://framerusercontent.com/images/LIgSQbigIpNe7keoJKJ3FAn7o.png 437w\"},className:\"framer-1vq0ph\",\"data-framer-appear-id\":\"1vq0ph\",\"data-framer-name\":\"Connect phone\",initial:animation8,optimized:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gscmiv\",\"data-framer-name\":\"Elevator pitch\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vmgw03\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dllai7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w3d527-container\",isModuleExternal:true,nodeId:\"rIya3Z2JR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(126, 0, 252)\",height:\"100%\",iconSearch:\"Offline Bolt\",iconSelection:\"BatteryChargingFull\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"rIya3Z2JR\",layoutId:\"rIya3Z2JR\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3c9w34\",\"data-styles-preset\":\"Ot6gvtLSX\",style:{\"--framer-text-alignment\":\"left\"},children:\"What we do\"})}),className:\"framer-15asu7z\",\"data-framer-name\":\"Partner with us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16e2bi9\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dfx45i\",\"data-styles-preset\":\"twU6R_GNi\",children:\"Leading technology brands partner with Leap to earn new revenue in energy programs that support electric grids.\"})}),className:\"framer-1i6pqtv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{width:\"387px\",y:(componentViewport?.y||0)+0+1107.6},yel4sbrq0:{width:\"811px\",y:(componentViewport?.y||0)+0+886.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:318,width:\"1500px\",y:(componentViewport?.y||0)+0+1013.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xp6wmb-container\",nodeId:\"pyiVkOVHE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{variant:\"v8bpTS7Yv\"},yel4sbrq0:{variant:\"v8bpTS7Yv\"}},children:/*#__PURE__*/_jsx(PartnerLogos,{height:\"100%\",id:\"pyiVkOVHE\",layoutId:\"pyiVkOVHE\",style:{height:\"100%\",width:\"100%\"},variant:\"AGOqTpdok\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9j173\",\"data-framer-name\":\"Connecting Assets\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pn05nv\",\"data-framer-name\":\"Intro Section\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t613xk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oeq33z\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1oh8lkg\",\"data-framer-name\":\"Hands\",opacity:1,radius:5,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 26\"><path d=\"M 6 26 C 2.686 26 0 26 0 26 L 0 0 C 0 0 2.686 0 6 0 L 20 0 C 23.314 0 26 0 26 0 L 26 26 C 26 26 23.314 26 20 26 Z\" fill=\"rgb(224,234,255)\"></path><path d=\"M 12.427 11.777 L 14.256 10.689 C 14.618 10.468 15.084 10.518 15.391 10.811 L 19.162 14.456 C 19.446 14.73 19.894 14.737 20.187 14.472 L 20.458 14.227 C 20.465 14.221 20.472 14.214 20.478 14.208 C 22.653 12.032 22.107 8.866 20.348 7.113 C 19.455 6.223 18.223 5.66 16.831 5.759 C 15.579 5.848 14.266 6.466 13.006 7.734 C 13.006 7.734 13.005 7.734 13.006 7.734 C 13.005 7.734 13.005 7.734 13.004 7.734 C 12.858 7.882 12.721 8.028 12.595 8.17 L 10.923 9.842 C 10.419 10.346 10.445 11.17 10.979 11.641 C 11.381 11.996 11.966 12.051 12.427 11.777 Z M 18.236 16.238 C 18.558 15.947 18.566 15.444 18.254 15.143 L 15.129 12.122 C 14.886 11.887 14.515 11.844 14.224 12.017 L 13.003 12.744 C 12.122 13.268 11.003 13.163 10.235 12.485 C 9.214 11.584 9.165 10.009 10.127 9.047 L 11.776 7.398 C 11.976 7.174 11.954 6.823 11.702 6.659 C 10.856 6.105 10.003 5.816 9.177 5.756 C 7.783 5.655 6.549 6.214 5.654 7.103 C 3.89 8.854 3.346 12.021 5.532 14.208 C 5.539 14.214 5.546 14.221 5.553 14.227 L 11.62 19.722 C 12.113 20.169 12.768 20.335 13.382 20.221 C 13.844 20.135 13.893 19.569 13.552 19.245 L 11.456 17.25 C 11.231 17.036 11.223 16.68 11.437 16.455 C 11.651 16.23 12.007 16.221 12.232 16.435 L 14.549 18.64 C 14.833 18.911 15.278 18.916 15.569 18.653 L 15.721 18.515 C 16.045 18.222 16.051 17.717 15.735 17.416 L 13.554 15.34 C 13.329 15.126 13.32 14.77 13.534 14.545 C 13.749 14.32 14.105 14.311 14.33 14.525 L 16.652 16.735 C 16.936 17.006 17.381 17.012 17.672 16.748 L 18.086 16.373 C 18.093 16.367 18.099 16.362 18.106 16.356 L 18.106 16.355 Z\" fill=\"rgb(0,78,252)\"></path></svg>',svgContentId:10350308019,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3c9w34\",\"data-styles-preset\":\"Ot6gvtLSX\",style:{\"--framer-text-alignment\":\"left\"},children:\"How we help\"})}),className:\"framer-bga8r9\",\"data-framer-name\":\"Partner with us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dfx45i\",\"data-styles-preset\":\"twU6R_GNi\",children:\"Easy access to energy revenue\"})}),className:\"framer-7an56a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1le01qp\",\"data-styles-preset\":\"NX1H1neN2\",children:\"Leap’s platform empowers technology providers to build virtual power plant (VPP) solutions under their own brands, unlocking revenue and creating new value for customers in demand response and other grid services programs. Leap provides fast, automated access to energy markets and programs for a wide range of grid-interactive technologies.\"})}),className:\"framer-1z13n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{y:(componentViewport?.y||0)+0+1425.6+49+0+0+342.1},yel4sbrq0:{y:(componentViewport?.y||0)+0+1204.6+76+0+0+310.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+1331.6+150+0+0+310.1,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19vv7wm-container\",nodeId:\"KeTSCuJv8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPartner,{height:\"100%\",id:\"KeTSCuJv8\",layoutId:\"KeTSCuJv8\",style:{height:\"100%\"},variant:\"kzohWd8T_\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17hq8zo\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{width:\"325px\",y:(componentViewport?.y||0)+0+1425.6+49+456.1+8+0},yel4sbrq0:{width:\"234.6667px\",y:(componentViewport?.y||0)+0+1204.6+76+424.1+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,y:(componentViewport?.y||0)+0+1331.6+150+446.1+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivhhx6-container\",nodeId:\"ylgFfMTbU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{style:{width:\"100%\"}},yel4sbrq0:{style:{width:\"100%\"},variant:\"hhFNarhkN\"}},children:/*#__PURE__*/_jsx(BlueModule,{height:\"100%\",id:\"ylgFfMTbU\",layoutId:\"ylgFfMTbU\",variant:\"KRcBWhEmI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{width:\"325px\",y:(componentViewport?.y||0)+0+1425.6+49+456.1+8+420},yel4sbrq0:{width:\"234.6667px\",y:(componentViewport?.y||0)+0+1204.6+76+424.1+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,y:(componentViewport?.y||0)+0+1331.6+150+446.1+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zfs052-container\",nodeId:\"yLTOWFjVq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yel4sbrq0:{variant:\"l_ZLALF2u\"}},children:/*#__PURE__*/_jsx(PurpleModule,{height:\"100%\",id:\"yLTOWFjVq\",layoutId:\"yLTOWFjVq\",style:{width:\"100%\"},variant:\"mSZmsPs2b\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{width:\"325px\",y:(componentViewport?.y||0)+0+1425.6+49+456.1+8+840},yel4sbrq0:{width:\"234.6667px\",y:(componentViewport?.y||0)+0+1204.6+76+424.1+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,y:(componentViewport?.y||0)+0+1331.6+150+446.1+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17csi2h-container\",nodeId:\"U4dzyNdFL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yel4sbrq0:{variant:\"NWDYs8kAf\"}},children:/*#__PURE__*/_jsx(GreenModule,{height:\"100%\",id:\"U4dzyNdFL\",layoutId:\"U4dzyNdFL\",style:{width:\"100%\"},variant:\"yB7CDz_x4\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3235.7),pixelHeight:797,pixelWidth:1034,sizes:\"338px\",src:\"https://framerusercontent.com/images/zgOlaWVZU24ixO3jYxoDB4lc.png\",srcSet:\"https://framerusercontent.com/images/zgOlaWVZU24ixO3jYxoDB4lc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zgOlaWVZU24ixO3jYxoDB4lc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zgOlaWVZU24ixO3jYxoDB4lc.png 1034w\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2196.7),pixelHeight:797,pixelWidth:1643,sizes:\"787px\",src:\"https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png\",srcSet:\"https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png?scale-down-to=512 512w,https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png 1643w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2477.7),pixelHeight:797,pixelWidth:1643,sizes:\"1140px\",src:\"https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png\",srcSet:\"https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png?scale-down-to=512 512w,https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6AfePl9p3U5JYFLU4yN9c86s4.png 1643w\"},className:\"framer-q84ro4\",\"data-framer-name\":\"Why VPPs? Homepage\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wesrgm\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-70is1i\",\"data-styles-preset\":\"QhCV1YUeY\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why Virtual Power Plants?\"})}),className:\"framer-a63f8h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qdhqnc\",\"data-styles-preset\":\"aJfCpDNrL\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good for your business.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good for your customers. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good for the grid.\"})]})})},yel4sbrq0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qdhqnc\",\"data-styles-preset\":\"aJfCpDNrL\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good for your business.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good for your customers. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good for the grid.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1sici3w\",\"data-styles-preset\":\"baGwanjeU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Good for your business.\",/*#__PURE__*/_jsx(\"br\",{}),\"Good for your customers. \",/*#__PURE__*/_jsx(\"br\",{}),\"Good for the grid.\"]})}),className:\"framer-c9n76k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{y:(componentViewport?.y||0)+0+3235.7+0+0+271.95},yel4sbrq0:{y:(componentViewport?.y||0)+0+2196.7+0+0+258.45}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+0+2477.7+0+0+327.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lb9q5x-container\",nodeId:\"r4AdIurQi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button3,{height:\"100%\",id:\"r4AdIurQi\",layoutId:\"r4AdIurQi\",style:{height:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1la04h9\",\"data-framer-name\":\"Discover Platform\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m6pqa6\",\"data-framer-name\":\"Intro Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t1koga\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eo90l7\",\"data-framer-name\":\"ICON Platform 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rp2sgh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fg9jzf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xW2DWaBOw\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:180},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Material1,{color:\"rgb(0, 156, 146)\",height:\"100%\",iconSearch:\"Terminal\",iconSelection:\"Code\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xW2DWaBOw\",layoutId:\"xW2DWaBOw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3c9w34\",\"data-styles-preset\":\"Ot6gvtLSX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our technology\"})}),className:\"framer-14s6m09\",\"data-framer-name\":\"Partner with us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1305zi0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-dfx45i\",\"data-styles-preset\":\"twU6R_GNi\",children:[\"Discover the \",/*#__PURE__*/_jsx(\"br\",{}),\"Leap platform\"]})}),className:\"framer-14tpe7b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{y:(componentViewport?.y||0)+0+3596.7+102+0+0+77+0+111.6},yel4sbrq0:{y:(componentViewport?.y||0)+0+2530.7+150+0+0+77+0+111.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+2927.7+150+0+0+77+0+111.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5n9y3l-container\",nodeId:\"e8IcPNpN_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSolutions,{height:\"100%\",id:\"e8IcPNpN_\",layoutId:\"e8IcPNpN_\",style:{height:\"100%\"},variant:\"I0jrq2Rg0\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3rfd3x\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tp8j4c\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1komyt0\",\"data-framer-name\":\"Card-1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m9ae2c\",\"data-framer-name\":\"Card Header – No Hardware\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hqitvs\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lpkpz\",\"data-framer-name\":\"Group 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k6oo2p\",\"data-framer-name\":\"Frame 2109\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-seuhcb\",\"data-framer-name\":\"Frame 2100\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\" filter=\"url(#filter0_dd_2644_2339)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#004EFC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2339\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2339\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2339\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2339\" result=\"effect2_dropShadow_2644_2339\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2339\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b98asr\",\"data-framer-name\":\"Frame 2114\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_dd_2644_2341)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#004EFC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2341\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2341\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2341\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2341\" result=\"effect2_dropShadow_2644_2341\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2341\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wxtg9a\",\"data-framer-name\":\"Frame 2105\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_dd_2644_2343)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#004EFC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2343\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2343\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2343\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2343\" result=\"effect2_dropShadow_2644_2343\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2343\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ohwmeq\",\"data-framer-name\":\"Frame 2101\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dptva6\",\"data-framer-name\":\"Frame 2106\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-swteu3\",\"data-framer-name\":\"Frame 2111\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pytku9\",\"data-framer-name\":\"Frame 2107\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_dd_2644_2349)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#004EFC\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2349\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2349\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2349\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.305882 0 0 0 0 0.988235 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2349\" result=\"effect2_dropShadow_2644_2349\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2349\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16pjfwt\",\"data-framer-name\":\"Frame 2116\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n17x9q\",\"data-framer-name\":\"Frame 2112\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wo2gw9\",\"data-framer-name\":\"Frame 2103\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e14nch\",\"data-framer-name\":\"Frame 2115\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ny4oid\",\"data-framer-name\":\"Frame 2108\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-198j88v\",\"data-framer-name\":\"Frame 2113\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19fdf4s\",\"data-framer-name\":\"Cursor – Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ea3ui3\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2am9qf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"32\" viewBox=\"0 0 22 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.606 31.7836C15.0644 32.0401 14.5228 32.0686 13.9812 31.8691C13.4397 31.6695 13.0406 31.299 12.7841 30.7574L7.35405 19.1278L2.30883 26.1825C1.9383 26.6956 1.4608 26.8523 0.8765 26.6528C0.292195 26.4532 0 26.04 0 25.4129V1.29843C0 0.756857 0.242256 0.372052 0.726854 0.144016C1.21145 -0.0840105 1.66749 -0.0412543 2.09505 0.272285L21.036 15.1514C21.5206 15.5504 21.656 16.035 21.4422 16.6051C21.2284 17.1752 20.8222 17.4603 20.2236 17.4603H11.3304L16.6321 28.9617C16.8887 29.5032 16.9171 30.0448 16.7176 30.5864C16.5181 31.1279 16.1475 31.527 15.606 31.7836Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvpzgi\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2lyY3VsYXIgU3RkLTcwMA==\",\"--framer-font-family\":'\"Circular Std\", \"Circular Std Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"No hardware required\"})}),className:\"framer-1uk47mu\",\"data-framer-name\":\"No hardware required\",fonts:[\"GF;Circular Std-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Our software-only solution integrates with your existing systems, eliminating the need for any specialized hardware or onsite installation.\"})}),className:\"framer-1sz3rsd\",\"data-framer-name\":\"Our software-only solution integrates with your existing systems, eliminating the need for any specialized hardware or onsite installation.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kktxaw\",\"data-framer-name\":\"Card-2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kx8yqj\",\"data-framer-name\":\"Card Header – Single Integration\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1voomxw\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10hrz62\",\"data-framer-name\":\"Group 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lavd17\",\"data-framer-name\":\"Frame 2104\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ni8u0m\",\"data-framer-name\":\"Frame 2109\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_dd_2644_2367)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#CA5CFD\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2367\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.623529 0 0 0 0 0.32549 0 0 0 0 1 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2367\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2367\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.623529 0 0 0 0 0.32549 0 0 0 0 1 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2367\" result=\"effect2_dropShadow_2644_2367\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2367\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d4b0gn\",\"data-framer-name\":\"Frame 2105\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m41t06\",\"data-framer-name\":\"Frame 2114\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idxkzn\",\"data-framer-name\":\"Frame 2116\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m559vl\",\"data-framer-name\":\"Frame 2115\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nb8pte\",\"data-framer-name\":\"Frame 2101\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19me877\",\"data-framer-name\":\"Frame 2106\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nh9up7\",\"data-framer-name\":\"Frame 2105\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-842xg0\",\"data-framer-name\":\"Frame 2111\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10oxenx\",\"data-framer-name\":\"Frame 2107\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ay5q1\",\"data-framer-name\":\"Frame 2117\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t14u64\",\"data-framer-name\":\"Frame 2112\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lqvjj\",\"data-framer-name\":\"Frame 2103\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1poptn1\",\"data-framer-name\":\"Frame 2113\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cr2ixq\",\"data-framer-name\":\"Plug – Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-owqbeo\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t9nnoa\",\"data-framer-name\":\"Subtract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"34\" viewBox=\"0 0 38 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.0156 24.4375V27.625V30.8125V32.4062C30.0156 32.8666 29.8651 33.2474 29.5641 33.5484C29.2631 33.8494 28.8823 34 28.4219 34H23.375C22.3479 34 21.4713 33.5838 20.7453 32.7516C20.0193 31.9193 19.6562 30.9188 19.6562 29.75H16.2031C15.7427 29.75 15.3619 29.5994 15.0609 29.2984C14.7599 28.9974 14.6094 28.6166 14.6094 28.1562V23.9062C14.6094 23.4459 14.7599 23.0651 15.0609 22.7641C15.3619 22.4631 15.7427 22.3125 16.2031 22.3125H19.6562C19.6562 21.1437 20.0193 20.1432 20.7453 19.3109C21.4713 18.4787 22.3479 18.0625 23.375 18.0625H28.4219C28.8823 18.0625 29.2631 18.2131 29.5641 18.5141C29.8651 18.8151 30.0156 19.1959 30.0156 19.6562V20.1875V21.25V24.4375ZM31.0781 21.25V24.4375H35.5938C36.0541 24.4375 36.4349 24.2781 36.7359 23.9594C37.0369 23.6406 37.1875 23.2687 37.1875 22.8438C37.1875 22.3834 37.0369 22.0026 36.7359 21.7016C36.4349 21.4006 36.0541 21.25 35.5938 21.25H31.0781ZM31.0781 27.625V30.8125H35.5938C36.0541 30.8125 36.4349 30.6531 36.7359 30.3344C37.0369 30.0156 37.1875 29.6437 37.1875 29.2188C37.1875 28.7584 37.0369 28.3776 36.7359 28.0766C36.4349 27.7756 36.0541 27.625 35.5938 27.625H31.0781ZM2.3375 25.3141C3.89584 26.8547 5.86149 27.625 8.23438 27.625H11.4219C11.8823 27.625 12.2631 27.4744 12.5641 27.1734C12.8651 26.8724 13.0156 26.4916 13.0156 26.0312C13.0156 25.5709 12.8651 25.1901 12.5641 24.8891C12.2631 24.5881 11.8823 24.4375 11.4219 24.4375H8.23438C6.74687 24.4375 5.53382 23.9771 4.59531 23.0563C3.65677 22.1354 3.1875 20.9135 3.1875 19.3906C3.1875 17.8677 3.65677 16.6459 4.59531 15.725C5.53382 14.8041 6.74687 14.3438 8.23438 14.3438H11.6875C13.7416 14.3438 15.4506 13.6619 16.8141 12.2984C18.1776 10.9349 18.8594 9.22601 18.8594 7.17188C18.8594 5.11774 18.1776 3.40882 16.8141 2.04531C15.4506 0.681775 13.7416 0 11.6875 0H3.71875C3.29375 0 2.92187 0.150525 2.60312 0.451563C2.28437 0.752601 2.125 1.13334 2.125 1.59375C2.125 2.01875 2.28437 2.39063 2.60312 2.70938C2.92187 3.02813 3.29375 3.1875 3.71875 3.1875H11.6875C12.8562 3.1875 13.8125 3.55938 14.5563 4.30313C15.3 5.04688 15.6719 6.00313 15.6719 7.17188C15.6719 8.34062 15.3 9.29688 14.5563 10.0406C13.8125 10.7844 12.8562 11.1562 11.6875 11.1562H8.23438C5.86149 11.1562 3.89584 11.9266 2.3375 13.4672C0.779163 15.0078 0 16.9823 0 19.3906C0 21.799 0.779163 23.7734 2.3375 25.3141Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phu7je\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2lyY3VsYXIgU3RkLTcwMA==\",\"--framer-font-family\":'\"Circular Std\", \"Circular Std Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"A single integration\"})}),className:\"framer-ttm4hj\",\"data-framer-name\":\"A single integration\",fonts:[\"GF;Circular Std-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"One interface to connect your resources in multiple programs and markets.\"})}),className:\"framer-bcmq65\",\"data-framer-name\":\"One interface to connect your resources in multiple programs and markets.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ikh72k\",\"data-framer-name\":\"Card-3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w9rc57\",\"data-framer-name\":\"Card Header – Built for Scale\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-70pjlm\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5g49g\",\"data-framer-name\":\"Group 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhluty\",\"data-framer-name\":\"Frame 2109\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j4toz6\",\"data-framer-name\":\"Frame 2115\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wzvmhf\",\"data-framer-name\":\"Frame 2105\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7f16ka\",\"data-framer-name\":\"Frame 2117\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ajs5bq\",\"data-framer-name\":\"Frame 2116\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14d4j9s\",\"data-framer-name\":\"Frame 2101\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8igo1\",\"data-framer-name\":\"Frame 2106\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l6haes\",\"data-framer-name\":\"Frame 2111\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dcz913\",\"data-framer-name\":\"Frame 2107\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2dq4i0\",\"data-framer-name\":\"Frame 2118\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x4u0ho\",\"data-framer-name\":\"Frame 2112\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f5jvvt\",\"data-framer-name\":\"Frame 2114\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_dd_2644_2623)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#58E2C0\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2623\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.611765 0 0 0 0 0.572549 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2623\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2623\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0.611765 0 0 0 0 0.572549 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2623\" result=\"effect2_dropShadow_2644_2623\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2623\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v57yqm\",\"data-framer-name\":\"Frame 2103\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-103z54v\",\"data-framer-name\":\"Frame 2113\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tsps9\",\"data-framer-name\":\"Build – Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pll6jk\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1s5jpy\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36 36\"><path d=\"M 1.5 16.5 C 1.075 16.5 0.719 16.356 0.431 16.069 C 0.144 15.781 0 15.425 0 15 L 0 1.5 C 0 1.075 0.144 0.719 0.431 0.431 C 0.719 0.144 1.075 0 1.5 0 L 15 0 C 15.425 0 15.781 0.144 16.069 0.431 C 16.356 0.719 16.5 1.075 16.5 1.5 L 16.5 15 C 16.5 15.425 16.356 15.781 16.069 16.069 C 15.781 16.356 15.425 16.5 15 16.5 Z M 21 16.5 C 20.575 16.5 20.219 16.356 19.931 16.069 C 19.644 15.781 19.5 15.425 19.5 15 L 19.5 1.5 C 19.5 1.075 19.644 0.719 19.931 0.431 C 20.219 0.144 20.575 0 21 0 L 34.5 0 C 34.925 0 35.281 0.144 35.569 0.431 C 35.856 0.719 36 1.075 36 1.5 L 36 15 C 36 15.425 35.856 15.781 35.569 16.069 C 35.281 16.356 34.925 16.5 34.5 16.5 Z M 1.5 36 C 1.075 36 0.719 35.856 0.431 35.569 C 0.144 35.281 0 34.925 0 34.5 L 0 21 C 0 20.575 0.144 20.219 0.431 19.931 C 0.719 19.644 1.075 19.5 1.5 19.5 L 15 19.5 C 15.425 19.5 15.781 19.644 16.069 19.931 C 16.356 20.219 16.5 20.575 16.5 21 L 16.5 34.5 C 16.5 34.925 16.356 35.281 16.069 35.569 C 15.781 35.856 15.425 36 15 36 Z M 27.741 36 C 27.314 36 26.958 35.856 26.675 35.569 C 26.392 35.281 26.25 34.925 26.25 34.5 L 26.25 29.25 L 20.95 29.25 C 20.55 29.25 20.208 29.105 19.925 28.816 C 19.642 28.527 19.5 28.169 19.5 27.741 C 19.5 27.314 19.644 26.958 19.931 26.675 C 20.219 26.392 20.575 26.25 21 26.25 L 26.25 26.25 L 26.25 20.95 C 26.25 20.55 26.395 20.208 26.684 19.925 C 26.973 19.642 27.331 19.5 27.759 19.5 C 28.186 19.5 28.542 19.644 28.825 19.931 C 29.108 20.219 29.25 20.575 29.25 21 L 29.25 26.25 L 34.55 26.25 C 34.95 26.25 35.292 26.395 35.575 26.684 C 35.858 26.973 36 27.331 36 27.759 C 36 28.186 35.856 28.542 35.569 28.825 C 35.281 29.108 34.925 29.25 34.5 29.25 L 29.25 29.25 L 29.25 34.55 C 29.25 34.95 29.105 35.292 28.816 35.575 C 28.527 35.858 28.169 36 27.741 36 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10423176813,withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11gtnvb\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2lyY3VsYXIgU3RkLTcwMA==\",\"--framer-font-family\":'\"Circular Std\", \"Circular Std Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Built for scale\"})}),className:\"framer-1bmn5qt\",\"data-framer-name\":\"Built for scale\",fonts:[\"GF;Circular Std-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Our comprehensive suite of extensible APIs let you automate and customize your VPP operations to enable rapid growth.\"})}),className:\"framer-15t8ws\",\"data-framer-name\":\"Our comprehensive suite of extensible APIs let you automate and customize your VPP operations to enable rapid growth.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlo5ae\",\"data-framer-name\":\"Card-4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1viweph\",\"data-framer-name\":\"Card Header – End-to-end\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ggcgr\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3afd6\",\"data-framer-name\":\"Group 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-172d1fk\",\"data-framer-name\":\"Frame 2109\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rvbuok\",\"data-framer-name\":\"Frame 2115\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12myc8\",\"data-framer-name\":\"Frame 2105\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nqlq4h\",\"data-framer-name\":\"Frame 2117\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rl0eai\",\"data-framer-name\":\"Frame 2116\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16bjekg\",\"data-framer-name\":\"Frame 2101\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-142g037\",\"data-framer-name\":\"Frame 2106\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w14q6d\",\"data-framer-name\":\"Frame 2111\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-frk481\",\"data-framer-name\":\"Frame 2107\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18pseav\",\"data-framer-name\":\"Frame 2118\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l5fch0\",\"data-framer-name\":\"Frame 2112\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q0gsru\",\"data-framer-name\":\"Frame 2114\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_dd_2644_2648)\">\\n<rect width=\"48\" height=\"48\" rx=\"10\" fill=\"#FF785A\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_2644_2648\" x=\"-11\" y=\"-7\" width=\"70\" height=\"70\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 0.470588 0 0 0 0 0.352941 0 0 0 0.3 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2644_2648\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"3\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_2644_2648\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 0.470588 0 0 0 0 0.352941 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_2644_2648\" result=\"effect2_dropShadow_2644_2648\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_2644_2648\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgh867\",\"data-framer-name\":\"Frame 2103\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-199iaon\",\"data-framer-name\":\"Frame 2113\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ewqbql\",\"data-framer-name\":\"Path – Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8z4h5\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pkskc9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.4444 32C8.51849 32 6.88889 31.326 5.55556 29.9778C4.22222 28.6296 3.55556 27.0074 3.55556 25.1111V9.6C2.51852 9.21484 1.66667 8.6 1 7.75556C0.333333 6.91111 0 5.95556 0 4.88889C0 3.52593 0.481484 2.37037 1.44444 1.42222C2.4074 0.474071 3.55556 0 4.88889 0C6.25182 0 7.40738 0.474071 8.35556 1.42222C9.30373 2.37037 9.77778 3.52593 9.77778 4.88889C9.77778 5.95556 9.44444 6.91111 8.77778 7.75556C8.11111 8.6 7.25929 9.21484 6.22222 9.6V25.1111C6.22222 26.2667 6.6296 27.2593 7.44444 28.0889C8.25929 28.9185 9.25929 29.3333 10.4444 29.3333C11.6593 29.3333 12.6667 28.9185 13.4667 28.0889C14.2667 27.2593 14.6667 26.2667 14.6667 25.1111V6.88889C14.6667 4.96293 15.3333 3.33333 16.6667 2C18 0.666667 19.6296 0 21.5556 0C23.4815 0 25.1111 0.666667 26.4444 2C27.7778 3.33333 28.4444 4.96293 28.4444 6.88889V22.4C29.4815 22.7852 30.3333 23.4 31 24.2444C31.6667 25.0889 32 26.0444 32 27.1111C32 28.4444 31.526 29.5926 30.5778 30.5556C29.6296 31.5185 28.474 32 27.1111 32C25.7778 32 24.6296 31.5185 23.6667 30.5556C22.7037 29.5926 22.2222 28.4444 22.2222 27.1111C22.2222 26.0444 22.5556 25.0815 23.2222 24.2222C23.8889 23.3629 24.7407 22.7556 25.7778 22.4V6.88889C25.7778 5.70373 25.3704 4.70373 24.5556 3.88889C23.7407 3.07407 22.7407 2.66667 21.5556 2.66667C20.3704 2.66667 19.3704 3.07407 18.5556 3.88889C17.7407 4.70373 17.3333 5.70373 17.3333 6.88889V25.1111C17.3333 27.0074 16.6667 28.6296 15.3333 29.9778C14 31.326 12.3704 32 10.4444 32Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mv9vmz\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2lyY3VsYXIgU3RkLTcwMA==\",\"--framer-font-family\":'\"Circular Std\", \"Circular Std Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"End-to-end VPP management\"})}),className:\"framer-1hzgll4\",\"data-framer-name\":\"End-to-end VPP management\",fonts:[\"GF;Circular Std-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Easily oversee every aspect of VPP operations, from enrolling resources through dispatching and getting paid for your grid contributions.\"})}),className:\"framer-se57kd\",\"data-framer-name\":\"Easily oversee every aspect of VPP operations, from enrolling resources through dispatching and getting paid for your grid contributions.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jtwzly hidden-74zeyp\",\"data-framer-name\":\"Gradient\",style:{rotate:13}})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w3wqi2 hidden-kdy4wr hidden-74zeyp\",\"data-framer-name\":\"by the numbers\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w179tt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3z8xb3\",\"data-styles-preset\":\"WP6eAjcnm\",children:\"By the numbers\"})}),className:\"framer-19hketu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kde7w\",\"data-border\":true,\"data-framer-name\":\"2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s9lxmy\",\"data-styles-preset\":\"Gxy1nXlpx\",children:\"Technology partners\"})}),className:\"framer-6f5n5h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lfq28l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wZRrmm0yC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ClassicCounter,{delay:.4,font:{color:\"rgb(0, 78, 252)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:60},height:\"100%\",id:\"wZRrmm0yC\",layoutId:\"wZRrmm0yC\",prefix:\"\",prefixColor:\"rgb(255, 255, 255)\",speed:.4,startValue:\"0\",style:{width:\"100%\"},suffix:\"+\",suffixColor:\"rgb(0, 78, 252)\",targetNumber:\"96\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-chvzcx\",\"data-border\":true,\"data-framer-name\":\"2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1s9lxmy\",\"data-styles-preset\":\"Gxy1nXlpx\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique energy assets  enrolled on the platform\"})}),className:\"framer-1unra34\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w025th-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SzNUS2rK9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ClassicCounter,{delay:.4,font:{color:\"rgb(0, 78, 252)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:60},height:\"100%\",id:\"SzNUS2rK9\",layoutId:\"SzNUS2rK9\",prefix:\"\",prefixColor:\"rgb(255, 255, 255)\",speed:.4,startValue:\"0\",style:{width:\"100%\"},suffix:\",000+\",suffixColor:\"rgb(0, 78, 252)\",targetNumber:\"324\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fcgaty\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1zhaq hidden-mxn4r3 hidden-kdy4wr\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nt7gzb\",\"data-framer-name\":\"Intro Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w7mxxv\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x84thc-container\",isModuleExternal:true,nodeId:\"bS5W_nSeV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ICONPlatform,{height:\"100%\",id:\"bS5W_nSeV\",layoutId:\"bS5W_nSeV\",style:{height:\"100%\",width:\"100%\"},variant:\"hxIQIlONd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3c9w34\",\"data-styles-preset\":\"Ot6gvtLSX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Why Leap?\"})}),className:\"framer-1tv6v7d\",\"data-framer-name\":\"Partner with us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-103s8wq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-dfx45i\",\"data-styles-preset\":\"twU6R_GNi\",children:[\"What our \",/*#__PURE__*/_jsx(\"br\",{}),\"partners say\"]})}),className:\"framer-g39z7a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{y:(componentViewport?.y||0)+0+6257.3+60+0+0+0+0+77+0+111.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-psc6zx-container\",nodeId:\"ctUN0Ez_K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSolutions,{height:\"100%\",id:\"ctUN0Ez_K\",layoutId:\"ctUN0Ez_K\",style:{height:\"100%\"},variant:\"ZmfAEoIQq\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9dtsoa\",\"data-framer-name\":\"Gradient\"})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z92hf0 hidden-74zeyp\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s9rmo3\",\"data-framer-name\":\"Intro Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d8rjff\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wprq3e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fs91pq-container\",isModuleExternal:true,nodeId:\"qc6_Oow1y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(126, 0, 252)\",height:\"100%\",iconSearch:\"ElectricBolt\",iconSelection:\"Bolt\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"qc6_Oow1y\",layoutId:\"qc6_Oow1y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3c9w34\",\"data-styles-preset\":\"Ot6gvtLSX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Why Leap?\"})}),className:\"framer-jexb96\",\"data-framer-name\":\"Partner with us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3k6gx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-dfx45i\",\"data-styles-preset\":\"twU6R_GNi\",children:[\"What our \",/*#__PURE__*/_jsx(\"br\",{}),\"partners say\"]})}),className:\"framer-d7bucg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yel4sbrq0:{y:(componentViewport?.y||0)+0+4190.3+60+0+0+0+0+77+0+111.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+4212.3+150+0+0+0+0+77+0+111.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vqkjtm-container\",nodeId:\"X4vlXOUyB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSolutions,{height:\"100%\",id:\"X4vlXOUyB\",layoutId:\"X4vlXOUyB\",style:{height:\"100%\"},variant:\"ZmfAEoIQq\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wbvwq8\",\"data-framer-name\":\"Gradient\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u7tt9a\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k869jq\",\"data-framer-name\":\"Carrier\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nsmndw\",\"data-border\":true,\"data-framer-name\":\"Testimonial 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n5uiao\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6257.3+1702-1344+0+26+0+0+31+0+0+0),pixelHeight:774,pixelWidth:1920,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/R8RU8vsuy0PfvTAYOY966lfG2lI.png\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4190.3+930-562+0+0+0+0+40+0+0+0),pixelHeight:774,pixelWidth:1920,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/R8RU8vsuy0PfvTAYOY966lfG2lI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4212.3+932-420+0+0+0+0+40+0+0+0),pixelHeight:774,pixelWidth:1920,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/R8RU8vsuy0PfvTAYOY966lfG2lI.png\"},className:\"framer-uxq5zh\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1le01qp\",\"data-styles-preset\":\"NX1H1neN2\",children:[\"“Leap’s platform made it easy to \",/*#__PURE__*/_jsx(\"strong\",{children:\"seamlessly scale our program into a new market\"}),\", helping us deliver on our mission to empower customers with smarter, more sustainable energy solutions while contributing to grid stability.”\"]})}),className:\"framer-mlul9m\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3kkvri\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\"},children:\"Christine Rasche\"})}),className:\"framer-1s9eyy6\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Associate Director of Home Energy Management Solutions\"})}),className:\"framer-1j9rd7w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lvt8sx\",\"data-framer-name\":\"Gridpoint\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5g5p9\",\"data-border\":true,\"data-framer-name\":\"Testimonial 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1httiym\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6257.3+1702-1344+0+446+0+0+30+0+18+0),pixelHeight:122,pixelWidth:799,positionX:\"center\",positionY:\"center\",sizes:\"169px\",src:\"https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png\",srcSet:\"https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png 799w\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4190.3+930-562+0+0+0+0+40+0+0+0),pixelHeight:122,pixelWidth:799,positionX:\"center\",positionY:\"center\",sizes:\"169px\",src:\"https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png\",srcSet:\"https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png 799w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4212.3+932-420+0+0+0+0+40+0+0+0),pixelHeight:122,pixelWidth:799,positionX:\"center\",positionY:\"center\",sizes:\"155px\",src:\"https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png\",srcSet:\"https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fdMJkdBm6216HBd8gjUYa2ogNAU.png 799w\"},className:\"framer-1nplkxq\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1le01qp\",\"data-styles-preset\":\"NX1H1neN2\",children:'\"In Leap, we’ve found a strategic partner who shares our vision of harnessing the tremendous potential of grid-interactive technologies to accelerate the energy transition.\"'})}),className:\"framer-ygz2al\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vsu2ch\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\"},children:\"Mark Danzenbaker\"})}),className:\"framer-71j9y5\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Former CEO\"})}),className:\"framer-1p38ack\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14h6g5n\",\"data-framer-name\":\"ETB\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a2wlvw\",\"data-border\":true,\"data-framer-name\":\"Testimonial 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v1aqvi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6257.3+1702-1344+0+926+0+0+24+0+0+0),pixelHeight:504,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"230px\",src:\"https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png\",srcSet:\"https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png 3000w\"}},yel4sbrq0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4190.3+930-562+0+0+0+0+40+0+0+0),pixelHeight:504,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"181px\",src:\"https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png\",srcSet:\"https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4212.3+932-420+0+0+0+0+40+0+0+0),pixelHeight:504,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png\",srcSet:\"https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5RvKGW80woafNN1GS5QnxlxoXDE.png 3000w\"},className:\"framer-yw5121\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1le01qp\",\"data-styles-preset\":\"NX1H1neN2\",children:[\"“Featuring grid revenues from Leap in our models has \",/*#__PURE__*/_jsx(\"strong\",{children:\"helped us win deals\"}),\" we wouldn’t have won before and helped new deals get over the line.”\"]})}),className:\"framer-p0rgv8\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rvk3jn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Quinn Laudenslager\"})})}),className:\"framer-146o83q\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"VP of Product\"})}),className:\"framer-12tdc1e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lz7a40\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{width:\"373px\",y:(componentViewport?.y||0)+0+8047.3},yel4sbrq0:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+5210.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:256,width:\"1140px\",y:(componentViewport?.y||0)+0+5294.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fbv4eb-container\",id:\"1fbv4eb\",nodeId:\"DQJtqF855\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{style:{height:\"100%\",width:\"100%\"},variant:\"kHcUXQYem\"},yel4sbrq0:{style:{height:\"100%\",width:\"100%\"},variant:\"h3aMa0kie\"}},children:/*#__PURE__*/_jsx(CTAFooterBanner,{height:\"100%\",id:\"DQJtqF855\",layoutId:\"DQJtqF855\",style:{width:\"100%\"},variant:\"Yu5aLjDPF\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b7fs8b hidden-kdy4wr hidden-74zeyp\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{height:993,width:\"393px\",y:(componentViewport?.y||0)+0+8303.3},yel4sbrq0:{height:953,width:\"807px\",y:(componentViewport?.y||0)+0+5466.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:426,width:\"1200px\",y:(componentViewport?.y||0)+0+5700.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mv7qx-container\",nodeId:\"JDgsBW_cY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{variant:\"O7mC4bk8L\"},yel4sbrq0:{variant:\"xDm5RGXyy\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"JDgsBW_cY\",layoutId:\"JDgsBW_cY\",style:{height:\"100%\",width:\"100%\"},variant:\"U5wjeRWa_\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s174td hidden-kdy4wr hidden-74zeyp\",\"data-border\":true,\"data-framer-name\":\"Menu in Frame\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"1134px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ibmnnc-container\",nodeId:\"un8KWXlMO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeapNavigation,{height:\"100%\",id:\"un8KWXlMO\",layoutId:\"un8KWXlMO\",style:{height:\"100%\",width:\"100%\"},variant:\"M4r_4MGoQ\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{height:84,width:\"100vw\",y:0},yel4sbrq0:{height:84,width:\"100vw\",y:-.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{layoutScroll:true},yel4sbrq0:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-2gcx2k-container hidden-mxn4r3\",nodeId:\"KdT5VJvta\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LeapNavigationMobile,{height:\"100%\",id:\"KdT5VJvta\",layoutId:\"KdT5VJvta\",style:{width:\"100%\"},variant:\"r8osw2CTP\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rkuzze hidden-mxn4r3\",\"data-framer-name\":\"by the numbers\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3z8xb3\",\"data-styles-preset\":\"WP6eAjcnm\",children:\"By the numbers\"})}),className:\"framer-rxaf5y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ohrshp\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jywmjy\",\"data-border\":true,\"data-framer-name\":\"2\",style:{transformPerspective:1200},children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n7idhq\",\"data-styles-preset\":\"r6KWOZr1g\",style:{\"--framer-text-alignment\":\"center\"},children:\"Technology partners\"})}),className:\"framer-x5yj29 hidden-74zeyp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ub3duk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JjXKXf_Z_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{font:{color:\"rgb(0, 78, 252)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:40}}},children:/*#__PURE__*/_jsx(ClassicCounter,{delay:.4,font:{color:\"rgb(0, 78, 252)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:45},height:\"100%\",id:\"JjXKXf_Z_\",layoutId:\"JjXKXf_Z_\",prefix:\"\",prefixColor:\"rgb(255, 255, 255)\",speed:.4,startValue:\"0\",style:{width:\"100%\"},suffix:\"+\",suffixColor:\"rgb(0, 78, 252)\",targetNumber:\"96\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n7idhq\",\"data-styles-preset\":\"r6KWOZr1g\",style:{\"--framer-text-alignment\":\"center\"},children:\"Technology partners\"})}),className:\"framer-1xociy1 hidden-mxn4r3 hidden-kdy4wr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rd9u1z\",\"data-border\":true,\"data-framer-name\":\"2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n7idhq\",\"data-styles-preset\":\"r6KWOZr1g\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unique energy assets  enrolled on the platform\"})}),className:\"framer-2d807b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u1xr0q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZQAxuBr23\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JGNErKFyH:{font:{color:\"rgb(0, 78, 252)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:40},targetNumber:\"324\"},yel4sbrq0:{targetNumber:\"324\"}},children:/*#__PURE__*/_jsx(ClassicCounter,{delay:.4,font:{color:\"rgb(0, 78, 252)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:45},height:\"100%\",id:\"ZQAxuBr23\",layoutId:\"ZQAxuBr23\",prefix:\"\",prefixColor:\"rgb(255, 255, 255)\",speed:.4,startValue:\"0\",style:{width:\"100%\"},suffix:\",000+\",suffixColor:\"rgb(0, 78, 252)\",targetNumber:\"253\",width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JdXIG.framer-lux5qc, .framer-JdXIG .framer-lux5qc { display: block; }\",\".framer-JdXIG.framer-mxn4r3 { align-content: center; align-items: center; background-color: #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-JdXIG .framer-1p5ekq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 629px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-JdXIG .framer-aerinj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 472px; justify-content: center; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 1100px; z-index: 1; }\",\".framer-JdXIG .framer-zrje4a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 463px; justify-content: space-evenly; overflow: visible; padding: 0px; position: relative; width: 46%; }\",\".framer-JdXIG .framer-rfne1f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: 447px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 496px; }\",\".framer-JdXIG .framer-1nq999w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: 208px; position: relative; white-space: pre-wrap; width: 494px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-14y8h7y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 471px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-sqnygf-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JdXIG .framer-auoz8h { flex: none; height: 443px; overflow: hidden; position: relative; width: 53%; }\",\".framer-JdXIG .framer-16uu7h0 { -webkit-filter: drop-shadow(0px 1px 1px rgba(199, 199, 199, 0.25)); filter: drop-shadow(0px 1px 1px rgba(199, 199, 199, 0.25)); flex: none; height: 342px; left: 0px; position: absolute; top: 0px; width: 551px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JdXIG .framer-1rajwx9 { -webkit-filter: drop-shadow(0px 1px 1px rgba(199, 199, 199, 0.25)); filter: drop-shadow(0px 1px 1px rgba(199, 199, 199, 0.25)); flex: none; height: 225px; position: absolute; right: 0px; top: calc(48.53273137697519% - 225px / 2); width: 293px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JdXIG .framer-1jnxepo { -webkit-filter: drop-shadow(0px 1px 1px rgba(199, 199, 199, 0.25)); filter: drop-shadow(0px 1px 1px rgba(199, 199, 199, 0.25)); flex: none; height: 162px; position: absolute; right: -23px; top: calc(46.17834394904461% - 162.0874125874126px / 2); width: 227px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JdXIG .framer-1vq0ph { bottom: 15px; flex: none; height: 266px; left: 36px; position: absolute; width: 217px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JdXIG .framer-1gscmiv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 1000px; }\",\".framer-JdXIG .framer-1vmgw03, .framer-JdXIG .framer-1oeq33z, .framer-JdXIG .framer-1t1koga, .framer-JdXIG .framer-w7mxxv, .framer-JdXIG .framer-1d8rjff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 46px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 238px; }\",\".framer-JdXIG .framer-1dllai7, .framer-JdXIG .framer-wprq3e { aspect-ratio: 1 / 1; background-color: #f0e7f9; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: hidden; position: relative; width: 26px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-w3d527-container { aspect-ratio: 1 / 1; bottom: -1px; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 50%; position: absolute; transform: translateX(-50%); width: 22px; }\",\".framer-JdXIG .framer-15asu7z, .framer-JdXIG .framer-bga8r9, .framer-JdXIG .framer-14s6m09, .framer-JdXIG .framer-1tv6v7d, .framer-JdXIG .framer-jexb96 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-JdXIG .framer-16e2bi9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 13px 0px 13px 0px; position: relative; width: 1000px; }\",\".framer-JdXIG .framer-1i6pqtv, .framer-JdXIG .framer-14tpe7b, .framer-JdXIG .framer-d7bucg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 914px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1xp6wmb-container { flex: none; height: 318px; position: relative; width: 1500px; }\",\".framer-JdXIG .framer-1c9j173 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 1140px; }\",\".framer-JdXIG .framer-1pn05nv, .framer-JdXIG .framer-m6pqa6, .framer-JdXIG .framer-s9rmo3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-JdXIG .framer-t613xk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-JdXIG .framer-1oh8lkg { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-JdXIG .framer-7an56a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 634px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1z13n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 999px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-19vv7wm-container, .framer-JdXIG .framer-5n9y3l-container, .framer-JdXIG .framer-psc6zx-container, .framer-JdXIG .framer-vqkjtm-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-JdXIG .framer-17hq8zo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JdXIG .framer-1ivhhx6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JdXIG .framer-zfs052-container, .framer-JdXIG .framer-17csi2h-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-JdXIG .framer-q84ro4 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 450px; overflow: hidden; position: relative; width: 1140px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1wesrgm { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 100px; position: absolute; top: 0px; width: 708px; }\",\".framer-JdXIG .framer-a63f8h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 372px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-c9n76k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 607px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-lb9q5x-container { flex: none; height: 35px; position: relative; width: auto; }\",\".framer-JdXIG .framer-1la04h9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 1140px; }\",\".framer-JdXIG .framer-1eo90l7 { background-color: #ffffff; flex: none; height: 46px; overflow: visible; position: relative; width: 27px; }\",\".framer-JdXIG .framer-1rp2sgh { aspect-ratio: 1 / 1; background-color: #e0fef6; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 52%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 26px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1fg9jzf-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 50%; position: absolute; top: 46%; transform: translate(-50%, -50%); width: 18px; }\",\".framer-JdXIG .framer-1305zi0, .framer-JdXIG .framer-a3k6gx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 484px; }\",\".framer-JdXIG .framer-3rfd3x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-JdXIG .framer-1tp8j4c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 441px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1140px; }\",\".framer-JdXIG .framer-1komyt0 { align-content: center; align-items: center; background: linear-gradient(128.9745311076352deg, #dbdfff 0%, rgb(214, 245, 241) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 38px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-m9ae2c, .framer-JdXIG .framer-1w9rc57, .framer-JdXIG .framer-1viweph { flex: none; gap: 0px; height: 164px; overflow: hidden; position: relative; width: 270px; }\",\".framer-JdXIG .framer-1hqitvs { flex: none; height: 236px; left: -36px; overflow: hidden; position: absolute; top: -72px; width: 439px; }\",\".framer-JdXIG .framer-1lpkpz { bottom: -6px; flex: none; height: 176px; left: -14px; overflow: visible; position: absolute; width: 368px; }\",\".framer-JdXIG .framer-1k6oo2p { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-seuhcb { flex: none; height: 48px; left: calc(28.26086956521739% - 48px / 2); position: absolute; top: calc(50% - 48px / 2); width: 48px; }\",\".framer-JdXIG .framer-b98asr { flex: none; height: 48px; left: calc(28.26086956521739% - 48px / 2); position: absolute; top: calc(86.36363636363636% - 48px / 2); width: 48px; }\",\".framer-JdXIG .framer-wxtg9a { flex: none; height: 48px; left: calc(28.26086956521739% - 48px / 2); position: absolute; top: calc(13.636363636363635% - 48px / 2); width: 48px; }\",\".framer-JdXIG .framer-ohwmeq { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1dptva6 { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-swteu3 { aspect-ratio: 1 / 1; background-color: #87acff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-pytku9 { flex: none; height: 48px; left: calc(71.73913043478261% - 48px / 2); position: absolute; top: calc(13.636363636363635% - 48px / 2); width: 48px; }\",\".framer-JdXIG .framer-16pjfwt { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-n17x9q { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.2; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-wo2gw9 { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-e14nch { aspect-ratio: 1 / 1; background-color: #004efc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1ny4oid { aspect-ratio: 1 / 1; background-color: #87acff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-198j88v { aspect-ratio: 1 / 1; background-color: #87acff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-19fdf4s { aspect-ratio: 1 / 1; background-color: #3171ff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 78, 252, 0.3), 0px 4px 8px 3px rgba(0, 78, 252, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1ea3ui3, .framer-JdXIG .framer-owqbeo, .framer-JdXIG .framer-1b8z4h5 { flex: none; gap: 0px; height: 64px; left: calc(50% - 64px / 2); overflow: hidden; position: absolute; top: calc(50% - 64px / 2); width: 64px; }\",\".framer-JdXIG .framer-2am9qf { flex: none; height: 32px; left: calc(49.640899896621704% - 22px / 2); position: absolute; top: calc(50% - 32px / 2); width: 22px; }\",\".framer-JdXIG .framer-wvpzgi, .framer-JdXIG .framer-11gtnvb, .framer-JdXIG .framer-1mv9vmz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: 100%; }\",\".framer-JdXIG .framer-1uk47mu, .framer-JdXIG .framer-1sz3rsd, .framer-JdXIG .framer-ttm4hj, .framer-JdXIG .framer-bcmq65, .framer-JdXIG .framer-1bmn5qt, .framer-JdXIG .framer-15t8ws, .framer-JdXIG .framer-1hzgll4, .framer-JdXIG .framer-se57kd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 194px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1kktxaw { align-content: center; align-items: center; background: linear-gradient(128.9745311076352deg, #f5faf0 0%, rgb(255, 224, 252) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 38px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-kx8yqj { flex: none; gap: 0px; height: 164px; overflow: hidden; position: relative; width: 267px; }\",\".framer-JdXIG .framer-1voomxw { flex: none; height: 236px; left: calc(50% - 439px / 2); overflow: hidden; position: absolute; top: -80px; width: 439px; }\",\".framer-JdXIG .framer-10hrz62 { flex: none; height: 176px; left: 36px; overflow: visible; position: absolute; top: 74px; width: 368px; }\",\".framer-JdXIG .framer-lavd17 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.5; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1ni8u0m { flex: none; height: 48px; left: calc(50% - 48px / 2); position: absolute; top: calc(86.36363636363636% - 48px / 2); width: 48px; }\",\".framer-JdXIG .framer-d4b0gn { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-m41t06 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1idxkzn { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.2; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-m559vl { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.2; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-nb8pte { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-19me877 { aspect-ratio: 1 / 1; background-color: #ab00fc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.4; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1nh9up7 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-842xg0 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-10oxenx { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.4; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-19ay5q1 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-t14u64 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-10lqvjj { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1poptn1 { aspect-ratio: 1 / 1; background-color: #ca5cfd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-cr2ixq { aspect-ratio: 1 / 1; background-color: #ab00fc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(159, 83, 255, 0.3), 0px 4px 8px 3px rgba(159, 83, 255, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1t9nnoa { flex: none; height: 34px; left: 13px; position: absolute; top: 15px; width: 38px; }\",\".framer-JdXIG .framer-phu7je { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-JdXIG .framer-ikh72k { align-content: center; align-items: center; background: linear-gradient(128.9745311076352deg, #ebfeff 0%, rgb(199, 255, 226) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 38px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-70pjlm, .framer-JdXIG .framer-ggcgr { bottom: 0px; flex: none; height: 236px; left: calc(50% - 439px / 2); overflow: hidden; position: absolute; width: 439px; }\",\".framer-JdXIG .framer-n5g49g, .framer-JdXIG .framer-s3afd6 { flex: none; height: 176px; left: 36px; overflow: visible; position: absolute; top: 66px; width: 368px; }\",\".framer-JdXIG .framer-1nhluty { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-j4toz6 { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1wzvmhf { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-7f16ka { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-ajs5bq { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-14d4j9s { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.5; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-u8igo1 { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1l6haes { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1dcz913 { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.5; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-2dq4i0 { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.4; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1x4u0ho { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-f5jvvt, .framer-JdXIG .framer-1q0gsru { flex: none; height: 48px; left: calc(71.73913043478261% - 48px / 2); position: absolute; top: calc(50% - 48px / 2); width: 48px; }\",\".framer-JdXIG .framer-1v57yqm { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-103z54v { aspect-ratio: 1 / 1; background-color: #58e2c0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-4tsps9 { aspect-ratio: 1 / 1; background-color: #009c92; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(0, 156, 146, 0.3), 0px 4px 8px 3px rgba(0, 156, 146, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1pll6jk { flex: none; gap: 0px; height: 64px; left: calc(39.06250000000002% - 50px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 64px / 2); width: 50px; }\",\".framer-JdXIG .framer-1s5jpy { flex: none; height: 36px; left: calc(64.00000000000003% - 36px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 36px; }\",\".framer-JdXIG .framer-1nlo5ae { align-content: center; align-items: center; background: linear-gradient(128.9745311076352deg, #fff2ef 0%, rgb(255, 215, 206) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 38px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-172d1fk { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-rvbuok { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-12myc8 { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1nqlq4h { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; opacity: 0.4; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-rl0eai { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 28%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-16bjekg { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.5; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-142g037 { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; opacity: 0.2; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-w14q6d { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 7%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-frk481 { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.5; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-18pseav { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.4; overflow: hidden; position: absolute; top: 14%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1l5fch0 { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 72%; opacity: 0.4; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1xgh867 { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; opacity: 0.4; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-199iaon { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); left: 93%; overflow: hidden; position: absolute; top: 86%; transform: translate(-50%, -50%); width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-ewqbql { aspect-ratio: 1 / 1; background-color: #ff785a; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 3px 0px rgba(255, 120, 90, 0.3), 0px 4px 8px 3px rgba(255, 120, 90, 0.15); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1pkskc9 { flex: none; height: 32px; left: calc(50% - 32px / 2); position: absolute; top: calc(50% - 32px / 2); width: 32px; }\",\".framer-JdXIG .framer-1jtwzly { background: radial-gradient(43.1% 31.97329376854599% at 39.1% 59.4%, #ccfffb 0%, rgba(255, 255, 255, 0) 100%); flex: none; height: 416px; overflow: hidden; position: absolute; right: -134px; top: -86px; width: 580px; z-index: 1; }\",\".framer-JdXIG .framer-w3wqi2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-JdXIG .framer-1w179tt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JdXIG .framer-19hketu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 237px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-5kde7w, .framer-JdXIG .framer-chvzcx { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 219px; overflow: visible; position: relative; width: 350px; }\",\".framer-JdXIG .framer-6f5n5h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 49px; flex: none; height: 30px; left: calc(50.00000000000002% - 226px / 2); position: absolute; white-space: pre-wrap; width: 226px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-lfq28l-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 46px; }\",\".framer-JdXIG .framer-1unra34 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 49px; flex: none; height: 30px; left: calc(50.00000000000002% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1w025th-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 38px; }\",\".framer-JdXIG .framer-1fcgaty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 932px; justify-content: flex-start; overflow: hidden; padding: 150px 0px 0px 0px; position: relative; width: 1140px; }\",\".framer-JdXIG .framer-1i1zhaq { align-content: flex-end; align-items: flex-end; 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: 325px; }\",\".framer-JdXIG .framer-1nt7gzb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 325px; }\",\".framer-JdXIG .framer-x84thc-container { flex: none; height: 46px; position: relative; width: 27px; }\",\".framer-JdXIG .framer-103s8wq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 345px; }\",\".framer-JdXIG .framer-g39z7a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-9dtsoa { background: radial-gradient(35.699999999999996% 44.1% at 50% 50%, #f2e0ff 0%, rgba(255, 255, 255, 0) 100%); flex: none; height: 297px; overflow: hidden; position: absolute; right: -760px; top: -274px; width: 700px; z-index: 1; }\",\".framer-JdXIG .framer-z92hf0 { align-content: flex-end; align-items: flex-end; 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-JdXIG .framer-fs91pq-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-JdXIG .framer-wbvwq8 { background: radial-gradient(35.699999999999996% 44.1% at 50% 50%, #f2e0ff 0%, rgba(255, 255, 255, 0) 100%); flex: none; height: 297px; overflow: hidden; position: absolute; right: -144px; top: 0px; width: 700px; z-index: 1; }\",\".framer-JdXIG .framer-u7tt9a { bottom: 5px; display: grid; flex: none; gap: 20px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, 200px); height: 415px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-JdXIG .framer-k869jq, .framer-JdXIG .framer-lvt8sx { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 367px; }\",\".framer-JdXIG .framer-1nsmndw, .framer-JdXIG .framer-a2wlvw { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 367px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1n5uiao { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 361px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 296px; }\",\".framer-JdXIG .framer-uxq5zh { flex: none; height: 43px; overflow: hidden; position: relative; width: 123px; }\",\".framer-JdXIG .framer-mlul9m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-3kkvri { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 79px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 294px; }\",\".framer-JdXIG .framer-1s9eyy6, .framer-JdXIG .framer-71j9y5, .framer-JdXIG .framer-146o83q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 23px; position: relative; white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1j9rd7w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 248px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-r5g5p9 { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 40px 0px 2px 0px; position: relative; width: 367px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JdXIG .framer-1httiym, .framer-JdXIG .framer-1v1aqvi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 283px; }\",\".framer-JdXIG .framer-1nplkxq { flex: none; height: 39px; overflow: hidden; position: relative; width: 155px; }\",\".framer-JdXIG .framer-ygz2al { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 283px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-vsu2ch { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 44px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 283px; }\",\".framer-JdXIG .framer-1p38ack { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 312px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-14h6g5n { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: 400px; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JdXIG .framer-yw5121 { flex: none; height: 46px; overflow: hidden; position: relative; width: 256px; }\",\".framer-JdXIG .framer-p0rgv8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1rvk3jn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 45px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 283px; }\",\".framer-JdXIG .framer-12tdc1e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-1lz7a40 { flex: none; height: 150px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JdXIG .framer-1fbv4eb-container { flex: none; height: auto; position: relative; width: 1140px; }\",\".framer-JdXIG .framer-1b7fs8b { flex: none; height: 150px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-JdXIG .framer-10mv7qx-container { flex: none; height: 426px; position: relative; width: 1200px; }\",\".framer-JdXIG .framer-1s174td { --border-bottom-width: 1px; --border-color: #ededed; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-JdXIG .framer-ibmnnc-container { flex: none; height: 52px; left: calc(50.250000000000014% - 1134px / 2); position: absolute; top: calc(50.00000000000002% - 52px / 2); width: 1134px; z-index: 1; }\",\".framer-JdXIG .framer-2gcx2k-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-JdXIG .framer-1rkuzze { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 42px 40px 42px 40px; position: relative; width: 100%; }\",\".framer-JdXIG .framer-rxaf5y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-JdXIG .framer-ohrshp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JdXIG .framer-jywmjy { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 120px; overflow: visible; position: relative; width: 100%; }\",\".framer-JdXIG .framer-x5yj29 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 23px; flex: none; height: 30px; left: calc(49.84984984984987% - 333px / 2); position: absolute; white-space: pre-wrap; width: 333px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-ub3duk-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 10px; }\",\".framer-JdXIG .framer-1xociy1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 16px; flex: none; height: 30px; left: 0px; position: absolute; white-space: pre-wrap; width: 251px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-rd9u1z { --border-bottom-width: 1px; --border-color: #f2f2f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 140px; overflow: visible; position: relative; width: 100%; }\",\".framer-JdXIG .framer-2d807b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 6px; flex: none; height: 57px; left: calc(50.150150150150175% - 286px / 2); position: absolute; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-JdXIG .framer-u1xr0q-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 12px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-JdXIG[data-border=\"true\"]::after, .framer-JdXIG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-JdXIG.framer-mxn4r3 { width: 810px; } .framer-JdXIG .framer-1p5ekq4 { height: 535px; order: 0; } .framer-JdXIG .framer-aerinj { gap: 10px; height: 428px; padding: 30px 0px 0px 0px; width: 740px; } .framer-JdXIG .framer-zrje4a { height: 498px; } .framer-JdXIG .framer-rfne1f { gap: 18px; width: 368px; } .framer-JdXIG .framer-1nq999w { height: 154px; width: 346px; } .framer-JdXIG .framer-14y8h7y { width: 330px; } .framer-JdXIG .framer-auoz8h { height: 314px; width: 52%; } .framer-JdXIG .framer-16uu7h0 { height: 232px; left: -5px; top: 7px; width: 374px; } .framer-JdXIG .framer-1jnxepo { height: 164px; left: 182px; right: unset; top: calc(46.496815286624226% - 164px / 2); width: 197px; } .framer-JdXIG .framer-1vq0ph { bottom: 0px; height: 180px; left: 57px; width: 147px; } .framer-JdXIG .framer-1gscmiv { order: 1; padding: 67px 0px 100px 0px; width: 725px; } .framer-JdXIG .framer-16e2bi9 { width: 724px; } .framer-JdXIG .framer-1i6pqtv { width: 726px; } .framer-JdXIG .framer-1xp6wmb-container { order: 2; width: 811px; } .framer-JdXIG .framer-1c9j173 { gap: 78px; order: 3; padding: 76px 0px 76px 0px; width: 744px; } .framer-JdXIG .framer-1pn05nv { order: 0; width: 733px; } .framer-JdXIG .framer-t613xk { width: 742px; } .framer-JdXIG .framer-1z13n { width: 691px; } .framer-JdXIG .framer-17hq8zo { order: 1; padding: 8px 0px 8px 0px; } .framer-JdXIG .framer-1ivhhx6-container { flex: 1 0 0px; width: 1px; } .framer-JdXIG .framer-q84ro4 { height: 334px; order: 4; width: 787px; } .framer-JdXIG .framer-1wesrgm { padding: 0px 0px 0px 68px; } .framer-JdXIG .framer-c9n76k { width: 634px; } .framer-JdXIG .framer-1la04h9 { order: 5; padding: 150px 0px 75px 0px; width: 730px; } .framer-JdXIG .framer-m6pqa6 { width: 731px; } .framer-JdXIG .framer-3rfd3x { width: 736px; } .framer-JdXIG .framer-1tp8j4c { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 840px; justify-content: center; padding: 0px 20px 0px 20px; width: 757px; } .framer-JdXIG .framer-1komyt0 { align-self: start; flex: none; height: min-content; justify-self: start; width: 100%; } .framer-JdXIG .framer-m9ae2c { width: 358px; } .framer-JdXIG .framer-1hqitvs, .framer-JdXIG .framer-1lpkpz { bottom: 0px; height: unset; left: 0px; right: 0px; top: 0px; width: unset; } .framer-JdXIG .framer-wvpzgi { width: 359px; } .framer-JdXIG .framer-1uk47mu { width: 279px; } .framer-JdXIG .framer-1sz3rsd { width: 291px; } .framer-JdXIG .framer-1kktxaw { align-self: start; flex: none; height: min-content; justify-self: start; padding: 0px 0px 81px 0px; width: 100%; } .framer-JdXIG .framer-kx8yqj { width: 373px; } .framer-JdXIG .framer-1voomxw { bottom: -1px; height: unset; left: 0px; right: 0px; top: 0px; width: unset; } .framer-JdXIG .framer-10hrz62 { bottom: -9px; height: 171px; left: 0px; right: 0px; top: unset; width: unset; } .framer-JdXIG .framer-bcmq65 { width: 303px; } .framer-JdXIG .framer-ikh72k, .framer-JdXIG .framer-1nlo5ae { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-JdXIG .framer-1w9rc57 { width: 374px; } .framer-JdXIG .framer-15t8ws, .framer-JdXIG .framer-se57kd { width: 263px; } .framer-JdXIG .framer-1viweph { width: 360px; } .framer-JdXIG .framer-ggcgr { height: unset; left: 0px; right: -1px; top: 0px; width: unset; } .framer-JdXIG .framer-s3afd6 { bottom: 0px; height: unset; left: 0px; top: 0px; width: 360px; } .framer-JdXIG .framer-1fcgaty { gap: 0px; height: 930px; order: 8; padding: 60px 0px 0px 0px; width: 710px; } .framer-JdXIG .framer-s9rmo3 { width: 711px; } .framer-JdXIG .framer-u7tt9a { bottom: 90px; height: 472px; } .framer-JdXIG .framer-k869jq { height: 117%; width: 239px; } .framer-JdXIG .framer-1nsmndw { height: 550px; padding: 40px 0px 0px 20px; width: 230px; } .framer-JdXIG .framer-1n5uiao { gap: 27px; height: 483px; width: 200px; } .framer-JdXIG .framer-uxq5zh { order: 0; } .framer-JdXIG .framer-mlul9m { order: 1; width: 180px; } .framer-JdXIG .framer-3kkvri { height: 63px; order: 2; width: 186px; } .framer-JdXIG .framer-1s9eyy6 { height: 24px; width: 186px; } .framer-JdXIG .framer-1j9rd7w { width: 186px; } .framer-JdXIG .framer-lvt8sx { gap: 2px; height: 560px; width: 230px; } .framer-JdXIG .framer-r5g5p9 { gap: 0px; height: 550px; padding: 40px 0px 0px 0px; width: 230px; } .framer-JdXIG .framer-1httiym { width: 182px; } .framer-JdXIG .framer-1nplkxq { width: 169px; } .framer-JdXIG .framer-ygz2al { width: 180px; } .framer-JdXIG .framer-14h6g5n { gap: 19px; height: 550px; } .framer-JdXIG .framer-a2wlvw { gap: 25px; height: 550px; order: 0; width: 223px; } .framer-JdXIG .framer-1v1aqvi { order: 0; width: 180px; } .framer-JdXIG .framer-yw5121 { height: 40px; order: 0; width: 181px; } .framer-JdXIG .framer-p0rgv8 { order: 1; width: 178px; } .framer-JdXIG .framer-1rvk3jn { order: 2; } .framer-JdXIG .framer-1lz7a40 { height: 90px; order: 9; } .framer-JdXIG .framer-1fbv4eb-container { height: 256px; order: 10; width: 90%; } .framer-JdXIG .framer-10mv7qx-container { height: 953px; order: 12; width: 807px; } .framer-JdXIG .framer-2gcx2k-container { left: 0px; order: 14; position: fixed; top: 0px; } .framer-JdXIG .framer-1rkuzze { gap: 64px; order: 6; padding: 0px; width: 75%; } .framer-JdXIG .framer-rxaf5y { white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; } .framer-JdXIG .framer-ohrshp { flex-direction: column; }}\",\"@media (max-width: 809px) { .framer-JdXIG.framer-mxn4r3 { width: 390px; } .framer-JdXIG .framer-1p5ekq4 { gap: 0px; height: 817px; order: 0; } .framer-JdXIG .framer-aerinj { flex-direction: column; height: 756px; order: 0; padding: 30px 0px 0px 0px; width: 341px; } .framer-JdXIG .framer-zrje4a { height: 388px; order: 0; width: 100%; } .framer-JdXIG .framer-rfne1f { gap: 13px; height: 376px; width: 343px; } .framer-JdXIG .framer-1nq999w { height: 162px; order: 0; width: 350px; } .framer-JdXIG .framer-14y8h7y { order: 2; width: 330px; } .framer-JdXIG .framer-sqnygf-container { order: 3; } .framer-JdXIG .framer-auoz8h { height: 314px; order: 1; width: 100%; } .framer-JdXIG .framer-16uu7h0 { height: 231px; left: -2px; top: 7px; width: 333px; } .framer-JdXIG .framer-1jnxepo { height: 134px; right: 0px; top: calc(48.72611464968155% - 134px / 2); width: 179px; } .framer-JdXIG .framer-1vq0ph { bottom: 25px; height: 170px; left: 20px; width: 129px; } .framer-JdXIG .framer-1gscmiv { order: 1; padding: 67px 0px 39px 0px; width: 325px; } .framer-JdXIG .framer-16e2bi9 { width: 346px; } .framer-JdXIG .framer-1i6pqtv { width: 325px; } .framer-JdXIG .framer-1xp6wmb-container { order: 2; width: 387px; } .framer-JdXIG .framer-1c9j173 { gap: 78px; order: 3; padding: 49px 0px 49px 0px; width: 325px; } .framer-JdXIG .framer-1pn05nv { order: 0; width: 325px; } .framer-JdXIG .framer-t613xk { gap: 28px; width: 325px; } .framer-JdXIG .framer-1oeq33z, .framer-JdXIG .framer-1i1zhaq { order: 0; } .framer-JdXIG .framer-7an56a { order: 1; width: 325px; } .framer-JdXIG .framer-1z13n { order: 2; width: 338px; } .framer-JdXIG .framer-17hq8zo { align-content: center; align-items: center; flex-direction: column; order: 1; padding: 8px 0px 8px 0px; } .framer-JdXIG .framer-1ivhhx6-container { width: 100%; } .framer-JdXIG .framer-zfs052-container, .framer-JdXIG .framer-17csi2h-container { flex: none; width: 100%; } .framer-JdXIG .framer-q84ro4 { height: 361px; order: 4; width: 338px; } .framer-JdXIG .framer-1wesrgm { align-content: center; align-items: center; padding: 0px; right: 0px; width: unset; } .framer-JdXIG .framer-a63f8h { order: 0; width: 196px; } .framer-JdXIG .framer-c9n76k { order: 1; width: 305px; } .framer-JdXIG .framer-lb9q5x-container, .framer-JdXIG .framer-1rvk3jn { order: 2; } .framer-JdXIG .framer-1la04h9 { gap: 81px; order: 5; padding: 102px 0px 75px 0px; width: 325px; } .framer-JdXIG .framer-m6pqa6 { width: 318px; } .framer-JdXIG .framer-1305zi0 { width: 319px; } .framer-JdXIG .framer-14tpe7b { width: 320px; } .framer-JdXIG .framer-3rfd3x { width: 327px; } .framer-JdXIG .framer-1tp8j4c { flex-direction: column; height: 1690px; padding: 0px 20px 0px 20px; width: 337px; } .framer-JdXIG .framer-1komyt0 { flex: none; height: min-content; width: 100%; } .framer-JdXIG .framer-m9ae2c, .framer-JdXIG .framer-wvpzgi, .framer-JdXIG .framer-1w9rc57 { width: 297px; } .framer-JdXIG .framer-1hqitvs, .framer-JdXIG .framer-1lpkpz { bottom: 0px; height: unset; left: 0px; top: 0px; width: 297px; } .framer-JdXIG .framer-1uk47mu { width: 279px; } .framer-JdXIG .framer-1sz3rsd { width: 230px; } .framer-JdXIG .framer-1kktxaw { flex: none; height: min-content; padding: 0px 0px 81px 0px; width: 100%; } .framer-JdXIG .framer-kx8yqj, .framer-JdXIG .framer-1viweph { width: 296px; } .framer-JdXIG .framer-1voomxw { bottom: -1px; height: unset; left: 0px; right: 0px; top: 0px; width: unset; } .framer-JdXIG .framer-10hrz62 { bottom: -9px; height: 171px; left: 0px; right: 0px; top: unset; width: unset; } .framer-JdXIG .framer-bcmq65, .framer-JdXIG .framer-ygz2al { width: 232px; } .framer-JdXIG .framer-ikh72k, .framer-JdXIG .framer-1nlo5ae { height: 1px; width: 100%; } .framer-JdXIG .framer-70pjlm { height: unset; left: -1px; right: 0px; top: 0px; width: unset; } .framer-JdXIG .framer-n5g49g { bottom: 0px; height: unset; left: 0px; right: 0px; top: 0px; width: unset; } .framer-JdXIG .framer-15t8ws { width: 218px; } .framer-JdXIG .framer-ggcgr { height: unset; left: 0px; right: -1px; top: 0px; width: unset; } .framer-JdXIG .framer-s3afd6 { bottom: 0px; height: unset; left: 0px; top: 0px; width: 296px; } .framer-JdXIG .framer-se57kd { width: 226px; } .framer-JdXIG .framer-1fcgaty { gap: 33px; height: 1702px; order: 8; padding: 60px 0px 0px 0px; width: 325px; } .framer-JdXIG .framer-u7tt9a { align-content: center; align-items: center; bottom: -8px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 1352px; left: -3px; order: 2; } .framer-JdXIG .framer-k869jq { align-self: unset; order: 0; width: 288px; } .framer-JdXIG .framer-1nsmndw { order: 0; padding: 31px 0px 31px 0px; width: 287px; } .framer-JdXIG .framer-1n5uiao { width: 200px; } .framer-JdXIG .framer-uxq5zh { order: 0; width: 108px; } .framer-JdXIG .framer-mlul9m { order: 1; width: 195px; } .framer-JdXIG .framer-3kkvri { height: 63px; order: 2; width: 262px; } .framer-JdXIG .framer-1s9eyy6 { width: 223px; } .framer-JdXIG .framer-1j9rd7w { width: 217px; } .framer-JdXIG .framer-lvt8sx { align-self: unset; gap: 2px; order: 1; width: 290px; } .framer-JdXIG .framer-r5g5p9 { height: 460px; order: 0; padding: 30px 0px 0px 0px; width: 287px; } .framer-JdXIG .framer-1httiym { gap: 29px; padding: 18px 0px 18px 0px; width: 233px; } .framer-JdXIG .framer-1nplkxq { width: 169px; } .framer-JdXIG .framer-14h6g5n { align-self: unset; gap: 19px; order: 2; width: 290px; } .framer-JdXIG .framer-a2wlvw { height: 349px; padding: 24px 0px 0px 0px; width: 290px; } .framer-JdXIG .framer-1v1aqvi { gap: 23px; order: 0; width: 232px; } .framer-JdXIG .framer-yw5121 { height: 39px; order: 0; width: 230px; } .framer-JdXIG .framer-p0rgv8 { order: 1; width: 229px; } .framer-JdXIG .framer-1lz7a40 { height: 88px; order: 9; } .framer-JdXIG .framer-1fbv4eb-container { height: 256px; order: 10; width: 373px; } .framer-JdXIG .framer-10mv7qx-container { height: 993px; order: 12; width: 393px; } .framer-JdXIG .framer-2gcx2k-container { left: 50%; order: 14; position: fixed; top: 0px; transform: translateX(-50%); } .framer-JdXIG .framer-1rkuzze { flex-direction: column; order: 6; padding: 42px 50px 42px 50px; width: 90%; } .framer-JdXIG .framer-ohrshp { flex: none; flex-direction: column; padding: 15px 0px 15px 0px; width: 100%; } .framer-JdXIG .framer-jywmjy { height: 130px; } .framer-JdXIG .framer-ub3duk-container { top: 23px; } .framer-JdXIG .framer-rd9u1z { height: 150px; } .framer-JdXIG .framer-2d807b { left: calc(49.80079681274903% - 228px / 2); width: 228px; } .framer-JdXIG .framer-u1xr0q-container { top: 26px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6483\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yel4sbrq0\":{\"layout\":[\"fixed\",\"auto\"]},\"JGNErKFyH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-JdXIG\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6483,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...Button4Fonts,...MaterialFonts,...PartnerLogosFonts,...ButtonPartnerFonts,...BlueModuleFonts,...PurpleModuleFonts,...GreenModuleFonts,...Button3Fonts,...Material1Fonts,...ButtonSolutionsFonts,...ClassicCounterFonts,...ICONPlatformFonts,...CTAFooterBannerFonts,...FooterFonts,...LeapNavigationFonts,...LeapNavigationMobileFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6483\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yel4sbrq0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JGNErKFyH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}