{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/0A0OgcwlC7z9xyefHVEM/C1pObZ04xmvBWEkcGSTR/DZ_2okPPG.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import BackToTop from\"#framer/local/canvasComponent/B_G9VWxct/B_G9VWxct.js\";import Navbar from\"#framer/local/canvasComponent/htOsDgA9E/htOsDgA9E.js\";import Footer from\"#framer/local/canvasComponent/Q7F88e4di/Q7F88e4di.js\";import DownloadBrochure from\"#framer/local/canvasComponent/wqWtFUnhw/wqWtFUnhw.js\";import metadataProvider from\"#framer/local/webPageMetadata/DZ_2okPPG/DZ_2okPPG.js\";const NavbarFonts=getFonts(Navbar);const BackToTopFonts=getFonts(BackToTop);const ContainerWithFX=withFX(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const DownloadBrochureFonts=getFonts(DownloadBrochure);const VideoFonts=getFonts(Video);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const breakpoints={gnOLuqjPX:\"(min-width: 1200px)\",q7pZQs_65:\"(min-width: 810px) and (max-width: 1199px)\",wqev0x00n:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-VMfV4\";const variantClassNames={gnOLuqjPX:\"framer-v-lo018b\",q7pZQs_65:\"framer-v-7sm3xa\",wqev0x00n:\"framer-v-1lrqtoe\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:30,delay:.7,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition3={damping:30,delay:.5,mass:1,stiffness:100,type:\"spring\"};const animation3={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.3,mass:1,stiffness:100,type:\"spring\"};const animation4={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"gnOLuqjPX\",Phone:\"wqev0x00n\",Tablet:\"q7pZQs_65\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gnOLuqjPX\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"F2TATf07Y\");const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId1=useRouteElementId(\"j4h7gf52g\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"MNPo5jvTO\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gnOLuqjPX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, rgb(29, 32, 50)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-lo018b\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-n8rvke-container\",id:elementId,nodeId:\"F2TATf07Y\",ref:ref1,scopeId:\"DZ_2okPPG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{variant:\"r6rFg2sZ8\"},wqev0x00n:{variant:\"vj3ohHkab\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"F2TATf07Y\",layoutId:\"F2TATf07Y\",style:{width:\"100%\"},variant:\"K8oZEmX95\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{height:58,width:\"58px\",y:912}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"59px\",y:911,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wh57of-container\",layoutScroll:true,nodeId:\"YUaphWtYX\",rendersWithMotion:true,scopeId:\"DZ_2okPPG\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(BackToTop,{height:\"100%\",id:\"YUaphWtYX\",layoutId:\"YUaphWtYX\",style:{height:\"100%\",width:\"100%\"},variant:\"nmIF3FhYl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1354,intrinsicWidth:2406,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80),pixelHeight:1354,pixelWidth:2406,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp\",srcSet:\"https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp 2406w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1354,intrinsicWidth:2406,pixelHeight:1354,pixelWidth:2406,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp\",srcSet:\"https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/45iy8Rshhv6s9lLgSXm0lWVbT4.webp 2406w\"},className:\"framer-ksbti3\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w31fpo\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1526,intrinsicWidth:1906,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0),pixelHeight:1526,pixelWidth:1906,sizes:\"550px\",src:\"https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp\",srcSet:\"https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp 1906w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1526,intrinsicWidth:1906,pixelHeight:1526,pixelWidth:1906,sizes:\"550px\",src:\"https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp\",srcSet:\"https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfcsHL0z9NAfveEJnf9Yn1vnzE.webp 1906w\"},className:\"framer-1p6g2jt\",\"data-framer-appear-id\":\"1p6g2jt\",initial:animation2,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1061,intrinsicWidth:1325,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0),pixelHeight:1061,pixelWidth:1325,sizes:\"368px\",src:\"https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp\",srcSet:\"https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp 1325w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1061,intrinsicWidth:1325,pixelHeight:1061,pixelWidth:1325,sizes:\"368px\",src:\"https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp\",srcSet:\"https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/YDczDBBxLxdxwbZi3JsCaw0HrZc.webp 1325w\"},className:\"framer-wokx9e\",\"data-framer-appear-id\":\"wokx9e\",initial:animation2,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:629,intrinsicWidth:785,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+0),pixelHeight:629,pixelWidth:785,sizes:\"202px\",src:\"https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp\",srcSet:\"https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp 785w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fill\",intrinsicHeight:629,intrinsicWidth:785,pixelHeight:629,pixelWidth:785,sizes:\"202px\",src:\"https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp\",srcSet:\"https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xwyjTgZRQGj9RGnASqM6fNtuAA.webp 785w\"},className:\"framer-1mno319\",\"data-framer-appear-id\":\"1mno319\",initial:animation2,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14vx72q\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iiibp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1fj9q\",\"data-framer-name\":\"Content\",id:elementId2,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(271deg, var(--token-19b11778-e05a-49ae-9e4d-297b329ba73b, rgb(2, 113, 188)) 0%, rgb(35, 197, 222) 73.20171734234235%, var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, rgb(30, 161, 150)) 100%)\"},children:\"PRODUCT & USE CASES\"})})}),className:\"framer-1fq8mma\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1a8eb417-e69e-49f8-aeda-7b4c9e0a53cc, rgb(255, 255, 255))\"},children:\"Learn more about our product and the use cases in different industries.\"})}),className:\"framer-1deasok\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1nl5j\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-17ot09b\",\"data-framer-name\":\"H2 Revolution\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGhpbG9zb3BoZXItNzAw\",\"--framer-font-family\":'\"Philosopher\", \"Philosopher Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, rgb(29, 32, 50))\"},children:\"A Hydrogen Revolution\"})}),className:\"framer-yjwpsm\",fonts:[\"GF;Philosopher-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Membranes for hydrogen recovery & purification have been in use in industrial processes since the 1980s. However, they have lacked several attributes which limited their use in many cases. Plasticization, chemical degradation, and fouling caused by CO2 H2S, and heavy hydrocarbons have limited many of the possible applications for H2 -selective membrane due to the high costs of pre-treatment.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Thanks to a combination of patent-pending materials, revolutionary sub-nano molecular polymer modification techniques, and manufacturing advancements , DiviGas has invented a membrane fiber that can finally bring this clean technology to market and replace complex, energy-intensive, and toxic sorbent-based alternatives\"})]}),className:\"framer-1m5gugl\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{y:(componentViewport?.y||0)+0+910.5+0+15+172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p4vpmu-container\",nodeId:\"lAB5mSW71\",scopeId:\"DZ_2okPPG\",children:/*#__PURE__*/_jsx(DownloadBrochure,{height:\"100%\",id:\"lAB5mSW71\",layoutId:\"lAB5mSW71\",style:{height:\"100%\"},variant:\"QGIoIDEBa\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmg3q1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2o5n9c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, rgb(30, 161, 150))\"},children:\"Product:\"})}),className:\"framer-10lymyn\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1wyg4y3\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3787,intrinsicWidth:5909,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1152.5+0+79.5+0+0),pixelHeight:3787,pixelWidth:5909,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp\",srcSet:\"https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=512 512w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp 5909w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3787,intrinsicWidth:5909,pixelHeight:3787,pixelWidth:5909,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp\",srcSet:\"https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=512 512w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/htz0KDSHW91KbDMYcsIKtSVko.webp 5909w\"},className:\"framer-1kry6mt\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12kx9t3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ad4auk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1522,intrinsicWidth:2422,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+15+0+0+0),pixelHeight:5148,pixelWidth:8192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/W1U1TuDQPRmssiQT5fX2MiwwPY.webp?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1522,intrinsicWidth:2422,pixelHeight:5148,pixelWidth:8192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/W1U1TuDQPRmssiQT5fX2MiwwPY.webp?scale-down-to=2048\"},className:\"framer-15s18hs\",\"data-framer-name\":\"Header Image\",id:\"15s18hs\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"The above was modified from a public AirProducts document on H2 separation membranes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"The above was modified from a public AirProducts document on H2 separation membranes\"})}),className:\"framer-15t1a0h\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2w1oi7\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1ut4xuq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"800\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-transform\":\"uppercase\"},children:\"Q\"}),\"uality Focused:\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-transform\":\"uppercase\"},children:\"Q\"}),\"uality Focused:\"]})}),className:\"framer-jh1v3x\",fonts:[\"GF;Montserrat-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1df0bkc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 210px) / 6, 50px)`,src:\"https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp 1863w\"}},wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1740.5+0+15+72+0+0),pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 3, 50px)`,src:\"https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp 1863w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:\"158.3333px\",src:\"https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/aMNgkbGPM2h5umoP4uOB8fPBOg.webp 1863w\"},className:\"framer-2ph5o7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 210px) / 6, 50px)`,src:\"https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp 1863w\"}},wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1740.5+0+15+72+0+0),pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 3, 50px)`,src:\"https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp 1863w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:\"158.3333px\",src:\"https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SslXo9DESfapTkfKeKLkrCPLab4.webp 1863w\"},className:\"framer-1rbyum5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1862,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 210px) / 6, 50px)`,src:\"https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp?scale-down-to=1024 1023w,https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp 1862w\"}},wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1740.5+0+15+72+0+0),pixelHeight:1863,pixelWidth:1862,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 3, 50px)`,src:\"https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp?scale-down-to=1024 1023w,https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp 1862w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1862,positionX:\"center\",positionY:\"center\",sizes:\"158.3333px\",src:\"https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp?scale-down-to=1024 1023w,https://framerusercontent.com/images/LqlFsew7RbnKdF0hEU3TlYGMllw.webp 1862w\"},className:\"framer-h7d4db\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 210px) / 6, 50px)`,src:\"https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp 1863w\"}},wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1740.5+0+15+72+0+70),pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 3, 50px)`,src:\"https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp 1863w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:1863,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:\"158.3333px\",src:\"https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kCQlq7RNJe00XciTMgmWZWyeQ.webp 1863w\"},className:\"framer-83rx85\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1740.5+0+15+72+0+70),pixelHeight:204,pixelWidth:204,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pwGtQMHyDpT4KVYXAceWdLVzRBo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:204,pixelWidth:204,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pwGtQMHyDpT4KVYXAceWdLVzRBo.png\"},className:\"framer-1jbdnfm\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1740.5+0+15+72+0+70),pixelHeight:359,pixelWidth:359,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KLOjSfXPczCixiJRuEqwNt2O9E.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:359,pixelWidth:359,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KLOjSfXPczCixiJRuEqwNt2O9E.png\"},className:\"framer-1e3xva8\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7m1am\",\"data-framer-name\":\"Sets Apart\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mo3vtk\",\"data-framer-name\":\"Sets Apart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What Sets Divi-H Apart:\"})}),className:\"framer-1hg1d8w\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2214,intrinsicWidth:3937,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2042.5),pixelHeight:2214,pixelWidth:3937,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp\",srcSet:\"https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp 3937w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2214,intrinsicWidth:3937,pixelHeight:2214,pixelWidth:3937,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp\",srcSet:\"https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/OAacfPgnu8mY4oDFO4Wbvh9USkc.webp 3937w\"},className:\"framer-ca4iki\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2214,intrinsicWidth:3937},className:\"framer-o8sv2m\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ddqu5r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"olfJrU7Z8\",scopeId:\"DZ_2okPPG\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:150,controls:false,height:\"100%\",id:\"olfJrU7Z8\",isMixedBorderRadius:false,layoutId:\"olfJrU7Z8\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/ITW1XSY6bIRQUlDAC4w0AU1Pe8E.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:150,topRightRadius:0,volume:25,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pq64vc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ciglrl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ja7eej\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2184.5+0+0+15+0+0+0),pixelHeight:303,pixelWidth:383,src:\"https://framerusercontent.com/images/OEHSpJk1LDHlsPxKHh12TgSTVEI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:383,pixelHeight:303,pixelWidth:383,src:\"https://framerusercontent.com/images/OEHSpJk1LDHlsPxKHh12TgSTVEI.png\"},className:\"framer-k1is6o\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xlu83\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[\"Heavy Hydrocarbon\",/*#__PURE__*/_jsx(\"br\",{}),\"Fouling Solved\"]})}),className:\"framer-1x2hczu\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"As H2 is removed from the pressurized feed, the gas becomes enriched in condensable hydrocarbons and its dew point increases, resulting in fouling. At higher temperatures, dramatically higher concentrations is required for fouling.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Tolerates The Highest Level of Heavy Hydrocarbons\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"Divigas can operate at up to 150c, up from 50-70c for most comparable membranes in this space. Opening up an array of use cases containing heavy hydrocarbon-loaded streams\"})]}),className:\"framer-2tu0k9\",fonts:[\"GF;Montserrat-500\",\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-23qwoj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2184.5+0+0+15+1018+0+0),pixelHeight:303,pixelWidth:383,src:\"https://framerusercontent.com/images/ujh4GrOXJJ7tEkzck8Lih1S034.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:383,pixelHeight:303,pixelWidth:383,src:\"https://framerusercontent.com/images/ujh4GrOXJJ7tEkzck8Lih1S034.png\"},className:\"framer-60eljm\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pf76j0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[\"Extreme Acidity\",/*#__PURE__*/_jsx(\"br\",{}),\"Resistance\"]})}),className:\"framer-mn4a9n\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"Membranes degrade when subjected to acidic conditions and strong solvents. The polymeric chains break, leaving larger-than-designed perforations which causes failure and up to complete performance loss.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Can Withstand Difficult Conditions\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"The only way for membranes to be able to handle these sort of streams today is with extensive pre-processing with sorbents, which often invalidates the unit economics and entire purpose of using membranes\"})]}),className:\"framer-1mpgea7\",fonts:[\"GF;Montserrat-500\",\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6tsuyq\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wqev0x00n:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2184.5+0+0+15+2036+0+0),pixelHeight:303,pixelWidth:383,src:\"https://framerusercontent.com/images/LNvkGnr8Tx34u0IhVmNHMSOU1c.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:383,pixelHeight:303,pixelWidth:383,src:\"https://framerusercontent.com/images/LNvkGnr8Tx34u0IhVmNHMSOU1c.png\"},className:\"framer-16wt8sp\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5e1ww\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[\"High Heat Tolerance =\",/*#__PURE__*/_jsx(\"br\",{}),\"in High Performance\"]})}),className:\"framer-4dby5n\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"Our highest heat tolerance results in excellent H2 selectivity and permeance and overall performance. This simply means a single strand of fiber can do better filtering, resulting in affordability in volume.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Best in Class Efficiency\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"CO2 is regarded as one of the hardest gas to separate from H2 because most membranes use a process called solution-diffusion which is ineffective at separating these molecules. We use other mechanisms which yields a far better outcome for H2/CO2\"})]}),className:\"framer-t12r15\",fonts:[\"GF;Montserrat-500\",\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3mj1w\",\"data-framer-name\":\"Use Cases\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-132v2x0\",\"data-framer-name\":\"Sets Apart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Use Cases:\"})}),className:\"framer-emuckv\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p70mdg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eki1rt\",\"data-framer-name\":\"Use Case\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9lkl7-container\",isModuleExternal:true,nodeId:\"N6f9ZSx9S\",scopeId:\"DZ_2okPPG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{itemAmount:2},wqev0x00n:{itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:40,height:\"100%\",id:\"N6f9ZSx9S\",intervalControl:1.5,itemAmount:3,layoutId:\"N6f9ZSx9S\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-20,dotSize:7,dotsOpacity:.5,dotsPadding:10,dotsRadius:200,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xu8d8o\",\"data-framer-name\":\"Refiners\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/md0EifKw0wiWSfUhyo6mCcdr5o.webp\",srcSet:\"https://framerusercontent.com/images/md0EifKw0wiWSfUhyo6mCcdr5o.webp?scale-down-to=512 512w,https://framerusercontent.com/images/md0EifKw0wiWSfUhyo6mCcdr5o.webp 716w\"},className:\"framer-5cg24d\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qcmmpn\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Refineries\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-bciosg\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xmz5gf\",\"data-framer-name\":\"Petro\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/rAv1pzjzYteMHXMonNVcOzLeo.webp\",srcSet:\"https://framerusercontent.com/images/rAv1pzjzYteMHXMonNVcOzLeo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/rAv1pzjzYteMHXMonNVcOzLeo.webp 716w\"},className:\"framer-lfksfv\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rvzx1k\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"Petrochemicals Industry\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-5yiy94\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jyx9l2\",\"data-framer-name\":\"PPL ETL\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/aw3jX6LsiwwrApPNtSwotGmYKD4.webp\",srcSet:\"https://framerusercontent.com/images/aw3jX6LsiwwrApPNtSwotGmYKD4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aw3jX6LsiwwrApPNtSwotGmYKD4.webp 716w\"},className:\"framer-1rrrl3z\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15y0nix\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Polypropylene & Ethylene Purge Gases\"})}),className:\"framer-1ukmhxw\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-135ggg6\",\"data-framer-name\":\"Syngas\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/yxOBBr2THB10H2tE6GalyMXSc2E.webp\",srcSet:\"https://framerusercontent.com/images/yxOBBr2THB10H2tE6GalyMXSc2E.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yxOBBr2THB10H2tE6GalyMXSc2E.webp 716w\"},className:\"framer-1to3stg\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y5ihd4\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"Syngas Separation\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1x0fc8n\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qduk2y\",\"data-framer-name\":\"Methanol\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/ARe8PQ6Q9ZvOHuRPOW3P5ahuFk.webp\",srcSet:\"https://framerusercontent.com/images/ARe8PQ6Q9ZvOHuRPOW3P5ahuFk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ARe8PQ6Q9ZvOHuRPOW3P5ahuFk.webp 716w\"},className:\"framer-1mbpcoe\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qyhwka\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"Methanol\",/*#__PURE__*/_jsx(\"br\",{}),\"Production\"]})}),className:\"framer-gme7r5\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14qgsmp\",\"data-framer-name\":\"Metallurgical\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/aUj3jbPOd1LGp70VcZ4N8cRAbA.webp\",srcSet:\"https://framerusercontent.com/images/aUj3jbPOd1LGp70VcZ4N8cRAbA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aUj3jbPOd1LGp70VcZ4N8cRAbA.webp 716w\"},className:\"framer-765u4e\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16e00xl\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"Metallurgical\",/*#__PURE__*/_jsx(\"br\",{}),\"Production\"]})}),className:\"framer-dxlgru\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16xyycz\",\"data-framer-name\":\"Biomass\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/pxX2QRpxXE81IdDfVJPj3HtuzyI.webp\",srcSet:\"https://framerusercontent.com/images/pxX2QRpxXE81IdDfVJPj3HtuzyI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pxX2QRpxXE81IdDfVJPj3HtuzyI.webp 716w\"},className:\"framer-10plxq3\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s34zo8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"Biomass\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-ktgrzz\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tu34ua\",\"data-framer-name\":\"Ammonia\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:716,intrinsicWidth:716,pixelHeight:716,pixelWidth:716,positionX:\"center\",positionY:\"center\",sizes:\"364px\",src:\"https://framerusercontent.com/images/mbMIAtlgEmYcbosDkVXeMShoc.webp\",srcSet:\"https://framerusercontent.com/images/mbMIAtlgEmYcbosDkVXeMShoc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mbMIAtlgEmYcbosDkVXeMShoc.webp 716w\"},className:\"framer-1j1j9of\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sngtc5\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"Ammonia\",/*#__PURE__*/_jsx(\"br\",{}),\"Production\"]})}),className:\"framer-1hfwo4w\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5egyy7-container\",nodeId:\"qiNptGbxV\",scopeId:\"DZ_2okPPG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q7pZQs_65:{variant:\"hh3KTbdUW\"},wqev0x00n:{variant:\"hzPXIgxWf\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qiNptGbxV\",layoutId:\"qiNptGbxV\",style:{width:\"100%\"},variant:\"GZO22Qb8g\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VMfV4.framer-1sy4ksn, .framer-VMfV4 .framer-1sy4ksn { display: block; }\",\".framer-VMfV4.framer-lo018b { align-content: center; align-items: center; background-color: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, #1d2032); 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-VMfV4 .framer-n8rvke-container, .framer-VMfV4 .framer-1ddqu5r-container, .framer-VMfV4 .framer-5egyy7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-wh57of-container { aspect-ratio: 1 / 1; bottom: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 59px); position: fixed; right: 30px; width: 59px; z-index: 1; }\",\".framer-VMfV4 .framer-ksbti3 { border-bottom-right-radius: 170px; flex: none; height: 88vh; overflow: visible; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-VMfV4 .framer-1w31fpo { background: linear-gradient(140deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50.19003378378378%, rgba(255, 255, 255, 0) 100%); border-bottom-right-radius: 170px; bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VMfV4 .framer-1p6g2jt { flex: none; height: 445px; left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 550px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-VMfV4 .framer-wokx9e { flex: none; height: 296px; left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 368px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-VMfV4 .framer-1mno319 { flex: none; height: 161px; left: 0px; opacity: 0.2; position: absolute; top: 0px; width: 202px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-VMfV4 .framer-14vx72q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; max-width: 1200px; min-height: 406px; overflow: hidden; padding: 200px 0px 0px 30px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-VMfV4 .framer-1iiibp { align-content: center; align-items: center; background-color: var(--token-fd9ff9e5-eb5c-4201-a8b4-34ee46827cb7, #1d2032); 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-VMfV4 .framer-1w1fj9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; padding: 30px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-1fq8mma, .framer-VMfV4 .framer-1deasok { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VMfV4 .framer-o1nl5j { background-color: var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, #1ea196); flex: none; height: 560px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-17ot09b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; max-width: 1200px; overflow: hidden; padding: 30px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-VMfV4 .framer-yjwpsm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-VMfV4 .framer-1m5gugl { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VMfV4 .framer-p4vpmu-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-VMfV4 .framer-1lmg3q1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-2o5n9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-10lymyn, .framer-VMfV4 .framer-15t1a0h, .framer-VMfV4 .framer-1hg1d8w, .framer-VMfV4 .framer-1x2hczu, .framer-VMfV4 .framer-mn4a9n, .framer-VMfV4 .framer-4dby5n, .framer-VMfV4 .framer-emuckv, .framer-VMfV4 .framer-bciosg, .framer-VMfV4 .framer-5yiy94, .framer-VMfV4 .framer-1ukmhxw, .framer-VMfV4 .framer-1x0fc8n, .framer-VMfV4 .framer-gme7r5, .framer-VMfV4 .framer-dxlgru, .framer-VMfV4 .framer-ktgrzz, .framer-VMfV4 .framer-1hfwo4w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VMfV4 .framer-1wyg4y3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 511px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-1kry6mt { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-12kx9t3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-1ad4auk { flex: none; height: 700px; overflow: hidden; position: relative; width: 98%; }\",\".framer-VMfV4 .framer-15s18hs { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VMfV4 .framer-2w1oi7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-1ut4xuq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 30px; position: relative; width: min-content; }\",\".framer-VMfV4 .framer-jh1v3x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1100px; word-break: break-word; word-wrap: break-word; }\",\".framer-VMfV4 .framer-1df0bkc { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-VMfV4 .framer-2ph5o7, .framer-VMfV4 .framer-1rbyum5, .framer-VMfV4 .framer-h7d4db, .framer-VMfV4 .framer-83rx85, .framer-VMfV4 .framer-1jbdnfm, .framer-VMfV4 .framer-1e3xva8 { align-self: start; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: var(--framer-aspect-ratio-supported, 158px); justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VMfV4 .framer-1k7m1am, .framer-VMfV4 .framer-w3mj1w { align-content: center; align-items: center; background-color: var(--token-4d43593b-675a-4851-af4c-e3bede5c3529, #1ea196); 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-VMfV4 .framer-1mo3vtk, .framer-VMfV4 .framer-132v2x0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; padding: 30px; position: relative; width: 1px; }\",\".framer-VMfV4 .framer-ca4iki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-o8sv2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-1pq64vc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-ciglrl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-ja7eej, .framer-VMfV4 .framer-23qwoj, .framer-VMfV4 .framer-6tsuyq { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VMfV4 .framer-k1is6o, .framer-VMfV4 .framer-60eljm, .framer-VMfV4 .framer-16wt8sp { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 270px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VMfV4 .framer-19xlu83, .framer-VMfV4 .framer-1pf76j0, .framer-VMfV4 .framer-1q5e1ww { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-2tu0k9, .framer-VMfV4 .framer-1mpgea7, .framer-VMfV4 .framer-t12r15 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VMfV4 .framer-p70mdg { align-content: center; align-items: center; background-color: #ffffff; 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-VMfV4 .framer-1eki1rt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 533px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-9lkl7-container { flex: none; height: 473px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-VMfV4 .framer-1xu8d8o, .framer-VMfV4 .framer-1xmz5gf, .framer-VMfV4 .framer-jyx9l2, .framer-VMfV4 .framer-135ggg6, .framer-VMfV4 .framer-qduk2y, .framer-VMfV4 .framer-14qgsmp, .framer-VMfV4 .framer-16xyycz, .framer-VMfV4 .framer-tu34ua { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 364px; }\",\".framer-VMfV4 .framer-5cg24d, .framer-VMfV4 .framer-lfksfv, .framer-VMfV4 .framer-1rrrl3z, .framer-VMfV4 .framer-1to3stg, .framer-VMfV4 .framer-1mbpcoe, .framer-VMfV4 .framer-765u4e, .framer-VMfV4 .framer-10plxq3, .framer-VMfV4 .framer-1j1j9of { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 364px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VMfV4 .framer-qcmmpn, .framer-VMfV4 .framer-1rvzx1k, .framer-VMfV4 .framer-15y0nix, .framer-VMfV4 .framer-y5ihd4, .framer-VMfV4 .framer-qyhwka, .framer-VMfV4 .framer-16e00xl, .framer-VMfV4 .framer-1s34zo8, .framer-VMfV4 .framer-sngtc5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VMfV4.framer-lo018b, .framer-VMfV4 .framer-14vx72q, .framer-VMfV4 .framer-1iiibp, .framer-VMfV4 .framer-1w1fj9q, .framer-VMfV4 .framer-17ot09b, .framer-VMfV4 .framer-1lmg3q1, .framer-VMfV4 .framer-2o5n9c, .framer-VMfV4 .framer-1wyg4y3, .framer-VMfV4 .framer-12kx9t3, .framer-VMfV4 .framer-15s18hs, .framer-VMfV4 .framer-2w1oi7, .framer-VMfV4 .framer-1ut4xuq, .framer-VMfV4 .framer-1k7m1am, .framer-VMfV4 .framer-1mo3vtk, .framer-VMfV4 .framer-ca4iki, .framer-VMfV4 .framer-o8sv2m, .framer-VMfV4 .framer-1pq64vc, .framer-VMfV4 .framer-ciglrl, .framer-VMfV4 .framer-ja7eej, .framer-VMfV4 .framer-19xlu83, .framer-VMfV4 .framer-23qwoj, .framer-VMfV4 .framer-1pf76j0, .framer-VMfV4 .framer-6tsuyq, .framer-VMfV4 .framer-1q5e1ww, .framer-VMfV4 .framer-w3mj1w, .framer-VMfV4 .framer-132v2x0, .framer-VMfV4 .framer-p70mdg, .framer-VMfV4 .framer-1eki1rt, .framer-VMfV4 .framer-1xu8d8o, .framer-VMfV4 .framer-5cg24d, .framer-VMfV4 .framer-qcmmpn, .framer-VMfV4 .framer-1xmz5gf, .framer-VMfV4 .framer-lfksfv, .framer-VMfV4 .framer-1rvzx1k, .framer-VMfV4 .framer-jyx9l2, .framer-VMfV4 .framer-1rrrl3z, .framer-VMfV4 .framer-15y0nix, .framer-VMfV4 .framer-135ggg6, .framer-VMfV4 .framer-1to3stg, .framer-VMfV4 .framer-y5ihd4, .framer-VMfV4 .framer-qduk2y, .framer-VMfV4 .framer-1mbpcoe, .framer-VMfV4 .framer-qyhwka, .framer-VMfV4 .framer-14qgsmp, .framer-VMfV4 .framer-765u4e, .framer-VMfV4 .framer-16e00xl, .framer-VMfV4 .framer-16xyycz, .framer-VMfV4 .framer-10plxq3, .framer-VMfV4 .framer-1s34zo8, .framer-VMfV4 .framer-tu34ua, .framer-VMfV4 .framer-1j1j9of, .framer-VMfV4 .framer-sngtc5 { gap: 0px; } .framer-VMfV4.framer-lo018b > *, .framer-VMfV4 .framer-1w1fj9q > *, .framer-VMfV4 .framer-15s18hs > *, .framer-VMfV4 .framer-ja7eej > *, .framer-VMfV4 .framer-23qwoj > *, .framer-VMfV4 .framer-6tsuyq > *, .framer-VMfV4 .framer-1eki1rt > *, .framer-VMfV4 .framer-qcmmpn > *, .framer-VMfV4 .framer-1rvzx1k > *, .framer-VMfV4 .framer-15y0nix > *, .framer-VMfV4 .framer-y5ihd4 > *, .framer-VMfV4 .framer-qyhwka > *, .framer-VMfV4 .framer-16e00xl > *, .framer-VMfV4 .framer-1s34zo8 > *, .framer-VMfV4 .framer-sngtc5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VMfV4.framer-lo018b > :first-child, .framer-VMfV4 .framer-14vx72q > :first-child, .framer-VMfV4 .framer-1w1fj9q > :first-child, .framer-VMfV4 .framer-17ot09b > :first-child, .framer-VMfV4 .framer-1lmg3q1 > :first-child, .framer-VMfV4 .framer-2o5n9c > :first-child, .framer-VMfV4 .framer-1wyg4y3 > :first-child, .framer-VMfV4 .framer-12kx9t3 > :first-child, .framer-VMfV4 .framer-15s18hs > :first-child, .framer-VMfV4 .framer-1ut4xuq > :first-child, .framer-VMfV4 .framer-1mo3vtk > :first-child, .framer-VMfV4 .framer-ca4iki > :first-child, .framer-VMfV4 .framer-o8sv2m > :first-child, .framer-VMfV4 .framer-1pq64vc > :first-child, .framer-VMfV4 .framer-ja7eej > :first-child, .framer-VMfV4 .framer-19xlu83 > :first-child, .framer-VMfV4 .framer-23qwoj > :first-child, .framer-VMfV4 .framer-1pf76j0 > :first-child, .framer-VMfV4 .framer-6tsuyq > :first-child, .framer-VMfV4 .framer-1q5e1ww > :first-child, .framer-VMfV4 .framer-132v2x0 > :first-child, .framer-VMfV4 .framer-1eki1rt > :first-child, .framer-VMfV4 .framer-1xu8d8o > :first-child, .framer-VMfV4 .framer-5cg24d > :first-child, .framer-VMfV4 .framer-qcmmpn > :first-child, .framer-VMfV4 .framer-1xmz5gf > :first-child, .framer-VMfV4 .framer-lfksfv > :first-child, .framer-VMfV4 .framer-1rvzx1k > :first-child, .framer-VMfV4 .framer-jyx9l2 > :first-child, .framer-VMfV4 .framer-1rrrl3z > :first-child, .framer-VMfV4 .framer-15y0nix > :first-child, .framer-VMfV4 .framer-135ggg6 > :first-child, .framer-VMfV4 .framer-1to3stg > :first-child, .framer-VMfV4 .framer-y5ihd4 > :first-child, .framer-VMfV4 .framer-qduk2y > :first-child, .framer-VMfV4 .framer-1mbpcoe > :first-child, .framer-VMfV4 .framer-qyhwka > :first-child, .framer-VMfV4 .framer-14qgsmp > :first-child, .framer-VMfV4 .framer-765u4e > :first-child, .framer-VMfV4 .framer-16e00xl > :first-child, .framer-VMfV4 .framer-16xyycz > :first-child, .framer-VMfV4 .framer-10plxq3 > :first-child, .framer-VMfV4 .framer-1s34zo8 > :first-child, .framer-VMfV4 .framer-tu34ua > :first-child, .framer-VMfV4 .framer-1j1j9of > :first-child, .framer-VMfV4 .framer-sngtc5 > :first-child { margin-top: 0px; } .framer-VMfV4.framer-lo018b > :last-child, .framer-VMfV4 .framer-14vx72q > :last-child, .framer-VMfV4 .framer-1w1fj9q > :last-child, .framer-VMfV4 .framer-17ot09b > :last-child, .framer-VMfV4 .framer-1lmg3q1 > :last-child, .framer-VMfV4 .framer-2o5n9c > :last-child, .framer-VMfV4 .framer-1wyg4y3 > :last-child, .framer-VMfV4 .framer-12kx9t3 > :last-child, .framer-VMfV4 .framer-15s18hs > :last-child, .framer-VMfV4 .framer-1ut4xuq > :last-child, .framer-VMfV4 .framer-1mo3vtk > :last-child, .framer-VMfV4 .framer-ca4iki > :last-child, .framer-VMfV4 .framer-o8sv2m > :last-child, .framer-VMfV4 .framer-1pq64vc > :last-child, .framer-VMfV4 .framer-ja7eej > :last-child, .framer-VMfV4 .framer-19xlu83 > :last-child, .framer-VMfV4 .framer-23qwoj > :last-child, .framer-VMfV4 .framer-1pf76j0 > :last-child, .framer-VMfV4 .framer-6tsuyq > :last-child, .framer-VMfV4 .framer-1q5e1ww > :last-child, .framer-VMfV4 .framer-132v2x0 > :last-child, .framer-VMfV4 .framer-1eki1rt > :last-child, .framer-VMfV4 .framer-1xu8d8o > :last-child, .framer-VMfV4 .framer-5cg24d > :last-child, .framer-VMfV4 .framer-qcmmpn > :last-child, .framer-VMfV4 .framer-1xmz5gf > :last-child, .framer-VMfV4 .framer-lfksfv > :last-child, .framer-VMfV4 .framer-1rvzx1k > :last-child, .framer-VMfV4 .framer-jyx9l2 > :last-child, .framer-VMfV4 .framer-1rrrl3z > :last-child, .framer-VMfV4 .framer-15y0nix > :last-child, .framer-VMfV4 .framer-135ggg6 > :last-child, .framer-VMfV4 .framer-1to3stg > :last-child, .framer-VMfV4 .framer-y5ihd4 > :last-child, .framer-VMfV4 .framer-qduk2y > :last-child, .framer-VMfV4 .framer-1mbpcoe > :last-child, .framer-VMfV4 .framer-qyhwka > :last-child, .framer-VMfV4 .framer-14qgsmp > :last-child, .framer-VMfV4 .framer-765u4e > :last-child, .framer-VMfV4 .framer-16e00xl > :last-child, .framer-VMfV4 .framer-16xyycz > :last-child, .framer-VMfV4 .framer-10plxq3 > :last-child, .framer-VMfV4 .framer-1s34zo8 > :last-child, .framer-VMfV4 .framer-tu34ua > :last-child, .framer-VMfV4 .framer-1j1j9of > :last-child, .framer-VMfV4 .framer-sngtc5 > :last-child { margin-bottom: 0px; } .framer-VMfV4 .framer-14vx72q > *, .framer-VMfV4 .framer-2o5n9c > *, .framer-VMfV4 .framer-ca4iki > *, .framer-VMfV4 .framer-1pq64vc > *, .framer-VMfV4 .framer-1xu8d8o > *, .framer-VMfV4 .framer-1xmz5gf > *, .framer-VMfV4 .framer-jyx9l2 > *, .framer-VMfV4 .framer-135ggg6 > *, .framer-VMfV4 .framer-qduk2y > *, .framer-VMfV4 .framer-14qgsmp > *, .framer-VMfV4 .framer-16xyycz > *, .framer-VMfV4 .framer-tu34ua > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VMfV4 .framer-1iiibp > *, .framer-VMfV4 .framer-2w1oi7 > *, .framer-VMfV4 .framer-1k7m1am > *, .framer-VMfV4 .framer-w3mj1w > *, .framer-VMfV4 .framer-p70mdg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VMfV4 .framer-1iiibp > :first-child, .framer-VMfV4 .framer-2w1oi7 > :first-child, .framer-VMfV4 .framer-1k7m1am > :first-child, .framer-VMfV4 .framer-ciglrl > :first-child, .framer-VMfV4 .framer-w3mj1w > :first-child, .framer-VMfV4 .framer-p70mdg > :first-child { margin-left: 0px; } .framer-VMfV4 .framer-1iiibp > :last-child, .framer-VMfV4 .framer-2w1oi7 > :last-child, .framer-VMfV4 .framer-1k7m1am > :last-child, .framer-VMfV4 .framer-ciglrl > :last-child, .framer-VMfV4 .framer-w3mj1w > :last-child, .framer-VMfV4 .framer-p70mdg > :last-child { margin-right: 0px; } .framer-VMfV4 .framer-17ot09b > *, .framer-VMfV4 .framer-1wyg4y3 > *, .framer-VMfV4 .framer-12kx9t3 > *, .framer-VMfV4 .framer-1mo3vtk > *, .framer-VMfV4 .framer-19xlu83 > *, .framer-VMfV4 .framer-1pf76j0 > *, .framer-VMfV4 .framer-1q5e1ww > *, .framer-VMfV4 .framer-132v2x0 > *, .framer-VMfV4 .framer-5cg24d > *, .framer-VMfV4 .framer-lfksfv > *, .framer-VMfV4 .framer-1rrrl3z > *, .framer-VMfV4 .framer-1to3stg > *, .framer-VMfV4 .framer-1mbpcoe > *, .framer-VMfV4 .framer-765u4e > *, .framer-VMfV4 .framer-10plxq3 > *, .framer-VMfV4 .framer-1j1j9of > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-VMfV4 .framer-1lmg3q1 > *, .framer-VMfV4 .framer-1ut4xuq > *, .framer-VMfV4 .framer-o8sv2m > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VMfV4 .framer-ciglrl > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-VMfV4.framer-lo018b { width: 810px; } .framer-VMfV4 .framer-n8rvke-container { order: 0; } .framer-VMfV4 .framer-wh57of-container { order: 2; } .framer-VMfV4 .framer-ksbti3 { order: 1; } .framer-VMfV4 .framer-1iiibp { order: 3; } .framer-VMfV4 .framer-o1nl5j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 4; padding: 0px; } .framer-VMfV4 .framer-17ot09b { left: unset; position: relative; top: unset; transform: unset; } .framer-VMfV4 .framer-1lmg3q1 { order: 5; padding: 10px 0px 0px 0px; } .framer-VMfV4 .framer-12kx9t3 { order: 6; } .framer-VMfV4 .framer-1ad4auk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-VMfV4 .framer-15s18hs { height: 462px; left: unset; position: relative; top: unset; } .framer-VMfV4 .framer-2w1oi7 { order: 7; } .framer-VMfV4 .framer-1ut4xuq, .framer-VMfV4 .framer-jh1v3x, .framer-VMfV4 .framer-1df0bkc { width: 100%; } .framer-VMfV4 .framer-2ph5o7, .framer-VMfV4 .framer-1rbyum5, .framer-VMfV4 .framer-h7d4db, .framer-VMfV4 .framer-83rx85, .framer-VMfV4 .framer-1jbdnfm, .framer-VMfV4 .framer-1e3xva8 { height: var(--framer-aspect-ratio-supported, 100px); } .framer-VMfV4 .framer-1k7m1am { order: 8; } .framer-VMfV4 .framer-ca4iki { order: 9; } .framer-VMfV4 .framer-1pq64vc { order: 10; } .framer-VMfV4 .framer-k1is6o, .framer-VMfV4 .framer-60eljm, .framer-VMfV4 .framer-16wt8sp { height: var(--framer-aspect-ratio-supported, 173px); } .framer-VMfV4 .framer-w3mj1w { order: 11; } .framer-VMfV4 .framer-p70mdg { order: 12; } .framer-VMfV4 .framer-1eki1rt { height: 560px; justify-content: flex-start; } .framer-VMfV4 .framer-9lkl7-container { width: 750px; } .framer-VMfV4 .framer-5egyy7-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VMfV4 .framer-o1nl5j, .framer-VMfV4 .framer-1ad4auk { gap: 0px; } .framer-VMfV4 .framer-o1nl5j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VMfV4 .framer-o1nl5j > :first-child { margin-left: 0px; } .framer-VMfV4 .framer-o1nl5j > :last-child { margin-right: 0px; } .framer-VMfV4 .framer-1ad4auk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VMfV4 .framer-1ad4auk > :first-child { margin-top: 0px; } .framer-VMfV4 .framer-1ad4auk > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-VMfV4.framer-lo018b { width: 390px; } .framer-VMfV4 .framer-n8rvke-container { order: 0; } .framer-VMfV4 .framer-wh57of-container { height: var(--framer-aspect-ratio-supported, 58px); left: 50%; order: 2; right: unset; transform: translateX(-50%); width: 58px; } .framer-VMfV4 .framer-ksbti3 { height: 700px; order: 1; } .framer-VMfV4 .framer-14vx72q { gap: 13px; left: 0px; min-height: 171px; padding: 30px; right: 0px; top: 140px; transform: unset; width: unset; } .framer-VMfV4 .framer-1iiibp { order: 3; } .framer-VMfV4 .framer-1w1fj9q, .framer-VMfV4 .framer-1mo3vtk, .framer-VMfV4 .framer-o8sv2m, .framer-VMfV4 .framer-132v2x0 { padding: 15px; } .framer-VMfV4 .framer-o1nl5j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 4; padding: 0px; } .framer-VMfV4 .framer-17ot09b { left: unset; padding: 15px; position: relative; top: unset; transform: unset; } .framer-VMfV4 .framer-1lmg3q1 { order: 5; } .framer-VMfV4 .framer-2o5n9c { padding: 0px; } .framer-VMfV4 .framer-1wyg4y3 { height: min-content; } .framer-VMfV4 .framer-1kry6mt { flex: none; height: 231px; } .framer-VMfV4 .framer-12kx9t3 { gap: 8px; order: 6; padding: 15px; } .framer-VMfV4 .framer-1ad4auk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-VMfV4 .framer-15s18hs { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 217px; left: unset; position: relative; top: unset; will-change: unset; } .framer-VMfV4 .framer-2w1oi7 { order: 7; } .framer-VMfV4 .framer-1ut4xuq { padding: 15px; width: 100%; } .framer-VMfV4 .framer-jh1v3x { width: 100%; } .framer-VMfV4 .framer-1df0bkc { grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 100%; } .framer-VMfV4 .framer-2ph5o7, .framer-VMfV4 .framer-1rbyum5, .framer-VMfV4 .framer-h7d4db, .framer-VMfV4 .framer-83rx85, .framer-VMfV4 .framer-1jbdnfm, .framer-VMfV4 .framer-1e3xva8 { height: var(--framer-aspect-ratio-supported, 100px); } .framer-VMfV4 .framer-1k7m1am { order: 8; } .framer-VMfV4 .framer-ca4iki { order: 9; } .framer-VMfV4 .framer-1pq64vc { order: 10; } .framer-VMfV4 .framer-ciglrl { flex-direction: column; padding: 15px; } .framer-VMfV4 .framer-ja7eej, .framer-VMfV4 .framer-23qwoj, .framer-VMfV4 .framer-6tsuyq { flex: none; width: 100%; } .framer-VMfV4 .framer-w3mj1w { order: 11; } .framer-VMfV4 .framer-p70mdg { order: 12; } .framer-VMfV4 .framer-1eki1rt { height: 500px; padding: 15px; } .framer-VMfV4 .framer-9lkl7-container { width: 350px; } .framer-VMfV4 .framer-5egyy7-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VMfV4 .framer-14vx72q, .framer-VMfV4 .framer-o1nl5j, .framer-VMfV4 .framer-12kx9t3, .framer-VMfV4 .framer-1ad4auk, .framer-VMfV4 .framer-ciglrl { gap: 0px; } .framer-VMfV4 .framer-14vx72q > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-VMfV4 .framer-14vx72q > :first-child, .framer-VMfV4 .framer-12kx9t3 > :first-child, .framer-VMfV4 .framer-1ad4auk > :first-child, .framer-VMfV4 .framer-ciglrl > :first-child { margin-top: 0px; } .framer-VMfV4 .framer-14vx72q > :last-child, .framer-VMfV4 .framer-12kx9t3 > :last-child, .framer-VMfV4 .framer-1ad4auk > :last-child, .framer-VMfV4 .framer-ciglrl > :last-child { margin-bottom: 0px; } .framer-VMfV4 .framer-o1nl5j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VMfV4 .framer-o1nl5j > :first-child { margin-left: 0px; } .framer-VMfV4 .framer-o1nl5j > :last-child { margin-right: 0px; } .framer-VMfV4 .framer-12kx9t3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-VMfV4 .framer-1ad4auk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VMfV4 .framer-ciglrl > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5752\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"q7pZQs_65\":{\"layout\":[\"fixed\",\"auto\"]},\"wqev0x00n\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"F2TATf07Y\":{\"pattern\":\":F2TATf07Y\",\"name\":\"tophome\"},\"j4h7gf52g\":{\"pattern\":\":j4h7gf52g\",\"name\":\"topproduct\"},\"MNPo5jvTO\":{\"pattern\":\":MNPo5jvTO\",\"name\":\"secproduct\"}}\n * @framerResponsiveScreen\n */const FramerDZ_2okPPG=withCSS(Component,css,\"framer-VMfV4\");export default FramerDZ_2okPPG;FramerDZ_2okPPG.displayName=\"Product\";FramerDZ_2okPPG.defaultProps={height:5752,width:1200};addFonts(FramerDZ_2okPPG,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Philosopher\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/philosopher/v20/vEFI2_5QCwIS4_Dhez5jcWjVamgZ-NaXXq7H.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w7Y3tcoqK5.woff2\",weight:\"800\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...NavbarFonts,...BackToTopFonts,...DownloadBrochureFonts,...VideoFonts,...SlideshowFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDZ_2okPPG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"5752\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q7pZQs_65\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wqev0x00n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"F2TATf07Y\\\":{\\\"pattern\\\":\\\":F2TATf07Y\\\",\\\"name\\\":\\\"tophome\\\"},\\\"j4h7gf52g\\\":{\\\"pattern\\\":\\\":j4h7gf52g\\\",\\\"name\\\":\\\"topproduct\\\"},\\\"MNPo5jvTO\\\":{\\\"pattern\\\":\\\":MNPo5jvTO\\\",\\\"name\\\":\\\"secproduct\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavbarFonts", "getFonts", "htOsDgA9E_default", "BackToTopFonts", "B_G9VWxct_default", "ContainerWithFX", "withFX", "Container", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "DownloadBrochureFonts", "wqWtFUnhw_default", "VideoFonts", "Video", "SlideshowFonts", "Slideshow", "FooterFonts", "Q7F88e4di_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "t", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "ref2", "elementId1", "ref3", "elementId2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "htOsDgA9E_default", "ContainerWithFX", "B_G9VWxct_default", "getLoadingLazyAtYPosition", "Image2", "ImageWithOptimizedAppearEffect", "RichText2", "x", "wqWtFUnhw_default", "Video", "Slideshow", "Q7F88e4di_default", "css", "FramerDZ_2okPPG", "withCSS", "DZ_2okPPG_default", "addFonts", "NavbarFonts", "BackToTopFonts", "DownloadBrochureFonts", "VideoFonts", "SlideshowFonts", "FooterFonts", "__FramerMetadata__"]
}
