{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/zLkdBTHt8IlvC9hKxzZJ/pKX7zzAYWpst4BQzI9UM/jxSi6nLyc.js", "ssg:https://framerusercontent.com/modules/ql950zpcTRdcDz8hCYHE/TNHOinPr5WVxLJpWxtnD/KA__nKIWJ.js", "ssg:https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js", "ssg:https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js", "ssg:https://framerusercontent.com/modules/hBN0QYsyXUk1K0f6CIs2/614eU1a4oI7ndYsgSAxF/lI2q1RNCs.js", "ssg:https://framerusercontent.com/modules/ISPDdlebbSRnRJ2uMhBw/Gg3HOJbmbeeoPXGboGHu/ocfA2NUsb.js", "ssg:https://framerusercontent.com/modules/mMGUogDZHoMhuXBHsOfJ/nowe2axokCwNLhgX0Lbi/ets6ME8ND.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (bc39543)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/wuViUwW3rDZ0Oi9tWGMp/GZ4eYQen90haKyd9GyLe/C3K504PgO.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fMIaj8049qBOT7Eaztyr/SqmG0BueTultmlPOXJKA/Ki85t6lVm.js\";const enabledGestures={zxilCBIFx:{hover:true}};const serializationHash=\"framer-DLa2k\";const variantClassNames={zxilCBIFx:\"framer-v-fn75ty\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,icon,id,text,title,width,...props})=>{return{...props,B1AkW50uk:title??props.B1AkW50uk??\"Most Influential Post\",JmDkQaSVU:text??props.JmDkQaSVU??\"We are the fastest and easiest way to launch an attractive and feature-complete SaaS.\",lHQ4Hpmri:icon??props.lHQ4Hpmri??{pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/vKgnuhtuOaJJv2YcoXMlE5GKXik.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,lHQ4Hpmri,B1AkW50uk,JmDkQaSVU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"zxilCBIFx\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1dhurgf=activeVariantCallback(async(...args)=>{setVariant(\"zxilCBIFx\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fn75ty\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zxilCBIFx\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"zxilCBIFx-hover\":{backgroundColor:\"var(--token-77a26bd9-088d-4fad-a7be-054944f0828a, rgb(224, 229, 228))\"}},...addPropertyOverrides({\"zxilCBIFx-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:120,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+0),pixelHeight:120,pixelWidth:120,sizes:\"75px\",...toResponsiveImage(lHQ4Hpmri)},className:\"framer-1isvei4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LpRPN92A1\",onTap:onTap1dhurgf}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19i9d\",\"data-framer-name\":\"Feature Card Body\",layoutDependency:layoutDependency,layoutId:\"LR1z7H7WL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37)))\"},children:\"Most Influential Post\"})}),className:\"framer-o2wrvt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QFzS3IPir\",style:{\"--extracted-a0htzi\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},text:B1AkW50uk,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70)))\"},children:\"We are the fastest and easiest way to launch an attractive and feature-complete SaaS.\"})}),className:\"framer-6qxole\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cdLwB85Xi\",style:{\"--extracted-r6o4lv\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},text:JmDkQaSVU,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DLa2k.framer-lqaaac, .framer-DLa2k .framer-lqaaac { display: block; }\",\".framer-DLa2k.framer-fn75ty { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 40px 30px 30px; position: relative; width: 306px; }\",\".framer-DLa2k .framer-1isvei4 { cursor: pointer; flex: none; height: 85px; overflow: visible; position: relative; width: 75px; }\",\".framer-DLa2k .framer-19i9d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DLa2k .framer-o2wrvt, .framer-DLa2k .framer-6qxole { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DLa2k.framer-fn75ty, .framer-DLa2k .framer-19i9d { gap: 0px; } .framer-DLa2k.framer-fn75ty > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-DLa2k.framer-fn75ty > :first-child, .framer-DLa2k .framer-19i9d > :first-child { margin-top: 0px; } .framer-DLa2k.framer-fn75ty > :last-child, .framer-DLa2k .framer-19i9d > :last-child { margin-bottom: 0px; } .framer-DLa2k .framer-19i9d > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 290\n * @framerIntrinsicWidth 306\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ev06_7Zv0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"lHQ4Hpmri\":\"icon\",\"B1AkW50uk\":\"title\",\"JmDkQaSVU\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjxSi6nLyc=withCSS(Component,css,\"framer-DLa2k\");export default FramerjxSi6nLyc;FramerjxSi6nLyc.displayName=\"Feature Card\";FramerjxSi6nLyc.defaultProps={height:290,width:306};addPropertyControls(FramerjxSi6nLyc,{lHQ4Hpmri:{__defaultAssetReference:\"data:framer/asset-reference,vKgnuhtuOaJJv2YcoXMlE5GKXik.svg?originalFilename=ChatGPT+Image+22.+apr.+2025%2C+09.22.13+1.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},B1AkW50uk:{defaultValue:\"Most Influential Post\",displayTextArea:false,title:\"Title\",type:ControlType.String},JmDkQaSVU:{defaultValue:\"We are the fastest and easiest way to launch an attractive and feature-complete SaaS.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerjxSi6nLyc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjxSi6nLyc\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"290\",\"framerIntrinsicWidth\":\"306\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ev06_7Zv0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"lHQ4Hpmri\\\":\\\"icon\\\",\\\"B1AkW50uk\\\":\\\"title\\\",\\\"JmDkQaSVU\\\":\\\"text\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jxSi6nLyc.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"N1bWfpLZR\",\"snWh_n1On\",\"X3tHIeqHg\",\"zPm_wuTmB\",\"DfqWSErMV\",\"tpd2TtWYr\",\"fMGX_Mh55\",\"EYGlvxRRx\",\"qOa72CNkn\"];const serializationHash=\"framer-y3Vks\";const variantClassNames={DfqWSErMV:\"framer-v-16ksrcm\",EYGlvxRRx:\"framer-v-1d3oi5y\",fMGX_Mh55:\"framer-v-1omqlny\",N1bWfpLZR:\"framer-v-11phbqa\",qOa72CNkn:\"framer-v-1cxidgb\",snWh_n1On:\"framer-v-o7braj\",tpd2TtWYr:\"framer-v-vwhwt9\",X3tHIeqHg:\"framer-v-1avmmjo\",zPm_wuTmB:\"framer-v-322x2n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"MODU Red_NEW\":\"EYGlvxRRx\",\"MODU Red-NEW\":\"fMGX_Mh55\",\"MODU Red\":\"tpd2TtWYr\",\"Orange - Small\":\"zPm_wuTmB\",\"Primary - Small\":\"snWh_n1On\",\"Variant 8\":\"qOa72CNkn\",Orange:\"X3tHIeqHg\",Primary:\"N1bWfpLZR\"};const getProps=({height,id,title,width,...props})=>{return{...props,ovxBITwSh:title??props.ovxBITwSh??\"BUILDING BETTER SAAS WEBSITE\",variant:humanReadableVariantMap[props.variant]??props.variant??\"N1bWfpLZR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ovxBITwSh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N1bWfpLZR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-11phbqa\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"N1bWfpLZR\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-a54aba71-5527-491c-b7eb-8e8ec3c86d7a, rgb(185, 193, 191))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c35d4081-fdcf-4803-9478-f6b7280b87cf, rgb(240, 245, 244))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,...style},variants:{DfqWSErMV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},EYGlvxRRx:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},fMGX_Mh55:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},qOa72CNkn:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(15, 37, 51)\"},tpd2TtWYr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},X3tHIeqHg:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-83e9a7c8-4821-4420-80cc-5e95a71a1084, rgb(255, 195, 141))\"},zPm_wuTmB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-83e9a7c8-4821-4420-80cc-5e95a71a1084, rgb(255, 195, 141))\"}},...addPropertyOverrides({DfqWSErMV:{\"data-framer-name\":\"MODU Red\"},EYGlvxRRx:{\"data-framer-name\":\"MODU Red_NEW\"},fMGX_Mh55:{\"data-framer-name\":\"MODU Red-NEW\"},qOa72CNkn:{\"data-framer-name\":\"Variant 8\"},snWh_n1On:{\"data-framer-name\":\"Primary - Small\"},tpd2TtWYr:{\"data-framer-name\":\"MODU Red\"},X3tHIeqHg:{\"data-framer-name\":\"Orange\"},zPm_wuTmB:{\"data-framer-name\":\"Orange - Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47)))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})}),className:\"framer-15xt0pt\",\"data-framer-name\":\"BUILDING BETTER SAAS WEBSITE\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ZIg16eIWL\",style:{\"--extracted-r6o4lv\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},text:ovxBITwSh,variants:{DfqWSErMV:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},EYGlvxRRx:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},fMGX_Mh55:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},qOa72CNkn:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},tpd2TtWYr:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({DfqWSErMV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})},EYGlvxRRx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.0214286em\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})},fMGX_Mh55:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})},qOa72CNkn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})},snWh_n1On:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.0214286em\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47)))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})},tpd2TtWYr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.0214286em\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})},zPm_wuTmB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.0214286em\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47)))\"},children:\"BUILDING BETTER SAAS WEBSITE\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y3Vks.framer-1xday3g, .framer-y3Vks .framer-1xday3g { display: block; }\",\".framer-y3Vks.framer-11phbqa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 7px 15px 7px 15px; position: relative; width: min-content; }\",\".framer-y3Vks .framer-15xt0pt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-y3Vks.framer-v-o7braj.framer-11phbqa, .framer-y3Vks.framer-v-322x2n.framer-11phbqa, .framer-y3Vks.framer-v-vwhwt9.framer-11phbqa { padding: 5px 15px 5px 15px; }\",\".framer-y3Vks.framer-v-1d3oi5y.framer-11phbqa { height: 32px; padding: 5px 15px 5px 15px; width: 236px; }\",'.framer-y3Vks[data-border=\"true\"]::after, .framer-y3Vks [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 270.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"snWh_n1On\":{\"layout\":[\"auto\",\"auto\"]},\"X3tHIeqHg\":{\"layout\":[\"auto\",\"auto\"]},\"zPm_wuTmB\":{\"layout\":[\"auto\",\"auto\"]},\"DfqWSErMV\":{\"layout\":[\"auto\",\"auto\"]},\"tpd2TtWYr\":{\"layout\":[\"auto\",\"auto\"]},\"fMGX_Mh55\":{\"layout\":[\"auto\",\"auto\"]},\"EYGlvxRRx\":{\"layout\":[\"fixed\",\"fixed\"]},\"qOa72CNkn\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ovxBITwSh\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerKA__nKIWJ=withCSS(Component,css,\"framer-y3Vks\");export default FramerKA__nKIWJ;FramerKA__nKIWJ.displayName=\"Badge\";FramerKA__nKIWJ.defaultProps={height:36,width:270.5};addPropertyControls(FramerKA__nKIWJ,{variant:{options:[\"N1bWfpLZR\",\"snWh_n1On\",\"X3tHIeqHg\",\"zPm_wuTmB\",\"DfqWSErMV\",\"tpd2TtWYr\",\"fMGX_Mh55\",\"EYGlvxRRx\",\"qOa72CNkn\"],optionTitles:[\"Primary\",\"Primary - Small\",\"Orange\",\"Orange - Small\",\"MODU Red\",\"MODU Red\",\"MODU Red-NEW\",\"MODU Red_NEW\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},ovxBITwSh:{defaultValue:\"BUILDING BETTER SAAS WEBSITE\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerKA__nKIWJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKA__nKIWJ\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ovxBITwSh\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"270.5\",\"framerIntrinsicHeight\":\"36\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"snWh_n1On\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X3tHIeqHg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zPm_wuTmB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DfqWSErMV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tpd2TtWYr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fMGX_Mh55\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EYGlvxRRx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qOa72CNkn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KA__nKIWJ.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-600\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/HgKWRU5cM:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"}];export const css=['.framer-6hRrT .framer-styles-preset-1wjjzog:not(.rich-text-wrapper), .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper p, .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-6hRrT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0885f34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js\";const cycleOrder=[\"N61FsPvBt\",\"JZTi9zOUa\"];const variantClassNames={JZTi9zOUa:\"framer-v-2lyczf\",N61FsPvBt:\"framer-v-1d51j9y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Closed:\"N61FsPvBt\",Open:\"JZTi9zOUa\"};const transitions={default:{damping:40,delay:0,duration:0,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"N61FsPvBt\",question:W88zB8mIG=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",answer:T8rQFvSBR=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"N61FsPvBt\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2wrxd7=activeVariantCallback(async(...args)=>{setVariant(\"JZTi9zOUa\");});const onTapzc6ei0=activeVariantCallback(async(...args)=>{setVariant(\"N61FsPvBt\");});const isDisplayed=()=>{if(baseVariant===\"JZTi9zOUa\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-VVL85\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1d51j9y\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"N61FsPvBt\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({JZTi9zOUa:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-kc1y8h\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bQOn5duVh\",onTap:onTap2wrxd7,transition:transition,...addPropertyOverrides({JZTi9zOUa:{onTap:onTapzc6ei0}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1k6lcpt\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"v4VcYOUIZ\",style:{opacity:.3,rotate:0},transition:transition,variants:{JZTi9zOUa:{rotate:45}},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1cniqsp\",layoutDependency:layoutDependency,layoutId:\"O9no9JEmD\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-5jljo8\",layoutDependency:layoutDependency,layoutId:\"bQOcxcL7T\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition})]}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"What is Framer?\"})}),className:\"framer-q7ceo4\",layoutDependency:layoutDependency,layoutId:\"c3uDyFyT2\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1xmf1aa\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"QSIj1YYQm\",style:{opacity:0},transition:transition,variants:{JZTi9zOUa:{opacity:1}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1yk021p\",layoutDependency:layoutDependency,layoutId:\"YY93wzcf5\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,transition:transition,variants:{JZTi9zOUa:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})});});const css=['.framer-VVL85 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VVL85 * { box-sizing: border-box; }\",\".framer-VVL85 .framer-xy52j3 { display: block; }\",\".framer-VVL85 .framer-1d51j9y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-VVL85 .framer-kc1y8h { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-VVL85 .framer-1k6lcpt { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-VVL85 .framer-1cniqsp { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-VVL85 .framer-5jljo8 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-VVL85 .framer-q7ceo4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VVL85 .framer-1xmf1aa { 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; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-VVL85 .framer-1yk021p { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VVL85 .framer-1d51j9y, .framer-VVL85 .framer-kc1y8h, .framer-VVL85 .framer-1xmf1aa { gap: 0px; } .framer-VVL85 .framer-1d51j9y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VVL85 .framer-1d51j9y > :first-child, .framer-VVL85 .framer-1xmf1aa > :first-child { margin-top: 0px; } .framer-VVL85 .framer-1d51j9y > :last-child, .framer-VVL85 .framer-1xmf1aa > :last-child { margin-bottom: 0px; } .framer-VVL85 .framer-kc1y8h > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VVL85 .framer-kc1y8h > :first-child { margin-left: 0px; } .framer-VVL85 .framer-kc1y8h > :last-child { margin-right: 0px; } .framer-VVL85 .framer-1xmf1aa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JZTi9zOUa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n */ const FramerJDIZfHyyT=withCSS(Component,css,\"framer-VVL85\");export default FramerJDIZfHyyT;FramerJDIZfHyyT.displayName=\"Row\";FramerJDIZfHyyT.defaultProps={height:88,width:400};addPropertyControls(FramerJDIZfHyyT,{variant:{options:[\"N61FsPvBt\",\"JZTi9zOUa\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerJDIZfHyyT,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDIZfHyyT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JZTi9zOUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDIZfHyyT.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Row from\"https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-dDcgv\";const variantClassNames={tOhv6TdkT:\"framer-v-1dfetap\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"tOhv6TdkT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1dfetap\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tOhv6TdkT\",ref:refBinding,style:{backgroundColor:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-olango-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RJtPxZqzc-container\",nodeId:\"RJtPxZqzc\",rendersWithMotion:true,scopeId:\"lI2q1RNCs\",children:/*#__PURE__*/_jsx(Row,{answer:\"A modular valve - unlike traditional valves - share same face-to-face dimensions, spare parts and is backwards compataible across different valve types in the same valve ecosystem.\",height:\"100%\",id:\"RJtPxZqzc\",layoutId:\"RJtPxZqzc\",question:\"What is a modular valve?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gqvkjc\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"XHDWvTHds\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tb51ds-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"o6U3xbCNr-container\",nodeId:\"o6U3xbCNr\",rendersWithMotion:true,scopeId:\"lI2q1RNCs\",children:/*#__PURE__*/_jsx(Row,{answer:\"We are headquartered in Vejle, Denmark. We share office with MODU Valves A/S at Ferrarivej 12, 7100 Vejle, Denmark.\",height:\"100%\",id:\"o6U3xbCNr\",layoutId:\"o6U3xbCNr\",question:\"Where are you headquartered?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3xrir3\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"T1Ef0IM5Y\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t5997k-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"obFXK2u8X-container\",nodeId:\"obFXK2u8X\",rendersWithMotion:true,scopeId:\"lI2q1RNCs\",children:/*#__PURE__*/_jsx(Row,{answer:\"Yes! Please reach out to Henrik Svendsen at hs@modu-one.com.\",height:\"100%\",id:\"obFXK2u8X\",layoutId:\"obFXK2u8X\",question:\"Are you looking for distributors?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-esgq7w\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"nvjX4_JXu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ineqt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EKXsbRC_I-container\",nodeId:\"EKXsbRC_I\",rendersWithMotion:true,scopeId:\"lI2q1RNCs\",children:/*#__PURE__*/_jsx(Row,{answer:\"We\u2019re a passionate team of valve experts from Vejle, Denmark, with decades of experience. We are owned by MODU Valves A/S. Learn more at www.moduvalves.com.\",height:\"100%\",id:\"EKXsbRC_I\",layoutId:\"EKXsbRC_I\",question:\"Who is behind MODU ONE?\",style:{width:\"100%\"},variant:\"JZTi9zOUa\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dDcgv.framer-54e92j, .framer-dDcgv .framer-54e92j { display: block; }\",\".framer-dDcgv.framer-1dfetap { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dDcgv .framer-olango-container, .framer-dDcgv .framer-tb51ds-container, .framer-dDcgv .framer-1t5997k-container, .framer-dDcgv .framer-18ineqt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dDcgv .framer-gqvkjc, .framer-dDcgv .framer-3xrir3, .framer-dDcgv .framer-esgq7w { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 327\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlI2q1RNCs=withCSS(Component,css,\"framer-dDcgv\");export default FramerlI2q1RNCs;FramerlI2q1RNCs.displayName=\"Accordion\";FramerlI2q1RNCs.defaultProps={height:327,width:1e3};addFonts(FramerlI2q1RNCs,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlI2q1RNCs\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"327\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1000\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lI2q1RNCs.map", "// Generated by Framer (8ea6382)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wuViUwW3rDZ0Oi9tWGMp/GZ4eYQen90haKyd9GyLe/C3K504PgO.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/fMIaj8049qBOT7Eaztyr/SqmG0BueTultmlPOXJKA/Ki85t6lVm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zrIHMFKHari0530Km2ep/JGHznLESfMN3wkT3EXxi/UdsZSH5WT.js\";const cycleOrder=[\"V3e0Hfjg5\",\"kqsZaGCOd\"];const serializationHash=\"framer-xMvey\";const variantClassNames={kqsZaGCOd:\"framer-v-oajmsm\",V3e0Hfjg5:\"framer-v-1hc0pzl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - Primary - New Red\":\"kqsZaGCOd\",\"Variant 1\":\"V3e0Hfjg5\"};const getProps=({height,id,number,paragraph,title,width,...props})=>{return{...props,P6Kw70kpt:title??props.P6Kw70kpt??\"Analysis & Research\",szCUZYlSJ:number??props.szCUZYlSJ??\"01\",variant:humanReadableVariantMap[props.variant]??props.variant??\"V3e0Hfjg5\",zq2JFPgUR:paragraph??props.zq2JFPgUR??\"Creating account to our website and use it for your required time..\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,szCUZYlSJ,P6Kw70kpt,zq2JFPgUR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V3e0Hfjg5\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hc0pzl\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"V3e0Hfjg5\",ref:refBinding,style:{...style},...addPropertyOverrides({kqsZaGCOd:{\"data-framer-name\":\"Variant 1 - Primary - New Red\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lusniv\",\"data-framer-name\":\"Content Widget Icon\",layoutDependency:layoutDependency,layoutId:\"qMVg4fADN\",style:{backgroundColor:\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500},variants:{kqsZaGCOd:{backgroundColor:\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mrqkca\",\"data-styles-preset\":\"UdsZSH5WT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"01\"})}),className:\"framer-8l38dj\",\"data-framer-name\":\"01\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"njK68gbwY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:szCUZYlSJ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y5xkeb\",\"data-framer-name\":\"Content Widget Body\",layoutDependency:layoutDependency,layoutId:\"X8vgzfe9M\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37)))\"},children:\"Analysis & Research\"})}),className:\"framer-cw5nbz\",\"data-framer-name\":\"Content Widget Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JW3nOGWaZ\",style:{\"--extracted-a0htzi\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},text:P6Kw70kpt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-794d9e51-56e2-4e08-a137-5c374f7cf08f, rgb(60, 74, 71)))\"},children:\"Creating account to our website and use it for your required time..\"})}),className:\"framer-1w0eso4\",\"data-framer-name\":\"Content Widget Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZAHsDWVnm\",style:{\"--extracted-r6o4lv\":\"var(--token-794d9e51-56e2-4e08-a137-5c374f7cf08f, rgb(60, 74, 71))\"},text:zq2JFPgUR,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xMvey.framer-eo5qk9, .framer-xMvey .framer-eo5qk9 { display: block; }\",\".framer-xMvey.framer-1hc0pzl { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 256px; }\",\".framer-xMvey .framer-1lusniv { flex: none; height: 50px; overflow: visible; position: relative; width: 50px; }\",\".framer-xMvey .framer-8l38dj { flex: none; height: auto; left: 15px; position: absolute; top: 11px; white-space: pre; width: auto; }\",\".framer-xMvey .framer-1y5xkeb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xMvey .framer-cw5nbz, .framer-xMvey .framer-1w0eso4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xMvey.framer-1hc0pzl, .framer-xMvey .framer-1y5xkeb { gap: 0px; } .framer-xMvey.framer-1hc0pzl > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-xMvey.framer-1hc0pzl > :first-child { margin-left: 0px; } .framer-xMvey.framer-1hc0pzl > :last-child { margin-right: 0px; } .framer-xMvey .framer-1y5xkeb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xMvey .framer-1y5xkeb > :first-child { margin-top: 0px; } .framer-xMvey .framer-1y5xkeb > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 140\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kqsZaGCOd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"szCUZYlSJ\":\"number\",\"P6Kw70kpt\":\"title\",\"zq2JFPgUR\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerocfA2NUsb=withCSS(Component,css,\"framer-xMvey\");export default FramerocfA2NUsb;FramerocfA2NUsb.displayName=\"Content Widget\";FramerocfA2NUsb.defaultProps={height:140,width:256};addPropertyControls(FramerocfA2NUsb,{variant:{options:[\"V3e0Hfjg5\",\"kqsZaGCOd\"],optionTitles:[\"Variant 1\",\"Variant 1 - Primary - New Red\"],title:\"Variant\",type:ControlType.Enum},szCUZYlSJ:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String},P6Kw70kpt:{defaultValue:\"Analysis & Research\",displayTextArea:false,title:\"Title\",type:ControlType.String},zq2JFPgUR:{defaultValue:\"Creating account to our website and use it for your required time..\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String}});addFonts(FramerocfA2NUsb,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerocfA2NUsb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kqsZaGCOd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"140\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"256\",\"framerVariables\":\"{\\\"szCUZYlSJ\\\":\\\"number\\\",\\\"P6Kw70kpt\\\":\\\"title\\\",\\\"zq2JFPgUR\\\":\\\"paragraph\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ocfA2NUsb.map", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import FooterSectionTwo from\"#framer/local/canvasComponent/C0ZgvZzoP/C0ZgvZzoP.js\";import FeatureCard from\"#framer/local/canvasComponent/jxSi6nLyc/jxSi6nLyc.js\";import Badge from\"#framer/local/canvasComponent/KA__nKIWJ/KA__nKIWJ.js\";import Header from\"#framer/local/canvasComponent/LbLJTwW5h/LbLJTwW5h.js\";import Accordion from\"#framer/local/canvasComponent/lI2q1RNCs/lI2q1RNCs.js\";import ContentWidget from\"#framer/local/canvasComponent/ocfA2NUsb/ocfA2NUsb.js\";import GradientHeading from\"#framer/local/canvasComponent/xB_8soDMP/xB_8soDMP.js\";import Button from\"#framer/local/canvasComponent/XCKf5gDZy/XCKf5gDZy.js\";import*as sharedStyle2 from\"#framer/local/css/C3K504PgO/C3K504PgO.js\";import*as sharedStyle5 from\"#framer/local/css/Cs2MnOMxL/Cs2MnOMxL.js\";import*as sharedStyle1 from\"#framer/local/css/Ki85t6lVm/Ki85t6lVm.js\";import*as sharedStyle4 from\"#framer/local/css/vaQO5QvoD/vaQO5QvoD.js\";import*as sharedStyle from\"#framer/local/css/xLhAJlZeL/xLhAJlZeL.js\";import*as sharedStyle3 from\"#framer/local/css/Ztr45SMzq/Ztr45SMzq.js\";import metadataProvider from\"#framer/local/webPageMetadata/ets6ME8ND/ets6ME8ND.js\";const HeaderFonts=getFonts(Header);const GradientHeadingFonts=getFonts(GradientHeading);const ButtonFonts=getFonts(Button);const YouTubeFonts=getFonts(YouTube);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithFX=withFX(motion.div);const ContentWidgetFonts=getFonts(ContentWidget);const BadgeFonts=getFonts(Badge);const FeatureCardFonts=getFonts(FeatureCard);const AccordionFonts=getFonts(Accordion);const FooterSectionTwoFonts=getFonts(FooterSectionTwo);const breakpoints={iI1YNxhh9:\"(min-width: 992px) and (max-width: 1439px)\",O0GdGKwgc:\"(max-width: 767px)\",QJpsf83dR:\"(min-width: 1440px)\",ZW4uEutDH:\"(min-width: 768px) and (max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QSufq\";const variantClassNames={iI1YNxhh9:\"framer-v-1ce4t6a\",O0GdGKwgc:\"framer-v-f4jq6s\",QJpsf83dR:\"framer-v-18vu9mv\",ZW4uEutDH:\"framer-v-1d36rml\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-50,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"QJpsf83dR\",Desktop:\"iI1YNxhh9\",Phone:\"O0GdGKwgc\",Tablet:\"ZW4uEutDH\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QJpsf83dR\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ZW4uEutDH\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ZW4uEutDH\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"O0GdGKwgc\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"ZW4uEutDH\",\"O0GdGKwgc\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"uXL8siaBb\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"RFLNoulnR\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"bpHax0Dii\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"QJpsf83dR\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1bf1173e-bf90-4626-8851-283848c3b0fd, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-18vu9mv\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lkvmt\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-amaezt-container\",nodeId:\"bAkxtu98j\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{variant:\"uYQ6ehSpf\"},ZW4uEutDH:{variant:\"J1_qfBMQW\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"bAkxtu98j\",layoutId:\"bAkxtu98j\",lSFZjaZ4m:\"rgba(0, 0, 0, 0)\",style:{width:\"100%\"},variant:\"wN0qmzPZY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n36yqk\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lhydr8\",\"data-framer-name\":\"Text Content block\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o4mavr\",\"data-framer-name\":\"Text Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aeeofj\",\"data-framer-name\":\"Title Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1356px) - 30px, 1px) * 0.75, 675px)`},O0GdGKwgc:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1356px) - 20px, 1px), 675px)`,y:(componentViewport?.y||0)+0+0+60+99+0+0+0+0+0+0+0},ZW4uEutDH:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1356px) - 30px, 1px) * 0.77, 675px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1356px) - 30px, 1px), 675px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1urcwsd-container\",nodeId:\"M5XRxvebs\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{variant:\"o2F5oUuyJ\"}},children:/*#__PURE__*/_jsx(GradientHeading,{height:\"100%\",id:\"M5XRxvebs\",layoutId:\"M5XRxvebs\",qDp8NP6ix:\"Introducing Modular Valves\",style:{width:\"100%\"},variant:\"teCoCjOy0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Introducing MODU ONE\\xae - a modular valve ecosystem with standardized dimensions for simplified engineering, sales, and maintenance.\"})})},O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Introducing MODU ONE\\xae - a modular valve ecosystem with standardized dimensions for simplified engineering, sales, and maintenance.\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Introducing MODU ONE\\xae - a modular valve ecosystem with standardized dimensions for simplified engineering, sales, and maintenance.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Introducing MODU ONE\\xae - a modular valve ecosystem with standardized dimensions for simplified engineering, sales, and maintenance.\"})}),className:\"framer-1cm1l9e\",\"data-framer-name\":\"Get the power of a SaaS website without any of the coding. Clowd is the perfect template for Framer.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1034qzx\",\"data-framer-name\":\"Button Block\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://finestdevs.com/nexo-main\",motionChild:true,nodeId:\"cycXmtHl_\",openInNewTab:true,scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xyixtn framer-kofb4m\",\"data-framer-name\":\"Button 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{width:\"232px\",y:(componentViewport?.y||0)+0+0+60+99+0+0+0+0+257+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"212px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x4nr4q-container\",nodeId:\"F4qgy_FEs\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"F4qgy_FEs\",layoutId:\"F4qgy_FEs\",style:{width:\"100%\"},variant:\"r_rThvVzr\",wcrBP4HAB:\"Become a Distributor\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"woiHjz8LY\"},motionChild:true,nodeId:\"FoSto6w1d\",openInNewTab:false,scopeId:\"ets6ME8ND\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ne0g3 framer-kofb4m\",\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{width:\"232px\",y:(componentViewport?.y||0)+0+0+60+99+0+0+0+0+257+0+76+0},ZW4uEutDH:{width:\"224px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"223px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bjxe09-container\",nodeId:\"Eq0ixYG2u\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Eq0ixYG2u\",layoutId:\"Eq0ixYG2u\",style:{height:\"100%\",width:\"100%\"},variant:\"j7iukblC_\",wcrBP4HAB:\"Request Discovery Call\",width:\"100%\"})})})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1781,pixelWidth:2169,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/0gwu0kRzPoRLVCU9fsVqiMbY7xE.jpg\",srcSet:\"https://framerusercontent.com/images/0gwu0kRzPoRLVCU9fsVqiMbY7xE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0gwu0kRzPoRLVCU9fsVqiMbY7xE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0gwu0kRzPoRLVCU9fsVqiMbY7xE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0gwu0kRzPoRLVCU9fsVqiMbY7xE.jpg 2169w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1343,pixelWidth:1161,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/ZShzN2fj6UZBkZQ02DZmCltof4.jpg\",srcSet:\"https://framerusercontent.com/images/ZShzN2fj6UZBkZQ02DZmCltof4.jpg?scale-down-to=1024 885w,https://framerusercontent.com/images/ZShzN2fj6UZBkZQ02DZmCltof4.jpg 1161w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",pixelHeight:1423,pixelWidth:1752,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/yAdQkCFzArjdIv6f6bX8kq8Bmo.jpg\",srcSet:\"https://framerusercontent.com/images/yAdQkCFzArjdIv6f6bX8kq8Bmo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yAdQkCFzArjdIv6f6bX8kq8Bmo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yAdQkCFzArjdIv6f6bX8kq8Bmo.jpg 1752w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1781,pixelWidth:3070,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/znDCtryPdfBuB4L5Q54kDPqbE5Q.jpg\",srcSet:\"https://framerusercontent.com/images/znDCtryPdfBuB4L5Q54kDPqbE5Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/znDCtryPdfBuB4L5Q54kDPqbE5Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/znDCtryPdfBuB4L5Q54kDPqbE5Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/znDCtryPdfBuB4L5Q54kDPqbE5Q.jpg 3070w\"},className:\"framer-1sxdi32\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uhjill\",\"data-framer-name\":\"Static Grid\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kl26im\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fhqhmm\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hpw8l6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qlyve\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:\"Face-to-Face dimensions varies\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:\"Spare Parts are incompatible across valves\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[\"No interlock, risk of incorrect actuator mounting\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[\"Replacement requires welding\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:\"No default backward compatibility\"})]})})},O0GdGKwgc:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"Face-to-Face dimensions varies\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"Spare Parts are incompatible across valves\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"No interlock, risk of incorrect actuator mounting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"Replacement requires welding\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"No default backward compatibility\"]})]}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:\"Face-to-Face dimensions varies\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:\"Spare Parts are incompatible across valves\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[\"No MSM\u2122 interlock, risk of incorrect actuator mounting\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[\"Replacement requires welding\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:\"No default backward compatibility \"})]})}),className:\"framer-17oqbt1 hidden-1d36rml\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"Face-to-Face dimensions varies\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"Spare Parts are incompatible between valves\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"No interlock, risk of incorrect actuator mounting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"Replacement requires welding\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:\"\u2717  \"}),\"No default backward compatibility\"]})]}),className:\"framer-phdzvy hidden-18vu9mv hidden-1ce4t6a hidden-f4jq6s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Traditional \"}),\"Valves\"]})}),className:\"framer-1rwm5vn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6hphpc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Modular \"}),\"Valves\"]})}),className:\"framer-15pndsf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Face-to-Face dimensions are always the same\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Spare Parts are interchangeable across valves\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"MSM\u2122 Interlock ensures correct actuator mounting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Easy replacement \u2013 no welding needed\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Full default backward compatibility\"]})]}),className:\"framer-f7x0oc hidden-18vu9mv hidden-1ce4t6a hidden-1d36rml\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Face-to-Face dimensions are always the same\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Spare Parts are interchangeable across valves\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"MSM\u2122 Interlock ensures correct actuator mounting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Easy replacement \u2013 no welding needed\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Full default backward compatibility\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Face-to-Face dimensions are always identical\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Spare Parts are interchangeable across valves\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"MSM\u2122 Interlock ensures correct actuator mounting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Easy replacement \u2013 no welding needed\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Full default backward compatibility\"]})}),className:\"framer-xmysee hidden-1d36rml hidden-f4jq6s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"Face-to-Face dimensions are always the same\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"Spare Parts are interchangeable across valves\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-5457870b-0ec5-47b5-b9ec-5c0b7d4dc868, rgb(8, 60, 47))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"MSM\u2122 Interlock ensures correct actuator mounting\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"Easy replacement \u2013 no welding needed\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01875em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-24b51f6b-c881-423f-9dac-e04095d50278, rgb(23, 26, 31))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(19, 135, 27)\"},children:\"\u2713  \"}),\"Full default backward compatibility\"]})]}),className:\"framer-1gx9d5p hidden-18vu9mv hidden-1ce4t6a hidden-f4jq6s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xd7hr7\",\"data-framer-name\":\"Feature Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i47b9l\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pq1viy\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3D Video\"})}),className:\"framer-1tg0627\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"Watch our 3D video of the MODU ONE\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"\\xae \"}),\"Ecosystem below\"]})}),className:\"framer-1zmsas\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-llumxz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fOe__s9_F\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"fOe__s9_F\",isMixedBorderRadius:false,isRed:true,layoutId:\"fOe__s9_F\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=B3B2PUeSvTo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"  \"})}),className:\"framer-17mgae\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xqzimn\",\"data-framer-name\":\"Feature Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ods985\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16z88ga\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Ecosystem Benefits\"})}),className:\"framer-1cymrt6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"All valves in the ecosystem comes with the following benefits:\"})}),className:\"framer-lg410v\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ba2692\",\"data-framer-name\":\"Widget Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h3exi7\",\"data-framer-name\":\"Feature Widget\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fg8i57\",\"data-framer-name\":\"Feature Widget Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1f8a2nh\",\"data-framer-name\":\"Red modularity\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" stroke-width=\"1.25\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"><path d=\"M16.32 18.05H9.75v21.18h6.57V18.05ZM9.64 33.88H.62v-9.62h8.77m41.66-6.21h-6.57v21.18h6.57V18.05Zm.12 15.83h9.01v-9.62h-8.76\" stroke=\"#000\"/><path d=\"m37.87 9.41-.69.71h-1\" stroke=\"#B4252B\"/><path d=\"M33.3 10.12h-8.17\" stroke=\"#B4252B\" stroke-dasharray=\"1.92 2.88\"/><path d=\"M23.69 10.12h-1v1m0 2.64v1h1\" stroke=\"#B4252B\"/><path d=\"M26.67 14.76h10.27L47.52 4.17l12.98-.82\" stroke=\"#B4252B\" stroke-dasharray=\"1.99 2.98\"/><path d=\"m61.99 3.26.99-.06v-1m0-.58v-1h-1\" stroke=\"#B4252B\"/><path d=\"M58.61.62h-9.57\" stroke=\"#B4252B\" stroke-dasharray=\"2.25 3.38\"/><path d=\"M47.35.62h-1l-.69.72\" stroke=\"#B4252B\"/><path d=\"m43.86 3.2-5.09 5.28\" stroke=\"#B4252B\" stroke-dasharray=\"1.72 2.59\"/><path d=\"M28.7 9.77v-5.6h3.41v5.6m-3.41 9.99V14.8m3.41 4.96V14.8\" stroke=\"#000\"/><path d=\"M19.4 20.74v-1h1\" stroke=\"#B4252B\"/><path d=\"M23.73 19.74h15.02\" stroke=\"#B4252B\" stroke-dasharray=\"2.22 3.34\"/><path d=\"M40.41 19.74h1v1\" stroke=\"#B4252B\"/><path d=\"M41.41 23.38v11.84\" stroke=\"#B4252B\" stroke-dasharray=\"1.75 2.63\"/><path d=\"M41.41 36.54v1h-1\" stroke=\"#B4252B\"/><path d=\"M37.08 37.54H22.06\" stroke=\"#B4252B\" stroke-dasharray=\"2.22 3.34\"/><path d=\"M20.4 37.54h-1v-1\" stroke=\"#B4252B\"/><path d=\"M19.4 33.9V22.06\" stroke=\"#B4252B\" stroke-dasharray=\"1.75 2.63\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h63.61v39.85H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jptfxy\",\"data-framer-name\":\"Feature Widget Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Identical Face-to-Face\"})}),className:\"framer-1k50vbg\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"All valves share identical dimensions, simplifying design and installation.\"})}),className:\"framer-1vaqlfl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r1ubvi\",\"data-framer-name\":\"Feature Widget\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhq50z\",\"data-framer-name\":\"Feature Widget Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uskf2n\",\"data-framer-name\":\"Red spareparts\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 74 65\"><g><path d=\"M 0 0 L 73.167 0 L 73.167 64.191 L 0 64.191 Z\" fill=\"transparent\"></path><path d=\"M 17.905 56.749 C 19.121 55.529 19.121 53.565 17.905 52.358 C 17.327 51.772 16.54 51.443 15.718 51.443 C 14.897 51.443 14.11 51.772 13.531 52.358 C 12.316 53.579 12.316 55.542 13.531 56.749 C 14.747 57.969 16.703 57.969 17.905 56.749 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 34.476 43.789 L 50.294 27.91 C 54.998 29.608 60.469 28.56 64.235 24.78 C 68.291 20.707 69.19 14.685 66.93 9.737 L 60.178 16.515 L 53.61 16.515 L 53.61 9.922 L 60.363 3.144 C 55.296 0.81 49.317 1.89 45.378 5.85 C 41.727 9.515 40.512 14.967 42.259 19.845 L 16.425 45.779 C 13.954 45.58 11.404 46.429 9.501 48.326 C 6.078 51.767 6.078 57.34 9.501 60.782 C 12.929 64.217 18.481 64.217 21.909 60.782 C 23.731 58.951 24.658 56.409 24.446 53.831 L 33.591 44.651\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(180,37,43)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 72.335 63.156 L 72.335 54.441 L 44.347 54.441 L 44.347 63.156 Z M 51.417 54.268 L 51.417 42.316 L 64.129 42.316 L 64.129 53.95 M 14.628 22.445 C 18.898 22.445 22.359 18.971 22.359 14.685 C 22.359 10.399 18.898 6.924 14.628 6.924 C 10.359 6.924 6.898 10.399 6.898 14.685 C 6.898 18.971 10.359 22.445 14.628 22.445 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 14.628 28.547 C 22.254 28.547 28.437 22.34 28.437 14.685 C 28.437 7.029 22.256 0.822 14.628 0.822 C 7.004 0.822 0.819 7.029 0.819 14.685 C 0.819 22.34 7.002 28.547 14.628 28.547 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9924385641,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2spm5\",\"data-framer-name\":\"Feature Widget Body\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Shares Ends & Parts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pdrbiq\",\"data-styles-preset\":\"C3K504PgO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Identical Ends & Spare Parts\"})}),className:\"framer-gg2h2s\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"Identical connections and spare parts across valve models reduce inventory.\"})}),className:\"framer-2pn8hg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kw2avm\",\"data-framer-name\":\"Feature Widget\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hfncdx\",\"data-framer-name\":\"Feature Widget Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2s8zhw\",\"data-framer-name\":\"Red safemounting (2)\",fill:\"black\",intrinsicHeight:52,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" stroke-width=\"1.25\" stroke-miterlimit=\"10\"><path d=\"M28.22 34.17h5.6v-5.6\" stroke=\"#B4252B\"/><path d=\"M25.93 46.63c11.432 0 20.7-9.268 20.7-20.7 0-11.432-9.268-20.7-20.7-20.7-11.432 0-20.7 9.268-20.7 20.7 0 11.432 9.268 20.7 20.7 20.7Z\" stroke=\"#000\" stroke-linecap=\"round\"/><path d=\"M25.93 51.24c13.978 0 25.31-11.332 25.31-25.31C51.24 11.952 39.908.62 25.93.62 11.952.62.62 11.952.62 25.93c0 13.978 11.332 25.31 25.31 25.31Z\" stroke=\"#000\" stroke-linecap=\"round\"/><path d=\"m36.61 30.18 4.33-4.33-15.43-15.42-15.43 15.42 15.43 15.43 4.32-4.32h6.78v-6.78Z\" stroke=\"#000\" stroke-linecap=\"round\"/><path d=\"m33.61 29.01 3.15-3.16L25.51 14.6 14.25 25.85l11.26 11.26 3.15-3.16\" stroke=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h51.86v51.86H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7cebzm\",\"data-framer-name\":\"Feature Widget Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"Error-Free Actuator Mounting\"})}),className:\"framer-wu2wzk\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"MODU Safe Mounting ensures 100% reliable valve-actuator assembly.\"})}),className:\"framer-1800x96\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mnafde hidden-18vu9mv hidden-1ce4t6a hidden-1d36rml\",\"data-framer-name\":\"Feature Widget\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wboxgl\",\"data-framer-name\":\"Feature Widget Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a2v4eu\",\"data-framer-name\":\"Red warrenty (1)\",fill:\"black\",intrinsicHeight:47,intrinsicWidth:47,svg:'<svg width=\"47\" height=\"47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m18.69 29.78-1.31 2.54v1.25h-.92v-1.25l-1.31-2.54h1.05l.74 1.59.73-1.59h1.04-.02Zm1.3.74v.77h1.24V32h-1.24v.83h1.4v.74h-2.32v-3.79h2.32v.74h-1.4Zm4.36 2.38h-1.42l-.23.67h-.97l1.37-3.79h1.07l1.37 3.79h-.98l-.23-.67h.02Zm-.24-.71-.47-1.39-.46 1.39h.94-.01Zm3.79 1.38-.79-1.43h-.22v1.43h-.92v-3.79h1.55c.3 0 .55.05.77.16.21.1.37.25.47.43.1.18.16.38.16.61 0 .25-.07.48-.21.68-.14.2-.35.34-.63.42l.88 1.5h-1.04l-.02-.01Zm-1.01-2.08h.57c.17 0 .3-.04.38-.12.08-.08.13-.2.13-.35 0-.14-.04-.26-.13-.34-.08-.08-.21-.12-.38-.12h-.57v.94-.01Zm3.23 1.99c-.22-.09-.4-.22-.53-.4-.13-.18-.2-.39-.21-.64h.98c.01.14.06.25.15.32s.19.11.32.11.24-.03.32-.09a.31.31 0 0 0 .12-.26.29.29 0 0 0-.1-.23.763.763 0 0 0-.23-.15c-.09-.04-.22-.08-.39-.14-.24-.08-.44-.15-.6-.23-.15-.08-.29-.19-.4-.34a.95.95 0 0 1-.17-.58c0-.35.13-.63.38-.83.26-.2.59-.3 1-.3.41 0 .75.1 1.01.3.26.2.39.48.41.83h-1c0-.12-.05-.22-.13-.29a.477.477 0 0 0-.32-.11.4.4 0 0 0-.27.09c-.07.06-.1.15-.1.26 0 .12.06.22.17.29.12.07.3.14.54.22.25.08.44.16.6.24.16.08.29.19.4.33.11.14.17.33.17.56 0 .23-.05.41-.16.59s-.27.32-.48.42c-.21.1-.46.16-.74.16-.28 0-.53-.04-.75-.14l.01.01Z\" fill=\"#B4252B\"/><path d=\"M23.5 46.37c12.63 0 22.87-10.24 22.87-22.87S36.13.63 23.5.63.63 10.87.63 23.5 10.87 46.37 23.5 46.37Z\" stroke=\"#000\" stroke-width=\"1.25\" stroke-linecap=\"square\" stroke-linejoin=\"bevel\"/><path d=\"M23.5 39.65c8.92 0 16.15-7.23 16.15-16.15 0-8.92-7.23-16.15-16.15-16.15-8.92 0-16.15 7.23-16.15 16.15 0 8.92 7.23 16.15 16.15 16.15Z\" stroke=\"#000\" stroke-width=\"1.25\" stroke-linecap=\"square\" stroke-linejoin=\"bevel\"/><path d=\"M8.36 36.2a19.686 19.686 0 0 1-4.63-12.71c0-4.84 1.83-9.51 4.87-12.98m29.78 0a19.62 19.62 0 0 1 4.87 12.98c0 4.97-1.74 9.27-4.62 12.71\" stroke=\"#000\" stroke-width=\"1.25\" stroke-linecap=\"square\" stroke-linejoin=\"bevel\"/><path d=\"M17.84 26.78v-9.65h-1.26v-1.24h2.62v10.89h-1.37.01Zm5.04-10.15c.28-.32.65-.58 1.11-.78.45-.19 1.02-.29 1.7-.29.68 0 1.28.14 1.8.42.52.28.91.69 1.19 1.22.5.98.75 2.3.75 3.96 0 2.13-.38 3.64-1.14 4.53-.62.72-1.53 1.07-2.72 1.07-2.18 0-3.43-1.27-3.76-3.82-.06-.53-.09-1.13-.09-1.79 0-.66.03-1.25.1-1.78s.19-1.04.37-1.53.41-.9.69-1.22v.01Zm4.79 1.54c-.16-.44-.41-.78-.77-1.01-.35-.23-.77-.35-1.25-.35s-.88.08-1.19.25c-.31.16-.55.37-.73.63-.17.26-.31.59-.41.99-.1.4-.17.79-.19 1.17-.03.37-.04.82-.04 1.33 0 .51.01.95.04 1.33.02.37.09.76.19 1.17.1.4.24.73.41.99.17.26.42.47.73.63.31.16.68.25 1.11.25.43 0 .8-.08 1.11-.25.31-.16.56-.37.74-.63.18-.26.31-.59.41-1 .16-.65.25-1.4.25-2.22 0-.82-.03-1.47-.08-1.92-.05-.45-.16-.9-.32-1.34l-.01-.02Z\" fill=\"#B4252B\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h46.99v46.99H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qatd4m\",\"data-framer-name\":\"Feature Widget Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"10 Years of Warranty\"})}),className:\"framer-1ic6d2s\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"10-year warranty ensures long-term reliability and maximized plant uptime.\"})}),className:\"framer-w0ksow\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mn4pdq hidden-18vu9mv hidden-1ce4t6a hidden-f4jq6s\",\"data-framer-name\":\"Feature Widget\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dzytz\",\"data-framer-name\":\"Feature Widget Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y34t7l\",\"data-framer-name\":\"Red warrenty (1)\",fill:\"black\",intrinsicHeight:47,intrinsicWidth:47,svg:'<svg width=\"47\" height=\"47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m18.69 29.78-1.31 2.54v1.25h-.92v-1.25l-1.31-2.54h1.05l.74 1.59.73-1.59h1.04-.02Zm1.3.74v.77h1.24V32h-1.24v.83h1.4v.74h-2.32v-3.79h2.32v.74h-1.4Zm4.36 2.38h-1.42l-.23.67h-.97l1.37-3.79h1.07l1.37 3.79h-.98l-.23-.67h.02Zm-.24-.71-.47-1.39-.46 1.39h.94-.01Zm3.79 1.38-.79-1.43h-.22v1.43h-.92v-3.79h1.55c.3 0 .55.05.77.16.21.1.37.25.47.43.1.18.16.38.16.61 0 .25-.07.48-.21.68-.14.2-.35.34-.63.42l.88 1.5h-1.04l-.02-.01Zm-1.01-2.08h.57c.17 0 .3-.04.38-.12.08-.08.13-.2.13-.35 0-.14-.04-.26-.13-.34-.08-.08-.21-.12-.38-.12h-.57v.94-.01Zm3.23 1.99c-.22-.09-.4-.22-.53-.4-.13-.18-.2-.39-.21-.64h.98c.01.14.06.25.15.32s.19.11.32.11.24-.03.32-.09a.31.31 0 0 0 .12-.26.29.29 0 0 0-.1-.23.763.763 0 0 0-.23-.15c-.09-.04-.22-.08-.39-.14-.24-.08-.44-.15-.6-.23-.15-.08-.29-.19-.4-.34a.95.95 0 0 1-.17-.58c0-.35.13-.63.38-.83.26-.2.59-.3 1-.3.41 0 .75.1 1.01.3.26.2.39.48.41.83h-1c0-.12-.05-.22-.13-.29a.477.477 0 0 0-.32-.11.4.4 0 0 0-.27.09c-.07.06-.1.15-.1.26 0 .12.06.22.17.29.12.07.3.14.54.22.25.08.44.16.6.24.16.08.29.19.4.33.11.14.17.33.17.56 0 .23-.05.41-.16.59s-.27.32-.48.42c-.21.1-.46.16-.74.16-.28 0-.53-.04-.75-.14l.01.01Z\" fill=\"#B4252B\"/><path d=\"M23.5 46.37c12.63 0 22.87-10.24 22.87-22.87S36.13.63 23.5.63.63 10.87.63 23.5 10.87 46.37 23.5 46.37Z\" stroke=\"#000\" stroke-width=\"1.25\" stroke-linecap=\"square\" stroke-linejoin=\"bevel\"/><path d=\"M23.5 39.65c8.92 0 16.15-7.23 16.15-16.15 0-8.92-7.23-16.15-16.15-16.15-8.92 0-16.15 7.23-16.15 16.15 0 8.92 7.23 16.15 16.15 16.15Z\" stroke=\"#000\" stroke-width=\"1.25\" stroke-linecap=\"square\" stroke-linejoin=\"bevel\"/><path d=\"M8.36 36.2a19.686 19.686 0 0 1-4.63-12.71c0-4.84 1.83-9.51 4.87-12.98m29.78 0a19.62 19.62 0 0 1 4.87 12.98c0 4.97-1.74 9.27-4.62 12.71\" stroke=\"#000\" stroke-width=\"1.25\" stroke-linecap=\"square\" stroke-linejoin=\"bevel\"/><path d=\"M17.84 26.78v-9.65h-1.26v-1.24h2.62v10.89h-1.37.01Zm5.04-10.15c.28-.32.65-.58 1.11-.78.45-.19 1.02-.29 1.7-.29.68 0 1.28.14 1.8.42.52.28.91.69 1.19 1.22.5.98.75 2.3.75 3.96 0 2.13-.38 3.64-1.14 4.53-.62.72-1.53 1.07-2.72 1.07-2.18 0-3.43-1.27-3.76-3.82-.06-.53-.09-1.13-.09-1.79 0-.66.03-1.25.1-1.78s.19-1.04.37-1.53.41-.9.69-1.22v.01Zm4.79 1.54c-.16-.44-.41-.78-.77-1.01-.35-.23-.77-.35-1.25-.35s-.88.08-1.19.25c-.31.16-.55.37-.73.63-.17.26-.31.59-.41.99-.1.4-.17.79-.19 1.17-.03.37-.04.82-.04 1.33 0 .51.01.95.04 1.33.02.37.09.76.19 1.17.1.4.24.73.41.99.17.26.42.47.73.63.31.16.68.25 1.11.25.43 0 .8-.08 1.11-.25.31-.16.56-.37.74-.63.18-.26.31-.59.41-1 .16-.65.25-1.4.25-2.22 0-.82-.03-1.47-.08-1.92-.05-.45-.16-.9-.32-1.34l-.01-.02Z\" fill=\"#B4252B\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h46.99v46.99H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knhy0l\",\"data-framer-name\":\"Feature Widget Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"10 Years of Warranty\"})}),className:\"framer-868593\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"10-year warranty ensures long-term reliability and maximized plant uptime.\"})}),className:\"framer-fd73am\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wy41t\",\"data-framer-name\":\"Content Section Main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xv3db5\",\"data-framer-name\":\"Section Heading Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tksjhm\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[\"The \",/*#__PURE__*/_jsx(\"em\",{children:\"first-ever\"}),/*#__PURE__*/_jsx(\"br\",{}),\"modular valve system.\"]})}),className:\"framer-1avi2th\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"The MODU ONE\\xae ecosystem includes 6 valves, 2 innovations and a lot of brand new ecosystem spare parts.\"})}),className:\"framer-bttbnn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkac9o\",\"data-framer-name\":\"Content Section 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u5ihz6\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijwa4d\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1shpn32\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Ball Valve\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Ball Valve\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Ball Valve\"})}),className:\"framer-eoswl4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Ball Valve\"})}),\" features MSM for safety, extended butt weld ends for easy welding or Victaulic couplings, lever without plastic cover and spring lock, and a closed stem top for insulation. It\u2019s gauge-ready and fully traceable through a serial number.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Ball Valve\"})}),\" features MSM for safety, extended butt weld ends for easy welding or Victaulic couplings, lever without plastic cover and spring lock, and a closed stem top for insulation. It\u2019s gauge-ready and fully traceable through a serial number.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Ball Valve\"})}),\" features MSM for safety, extended butt weld ends for easy welding or Victaulic couplings, lever without plastic cover and spring lock, and a closed stem top for insulation. It\u2019s gauge-ready and fully traceable through a serial number.\"]})}),className:\"framer-zmqc9g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l96sbk\",\"data-framer-name\":\"Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,pixelHeight:2064,pixelWidth:2064,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px, 1296px) / 2.442)`,src:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=512 512w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png 2064w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3547+0+349+0+0+0+0+0+0+142.5),pixelHeight:2064,pixelWidth:2064,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 524px) - 60px, 315px) * 0.8032)`,src:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=512 512w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png 2064w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,pixelHeight:2064,pixelWidth:2064,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px, 478px) * 0.7885)`,src:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=512 512w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png 2064w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,pixelHeight:2064,pixelWidth:2064,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1296px) / 2.438)`,src:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=512 512w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4As6UFfwUg3UPapczzFkpopCX88.png 2064w\"},className:\"framer-1qo38rh\",\"data-framer-name\":\"Image\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11gh17m\",\"data-framer-name\":\"Content Section 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q245we\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c7v01j\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btczwb\",\"data-framer-name\":\"Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px, 1207px) * 0.4101)`,src:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png 1032w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3547+0+1147+0+0+0+0+0+153.2788+-97.7787),pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 524px) - 60px, 315px) * 0.8)`,src:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png 1032w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px, 480px) * 0.752)`,src:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png 1032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1207px) * 0.4101)`,src:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WhNH1KCoidZd5zLcOrYxP4izRbQ.png 1032w\"},className:\"framer-31vigh\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ao2yx\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Soft Seated Check Valve\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Soft Seated Check Valve\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Soft Seated Check Valve\"})}),className:\"framer-7lbyyq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Soft Seated Check Valve\"})}),\" features a CTFE soft seal for complete tightness (Leakage Rate A). It\u2019s ready for Victaulic couplings, orbital welding, and temperature/pressure gauges. Each valve has a serial number for full traceability of wetted parts.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Soft Seated Check Valve\"})}),\" features a CTFE soft seal for complete tightness (Leakage Rate A). It\u2019s ready for Victaulic couplings, orbital welding, and temperature/pressure gauges. Each valve has a serial number for full traceability of wetted parts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Soft Seated Check Valve\"})}),\" features a CTFE soft seal for complete tightness (Leakage Rate A). It\u2019s ready for Victaulic couplings, orbital welding, and temperature/pressure gauges. Each valve has a serial number for full traceability of wetted parts.\"]})}),className:\"framer-woqb2a\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yb33ir\",\"data-framer-name\":\"Content Section 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i6py8f\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tx3n35\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dhfuxj\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece T-Strainer\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece T-Strainer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece T-Strainer\"})}),className:\"framer-ewp6h2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece T-strainer\"})}),\" features a large filter area and is compatible with Victaulic couplings or orbital welding. It's ready for temperature/pressure gauges and offers optional drain and air vent features. Each unit has a serial number, ensuring traceability for all wetted parts.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece T-strainer\"})}),\" features a large filter area and is compatible with Victaulic couplings or orbital welding. It's ready for temperature/pressure gauges and offers optional drain and air vent features. Each unit has a serial number, ensuring traceability for all wetted parts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece T-strainer\"})}),\" features a large filter area and is compatible with Victaulic couplings or orbital welding. It's ready for temperature/pressure gauges and offers optional drain and air vent features. Each unit has a serial number, ensuring traceability for all wetted parts.\"]})}),className:\"framer-3q5dms\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12xgzg2\",\"data-framer-name\":\"Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3547+0+1772+0+0+0+0+0+0+142),pixelHeight:369,pixelWidth:482,src:\"https://framerusercontent.com/images/KLEo9YqEORHw6hEn6fwOtELc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,pixelHeight:369,pixelWidth:482,src:\"https://framerusercontent.com/images/KLEo9YqEORHw6hEn6fwOtELc.png\"},className:\"framer-2cdd1a\",\"data-framer-appear-id\":\"2cdd1a\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dnq6t0\",\"data-framer-name\":\"Content Section 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b84mm9\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sznyjn\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uuvn87\",\"data-framer-name\":\"Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1397,pixelWidth:1481,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px, 1207px) * 0.4101)`,src:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg 1481w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3547+0+2570+0+0+0+0+0+153.2788+-97.7787),pixelHeight:1397,pixelWidth:1481,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 524px) - 60px, 315px) * 0.8)`,src:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg 1481w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1397,pixelWidth:1481,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px, 480px) / 1.324)`,src:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg 1481w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1397,pixelWidth:1481,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1207px) * 0.4101)`,src:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TG6Hv41NJhN5X390KJIccmuFJg.jpg 1481w\"},className:\"framer-wh7gje\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rp7qpy\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[\"3-Piece Sector\",/*#__PURE__*/_jsx(\"br\",{}),\"Control Valve\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[\"3-Piece Sector\",/*#__PURE__*/_jsx(\"br\",{}),\"Control Valve\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[\"3-Piece Sector\",/*#__PURE__*/_jsx(\"br\",{}),\"Control Valve\"]})}),className:\"framer-mrdwy1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Sector Control Valve\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),\"serves as an excellent control valve. It features an extended bonnet and is fully drainable with no cavity. The valve is compatible with Victaulic couplings or orbital welding, and comes ready for temperature/pressure gauge installation. Each valve is assigned a unique serial number, ensuring complete traceability for all wetted parts.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Sector Control Valve\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),\"serves as an excellent control valve. It features an extended bonnet and is fully drainable with no cavity. The valve is compatible with Victaulic couplings or orbital welding, and comes ready for temperature/pressure gauge installation. Each valve is assigned a unique serial number, ensuring complete traceability for all wetted parts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Sector Control Valve\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),\"serves as an excellent control valve. It features an extended bonnet and is fully drainable with no cavity. The valve is compatible with Victaulic couplings or orbital welding, and comes ready for temperature/pressure gauge installation. Each valve is assigned a unique serial number, ensuring complete traceability for all wetted parts.\"]})}),className:\"framer-1292wgk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qn2jps\",\"data-framer-name\":\"Content Section 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-c82j48\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16om3vn\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r7j18t\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Strainer Inline\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Strainer Inline\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Strainer Inline\"})}),className:\"framer-ws03kd\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Strainer Inline\"})}),\" is designed for versatile installation, being compatible with both Victaulic couplings and orbital welding. It comes prepared for temperature and pressure gauge fitting, allowing for easy monitoring. Each strainer is assigned a unique serial number, ensuring full traceability for all wetted parts.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Strainer Inline\"})}),\" is designed for versatile installation, being compatible with both Victaulic couplings and orbital welding. It comes prepared for temperature and pressure gauge fitting, allowing for easy monitoring. Each strainer is assigned a unique serial number, ensuring full traceability for all wetted parts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Strainer Inline\"})}),\" is designed for versatile installation, being compatible with both Victaulic couplings and orbital welding. It comes prepared for temperature and pressure gauge fitting, allowing for easy monitoring. Each strainer is assigned a unique serial number, ensuring full traceability for all wetted parts.\"]})}),className:\"framer-byx32c\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6fqzm\",\"data-framer-name\":\"Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3547+0+3195+0+0+0+0+0+0+142),pixelHeight:369,pixelWidth:482,src:\"https://framerusercontent.com/images/y080hrvbDtlNvxdEEoeTebnqG8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:672,pixelHeight:369,pixelWidth:482,src:\"https://framerusercontent.com/images/y080hrvbDtlNvxdEEoeTebnqG8.png\"},className:\"framer-17bidz3\",\"data-framer-name\":\"Image\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x4p0zf\",\"data-framer-name\":\"Content Section 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7g7r6x\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vk77jw\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-amk4sq\",\"data-framer-name\":\"Image Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px, 1207px) * 0.4101)`,src:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png 1032w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3547+0+3993+0+0+0+0+0+153.2788+-97.7787),pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 524px) - 60px, 315px) * 0.8)`,src:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png 1032w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px, 480px) / 1.324)`,src:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png 1032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:666,pixelHeight:1032,pixelWidth:1032,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1207px) * 0.4101)`,src:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDDcgwzvIZkOlglYsQFR1MgC5dA.png 1032w\"},className:\"framer-tisfgr\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lr7s4k\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Sight Glass\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Sight Glass\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"3-Piece Sight Glass\"})}),className:\"framer-1w9qmad\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Sight Glass\"})}),\" offers a compact design for efficient fluid monitoring. It's compatible with Victaulic couplings or orbital welding for flexible installation. The sight glass comes ready for temperature/pressure gauge fitting. Each unit has a unique serial number, ensuring full traceability for all wetted parts.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Sight Glass\"})}),\" offers a compact design for efficient fluid monitoring. It's compatible with Victaulic couplings or orbital welding for flexible installation. The sight glass comes ready for temperature/pressure gauge fitting. Each unit has a unique serial number, ensuring full traceability for all wetted parts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae 3-Piece Sight Glass\"})}),\" offers a compact design for efficient fluid monitoring. It's compatible with Victaulic couplings or orbital welding for flexible installation. The sight glass comes ready for temperature/pressure gauge fitting. Each unit has a unique serial number, ensuring full traceability for all wetted parts.\"]})}),className:\"framer-sm6jai\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zn2qoo\",\"data-framer-name\":\"Cta Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hm7r90\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11cgvgp\",\"data-framer-name\":\"Cta Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-50tjar\",\"data-framer-name\":\"Cta Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dle57y\",\"data-styles-preset\":\"vaQO5QvoD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get our PDF Catalog\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dle57y\",\"data-styles-preset\":\"vaQO5QvoD\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get our PDF Catalog\"})}),className:\"framer-16d7edn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Read our \",/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae ecosystem product catalog\"}),\" for more information.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Read our \",/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae Ecosystem Product Catalog\"}),\" for more information.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-obc64b\",\"data-styles-preset\":\"Ki85t6lVm\",style:{\"--framer-text-color\":\"var(--token-2d927d09-2f75-45da-8e0a-93e19bcc437f, rgb(241, 242, 252))\"},children:[\"Read our \",/*#__PURE__*/_jsx(\"strong\",{children:\"MODU ONE\\xae Ecosystem product catalog\"}),\" for more information about our unique, modular valve ecosystem.\"]})}),className:\"framer-1s0b32l\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],id:\"1s0b32l\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wehc4b\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:\"147px\"},O0GdGKwgc:{y:(componentViewport?.y||0)+0+8165+0+0+0+0+25+208+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mgxxa-container\",nodeId:\"NXZONJD30\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{style:{height:\"100%\",width:\"100%\"}},O0GdGKwgc:{variant:\"VHhNWx0sW\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"NXZONJD30\",layoutId:\"NXZONJD30\",variant:\"aot9MNN_K\",wcrBP4HAB:\"Read Online\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-umnva2\",\"data-framer-name\":\"Catalogs\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5tvuga\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nx8yrg\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/18sLjTt6b1djnf4WGPbRItnI8xJ7xGfE1/view\",motionChild:true,nodeId:\"w9au9SDw0\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1920,pixelWidth:1440,sizes:\"224.3333px\",src:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png\",srcSet:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png?scale-down-to=1024 768w,https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png 1440w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8487+20+0+0+0+0+0),pixelHeight:1920,pixelWidth:1440,sizes:`max(min(${componentViewport?.width||\"100vw\"} * 0.8053 - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png\",srcSet:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png?scale-down-to=1024 768w,https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png 1440w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1920,pixelWidth:1440,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png\",srcSet:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png?scale-down-to=1024 768w,https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1920,pixelWidth:1440,sizes:\"293.3333px\",src:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png\",srcSet:\"https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png?scale-down-to=1024 768w,https://framerusercontent.com/images/fNd2EQgbGcyxGYwM3eKVIdlMw.png 1440w\"},className:\"framer-1hjmxni framer-kofb4m\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ndsrgu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"MODU ONE\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"\\xae\"}),\" Ecosystem\"]})}),className:\"framer-1ng51wc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Read our MODU ONE\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"\\xae\"}),\" Ecosystem Product Catalog about the whole ecosystem.\"]})}),className:\"framer-12c0k5f\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-da9jra\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1_soEnW8mpyrnkDdRrEiXRKfd8FQX-Cjd/view?usp=sharing\",motionChild:true,nodeId:\"dkAGBh7V5\",openInNewTab:true,scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1440,pixelWidth:1920,sizes:\"224.3333px\",src:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png\",srcSet:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png 1920w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8487+20+0+0+414+0+0),pixelHeight:1440,pixelWidth:1920,sizes:`max(min(${componentViewport?.width||\"100vw\"} * 0.8053 - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png\",srcSet:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png 1920w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1440,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png\",srcSet:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1440,pixelWidth:1920,sizes:\"293.3333px\",src:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png\",srcSet:\"https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YkIcsZbP71IOuOpjijHoEjoQsa0.png 1920w\"},className:\"framer-1rsi2mw framer-kofb4m\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11c8g74\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"MODU ONE\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"\\xae\"}),\" A10 Datasheet\"]})}),className:\"framer-1iflet9\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Read our MODU ONE\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"\\xae\"}),\" A10 3-Piece Ball Valve Product Catalog.\"]})}),className:\"framer-12vswex\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7drgs2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1hVbkrwFHuQJDZvt3OBcidisKU5LdYUSH/view?usp=sharing\",motionChild:true,nodeId:\"XludLV9qB\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1440,pixelWidth:1920,sizes:\"224.3333px\",src:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png\",srcSet:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png 1920w\"}},O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8487+20+0+0+828+0+0),pixelHeight:1440,pixelWidth:1920,sizes:`max(min(${componentViewport?.width||\"100vw\"} * 0.8053 - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png\",srcSet:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png 1920w\"}},ZW4uEutDH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1440,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png\",srcSet:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1440,pixelWidth:1920,sizes:\"293.3333px\",src:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png\",srcSet:\"https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M8brgBDGASs3PKjd1zYpwS7vWs.png 1920w\"},className:\"framer-195wrt0 framer-kofb4m\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dqlwon\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MODU ONE\"}),\"\\xae B10 Datasheet\"]})}),className:\"framer-7leqzj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Read our MODU ONE\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"\\xae\"}),\" B10 3-Piece Soft Seated Check Valve Catalog.\"]})}),className:\"framer-rb9nia\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-chgy4y\",\"data-framer-name\":\"Content Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1sss7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167eaos\",\"data-framer-name\":\"Content Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1208,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9709+60+0+0+0+0),pixelHeight:1196,pixelWidth:1499,src:\"https://framerusercontent.com/images/uQdXcXOyyFpXD4dmCDUSsQDQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1208,pixelHeight:1196,pixelWidth:1499,src:\"https://framerusercontent.com/images/uQdXcXOyyFpXD4dmCDUSsQDQ.png\"},className:\"framer-183u4mi\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wewsz3\",\"data-framer-name\":\"Content Text Block Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3iuu6y\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"MODU Safe Mounting\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"MODU Safe Mounting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-color\":\"var(--token-4919edcf-befb-435b-853c-d76e838f5dc7, rgb(27, 33, 37))\"},children:\"MODU Safe Mounting\"})}),className:\"framer-wl9myg\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"We have developed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4195bfc3-a298-4dd8-ac09-1666af5f46e0, rgb(239, 30, 35))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU Safe Mounting\"})}),\" - \",/*#__PURE__*/_jsx(\"br\",{}),\"a significant step in Process Safety Management. \",/*#__PURE__*/_jsx(\"br\",{}),\"A system ensuring error-free valve and actuator assembly, enhancing safety and efficiency while eliminating installation mistakes. The advantage of the MSM system is that it ensures the ball's position always matches the actuator's display. There will always be an interlock between the ball and the actuator, making incorrect installation impossible.\"]})})},O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"We have developed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU Safe Mounting\u2122\"})}),\" - a significant step in Process Safety Management. A system ensuring error-free valve and actuator assembly, enhancing safety and efficiency while eliminating installation mistakes. The advantage of the MSM system is that it ensures the ball's position always matches the actuator's display. There will always be an interlock between the ball and the actuator, making incorrect installation impossible.\"]})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"We have developed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU Safe Mounting\u2122\"})}),\" - a significant step in Process Safety Management. A system ensuring error-free valve and actuator assembly, enhancing safety and efficiency while eliminating installation mistakes. The advantage of the MSM system is that it ensures the ball's position always matches the actuator's display. There will always be an interlock between the ball and the actuator, making incorrect installation impossible.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:[\"We have developed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, rgb(180, 37, 43))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"MODU Safe Mounting\u2122\"})}),\" - a significant step in Process Safety Management. A system ensuring error-free valve and actuator assembly, enhancing safety and efficiency while eliminating installation mistakes. The advantage of the MSM system is that it ensures the ball's position always matches the actuator's display. There will always be an interlock between the ball and the actuator, making incorrect installation impossible.\"]})}),className:\"framer-1gp0lmd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k21rl1\",\"data-framer-name\":\"Content Widget Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`min(min(max(min(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px, 1px), 1218px) * 0.4996 - 50px, 1px), 505px), 342px)`},O0GdGKwgc:{width:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1px), 315px), 505px), 342px)`,y:(componentViewport?.y||0)+0+9709+60+0+0+0+640+0+239+0+0},ZW4uEutDH:{width:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px, 1px), 478px), 421px), 342px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:`min(min(max(min(max(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1px), 1218px) * 0.4996 - 109px, 1px), 505px), 342px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nx6lca-container\",nodeId:\"CEowWMtRy\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(ContentWidget,{height:\"100%\",id:\"CEowWMtRy\",layoutId:\"CEowWMtRy\",P6Kw70kpt:\"Enhances workplace safety\",style:{width:\"100%\"},szCUZYlSJ:\"01\",variant:\"kqsZaGCOd\",width:\"100%\",zq2JFPgUR:\"Prevents accidents from incorrect assembly.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`min(min(max(min(max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px, 1px), 1218px) * 0.4996 - 50px, 1px), 505px), 342px)`},O0GdGKwgc:{width:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1px), 315px), 505px), 342px)`,y:(componentViewport?.y||0)+0+9709+60+0+0+0+640+0+239+0+170},ZW4uEutDH:{width:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px, 1px), 478px), 421px), 342px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:`min(min(max(min(max(min(${componentViewport?.width||\"100vw\"}, 1320px) - 60px, 1px), 1218px) * 0.4996 - 109px, 1px), 505px), 342px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ddsfyv-container\",nodeId:\"BvYcMOPsi\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(ContentWidget,{height:\"100%\",id:\"BvYcMOPsi\",layoutId:\"BvYcMOPsi\",P6Kw70kpt:\"Eliminates costly installation mistakes\",style:{width:\"100%\"},szCUZYlSJ:\"02\",variant:\"kqsZaGCOd\",width:\"100%\",zq2JFPgUR:\"Ensures faster, error-free commissioning.\"})})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y8z2ay\",\"data-framer-name\":\"Features Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-als6ym\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kt3pup\",\"data-framer-name\":\"Section Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cv25zm\",\"data-framer-name\":\"Title Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{y:(componentViewport?.y||0)+0+11018+60+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-74o9ex-container\",nodeId:\"DQ7gQfpMz\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"DQ7gQfpMz\",layoutId:\"DQ7gQfpMz\",ovxBITwSh:\"MODU Cloud\",variant:\"fMGX_Mh55\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`calc((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1000px) - 60px) * 0.4045)`},O0GdGKwgc:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 524px) - 60px)`,y:(componentViewport?.y||0)+0+11018+60+0+0+0+0+0+0+56},ZW4uEutDH:{width:`calc((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 720px) - 60px) * 0.9909)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:`calc((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1320px) - 60px) * 0.3437)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o4bfc4-container\",nodeId:\"sw80PKVCC\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{variant:\"loW9WQW_F\"},ZW4uEutDH:{variant:\"loW9WQW_F\"}},children:/*#__PURE__*/_jsx(GradientHeading,{height:\"100%\",id:\"sw80PKVCC\",layoutId:\"sw80PKVCC\",qDp8NP6ix:\"We've redefined valve traceability.\",style:{width:\"100%\"},variant:\"wAKnsLtAb\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"We've upgraded material certificates to include critical data like torque values. Our digital tools ensure precise control, eliminating errors and providing 100% traceability. Our cloud-based system with 15-year backup benefits stakeholders from suppliers to regulators.\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"We've upgraded material certificates to include critical data like torque values. Our digital tools ensure precise control, eliminating errors and providing 100% traceability. Our cloud-based system with 15-year backup benefits stakeholders from suppliers to regulators.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-color\":\"var(--token-d5dd8c45-21b1-4128-8c83-fef994e98549, rgb(59, 74, 70))\"},children:\"We've upgraded material certificates to include critical data like torque values. Our digital tools ensure precise control, eliminating errors and providing 100% traceability. Our cloud-based system with 15-year backup benefits stakeholders from suppliers to regulators.\"})}),className:\"framer-sdefv6\",\"data-framer-name\":\"We have considered our solutions to support every stage of your personal growth. We are the fastest and easiest way to launch an attractive and for feature-complete SaaS showcase.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sbd5h\",\"data-framer-name\":\"Card Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kyywuh\",\"data-framer-name\":\"Card Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1000px) - 84px) / 2, 200px)`},O0GdGKwgc:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 524px) - 60px)`,y:(componentViewport?.y||0)+0+11018+60+0+0+319+0+0+0+0},ZW4uEutDH:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 720px) - 84px) / 2, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1320px) - 132px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1biq4qf-container\",nodeId:\"AOw8EUqAr\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(FeatureCard,{B1AkW50uk:\"Instant Access\",height:\"100%\",id:\"AOw8EUqAr\",JmDkQaSVU:\"Instant access to all certificates conformities, approvals, data sheet and spare parts. Access everything you need in MODU Cloud.\",layoutId:\"AOw8EUqAr\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yadc0z\",\"data-framer-name\":\"Card Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1000px) - 84px) / 2, 200px)`},O0GdGKwgc:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 524px) - 60px)`,y:(componentViewport?.y||0)+0+11018+60+0+0+319+0+314+0+0},ZW4uEutDH:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 720px) - 84px) / 2, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1320px) - 132px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yfcdto-container\",nodeId:\"tUFWzAYRr\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(FeatureCard,{B1AkW50uk:\"No Entry Control\",height:\"100%\",id:\"tUFWzAYRr\",JmDkQaSVU:\"Removes the need for entry control on the wetted parts. Contains more information than just the 3.1 data. We take the headache out of certificates.\",layoutId:\"tUFWzAYRr\",lHQ4Hpmri:addImageAlt({pixelHeight:52,pixelWidth:52,src:\"https://framerusercontent.com/images/vOotDJ1sivVU3FGdaU05cgv7Kg8.svg\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7nxsfo\",\"data-framer-name\":\"Card Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1000px) - 84px) / 2, 200px)`},O0GdGKwgc:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 524px) - 60px)`,y:(componentViewport?.y||0)+0+11018+60+0+0+319+0+628+0+0},ZW4uEutDH:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 720px) - 84px) / 2, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1320px) - 132px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eo13g0-container\",nodeId:\"gui58nv5T\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(FeatureCard,{B1AkW50uk:\"7 Certificates per Valve\",height:\"100%\",id:\"gui58nv5T\",JmDkQaSVU:\"100% traceability for all wetted parts, including unique serial number on all components - and everything in the cloud.\",layoutId:\"gui58nv5T\",lHQ4Hpmri:addImageAlt({pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/bDhfxkkuMRebj7qegs414D0DCtc.svg\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rj9tqu\",\"data-framer-name\":\"Card Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1000px) - 84px) / 2, 200px)`},O0GdGKwgc:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px), 524px) - 60px)`,y:(componentViewport?.y||0)+0+11018+60+0+0+319+0+942+0+0},ZW4uEutDH:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 720px) - 84px) / 2, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1440px), 1320px) - 132px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pdy04n-container\",nodeId:\"o9MP4Uw3G\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(FeatureCard,{B1AkW50uk:\"Torque-Certified Valves\",height:\"100%\",id:\"o9MP4Uw3G\",JmDkQaSVU:\"Each ball valve is certified with precise torque measurements for its body bolts, stem nut, and overall operation.\",layoutId:\"o9MP4Uw3G\",lHQ4Hpmri:addImageAlt({pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/9VKbj3Avqi9v0uRe25QHStOzc.svg\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14el8oj\",\"data-framer-name\":\"FAQ\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"FAQ\"})}),className:\"framer-qnnkbx\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qa86ex\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iI1YNxhh9:{width:\"992px\"},O0GdGKwgc:{width:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 1px)`,y:(componentViewport?.y||0)+0+12689+60+120+0},ZW4uEutDH:{width:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ogaby-container\",nodeId:\"ycHV0s8Vg\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"ycHV0s8Vg\",layoutId:\"ycHV0s8Vg\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hbk16u\",\"data-framer-name\":\"Cta Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1i9wk\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v7eirm\",\"data-framer-name\":\"Cta Text Block Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10d04by\",\"data-framer-name\":\"Cta Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-37e51053-33a9-4f16-9281-c630075ba280, rgb(255, 255, 255))\"},children:\"Request a discovery call.\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-37e51053-33a9-4f16-9281-c630075ba280, rgb(255, 255, 255))\"},children:\"Request a discovery call.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-bu3mom\",\"data-styles-preset\":\"Ztr45SMzq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-37e51053-33a9-4f16-9281-c630075ba280, rgb(255, 255, 255))\"},children:\"Request a discovery call.\"})}),className:\"framer-1sw0gdo\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2d927d09-2f75-45da-8e0a-93e19bcc437f, rgb(241, 242, 252))\"},children:\"Book a meeting by contacting one of our team members.\"})})},ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2d927d09-2f75-45da-8e0a-93e19bcc437f, rgb(241, 242, 252))\"},children:\"Book a meeting by contacting one of our team members.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pgc12h\",\"data-styles-preset\":\"xLhAJlZeL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2d927d09-2f75-45da-8e0a-93e19bcc437f, rgb(241, 242, 252))\"},children:\"Book a meeting by contacting one of our team members.\"})}),className:\"framer-1ezjx3x\",\"data-framer-name\":\"Let us manage for you so that you can get back to doing what you do best and we look in the future.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bq6vq9\",\"data-framer-name\":\"Blog\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5367x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s99by4\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13525+60+0+0+0+20+-200),pixelHeight:287,pixelWidth:287,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tQW1vVt4nk3dw1saX2bl5XAP2s.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:287,pixelWidth:287,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tQW1vVt4nk3dw1saX2bl5XAP2s.png\"},className:\"framer-1oec4xc\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s5in3e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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:\"Hans Meijer, EU\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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:\"Hans Meijer, Ambassador\"})}),className:\"framer-1npoxe2\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in The Netherlands.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in The Netherlands, ready to visit you in-person.\"})}),className:\"framer-1sgxf18\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:jam@modu-one.com\",motionChild:true,nodeId:\"Vl0LtKDFg\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"jam@modu-one.com\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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(Link,{href:\"mailto:jam@modu-one.com\",motionChild:true,nodeId:\"Vl0LtKDFg\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"jam@modu-one.com\"})})})}),className:\"framer-13f3ud2\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+31627459903\",motionChild:true,nodeId:\"wdOHcrIbl\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"+31 6 27 45 99 03\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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(Link,{href:\"tel:+31627459903\",motionChild:true,nodeId:\"wdOHcrIbl\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"+31 6 27 45 99 03\"})})})}),className:\"framer-1d5msc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in The Netherlands.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Time Zone: CET (UTC+1)\"})}),className:\"framer-2hjwt6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o05dvn\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13525+60+0+0+540+45+-225),pixelHeight:501,pixelWidth:501,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LHTkoc5G2hazhoXbuKhbLa3bg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:501,pixelWidth:501,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LHTkoc5G2hazhoXbuKhbLa3bg.png\"},className:\"framer-1gpa2g0\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17bja9k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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:\"Robert M. Donnelly, US\"})}),className:\"framer-1ux78jf\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in the US, New Jersey.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in the US, ready to visit you in-person.\"})}),className:\"framer-mn9rg1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:rmdonnelly@aol.com\",motionChild:true,nodeId:\"NAmGtJF82\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"rmdonnelly@aol.com\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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(Link,{href:\"mailto:rmdonnelly@aol.com\",motionChild:true,nodeId:\"NAmGtJF82\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"rmdonnelly@aol.com\"})})})}),className:\"framer-bekfka\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+12013490018\",motionChild:true,nodeId:\"yZtXm8Aex\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"+1 (201)-349-0018\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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(Link,{href:\"tel:+12013490018\",motionChild:true,nodeId:\"yZtXm8Aex\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"+1 (201)-349-0018\"})})})}),className:\"framer-v0ft31\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in The Netherlands.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Time Zone: EST (UTC-5)\"})}),className:\"framer-md97uh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7e3mw\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13525+60+0+0+1080+0+-180),pixelHeight:287,pixelWidth:287,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tGFh4MYELn4ns35YkcMoO0CU0DI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:287,pixelWidth:287,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tGFh4MYELn4ns35YkcMoO0CU0DI.png\"},className:\"framer-1td2sn0\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nsblsc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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:\"Henrik Svendsen, CEO\"})}),className:\"framer-17ftu7p\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in Vejle, Denmark.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in Denmark, ready to visit you in-person.\"})}),className:\"framer-fq0ld\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hs@modu-one.com\",motionChild:true,nodeId:\"bGL0JYVOl\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"hs@modu-one.com\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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(Link,{href:\"mailto:hs@modu-one.com\",motionChild:true,nodeId:\"bGL0JYVOl\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"hs@modu-one.com\"})})})}),className:\"framer-12vsguu\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+4522229393\",motionChild:true,nodeId:\"EMyNgWYaH\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"+45 22 22 93 93\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter 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(Link,{href:\"tel:+4522229393\",motionChild:true,nodeId:\"EMyNgWYaH\",openInNewTab:true,preserveParams:false,relValues:[],scopeId:\"ets6ME8ND\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14ztpfe\",\"data-styles-preset\":\"Cs2MnOMxL\",children:\"+45 22 22 93 93\"})})})}),className:\"framer-1d3ryhf\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW4uEutDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Located in The Netherlands.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Time Zone: CET (UTC+1)\"})}),className:\"framer-eg7c6w\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{y:(componentViewport?.y||0)+0+15245}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:566,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xq66vo-container\",nodeId:\"ebWnTsrNZ\",scopeId:\"ets6ME8ND\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O0GdGKwgc:{variant:\"NzQ1OmYFB\"},ZW4uEutDH:{variant:\"lpcp2ufAt\"}},children:/*#__PURE__*/_jsx(FooterSectionTwo,{height:\"100%\",id:\"ebWnTsrNZ\",layoutId:\"ebWnTsrNZ\",style:{width:\"100%\"},variant:\"IckadNUFq\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QSufq.framer-kofb4m, .framer-QSufq .framer-kofb4m { display: block; }\",\".framer-QSufq.framer-18vu9mv { align-content: center; align-items: center; background-color: var(--token-1bf1173e-bf90-4626-8851-283848c3b0fd, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-QSufq .framer-1lkvmt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 655px; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-amaezt-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 9; }\",\".framer-QSufq .framer-n36yqk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: 100%; z-index: 2; }\",\".framer-QSufq .framer-lhydr8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-1o4mavr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-1aeeofj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 675px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1urcwsd-container, .framer-QSufq .framer-nx6lca-container, .framer-QSufq .framer-1ddsfyv-container, .framer-QSufq .framer-1o4bfc4-container, .framer-QSufq .framer-1biq4qf-container, .framer-QSufq .framer-yfcdto-container, .framer-QSufq .framer-eo13g0-container, .framer-QSufq .framer-1pdy04n-container, .framer-QSufq .framer-1xq66vo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QSufq .framer-1cm1l9e, .framer-QSufq .framer-1tg0627, .framer-QSufq .framer-1zmsas, .framer-QSufq .framer-17mgae, .framer-QSufq .framer-1cymrt6, .framer-QSufq .framer-lg410v, .framer-QSufq .framer-1k50vbg, .framer-QSufq .framer-1vaqlfl, .framer-QSufq .framer-gg2h2s, .framer-QSufq .framer-2pn8hg, .framer-QSufq .framer-wu2wzk, .framer-QSufq .framer-1800x96, .framer-QSufq .framer-1ic6d2s, .framer-QSufq .framer-w0ksow, .framer-QSufq .framer-868593, .framer-QSufq .framer-fd73am, .framer-QSufq .framer-1avi2th, .framer-QSufq .framer-bttbnn, .framer-QSufq .framer-eoswl4, .framer-QSufq .framer-7lbyyq, .framer-QSufq .framer-ewp6h2, .framer-QSufq .framer-mrdwy1, .framer-QSufq .framer-ws03kd, .framer-QSufq .framer-1w9qmad, .framer-QSufq .framer-16d7edn, .framer-QSufq .framer-1s0b32l, .framer-QSufq .framer-wl9myg, .framer-QSufq .framer-1sw0gdo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-1034qzx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-xyixtn, .framer-QSufq .framer-1ne0g3 { 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; text-decoration: none; width: min-content; }\",\".framer-QSufq .framer-x4nr4q-container { flex: none; height: auto; position: relative; width: 212px; }\",\".framer-QSufq .framer-1bjxe09-container { flex: none; height: 64px; position: relative; width: 223px; }\",\".framer-QSufq .framer-1sxdi32 { bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-QSufq .framer-uhjill { flex: none; height: 655px; left: calc(50.00000000000002% - 1440px / 2); overflow: hidden; position: absolute; top: 0px; width: 1440px; }\",\".framer-QSufq .framer-kl26im, .framer-QSufq .framer-1xd7hr7, .framer-QSufq .framer-xqzimn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 98px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1fhqhmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 92px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-QSufq .framer-1hpw8l6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 221px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1161px; }\",\".framer-QSufq .framer-5qlyve, .framer-QSufq .framer-6hphpc { background-color: #f1f5f4; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QSufq .framer-17oqbt1 { bottom: 32px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 444px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-phdzvy { bottom: 56px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 282px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-1rwm5vn { flex: none; height: auto; left: 50%; position: absolute; top: 25px; transform: translateX(-50%); white-space: pre-wrap; width: 330px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-15pndsf { flex: none; height: auto; left: 52%; position: absolute; top: 25px; transform: translateX(-50%); white-space: pre-wrap; width: 330px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-f7x0oc { flex: none; height: auto; left: 50%; position: absolute; top: 146%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 289px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-xmysee { bottom: 32px; flex: none; height: auto; left: 52%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 446px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-1gx9d5p { bottom: 56px; flex: none; height: auto; left: 53%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 311px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-1i47b9l, .framer-QSufq .framer-1ods985 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-QSufq .framer-1pq1viy, .framer-QSufq .framer-16z88ga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-llumxz-container { flex: none; height: 406px; position: relative; width: 716px; }\",\".framer-QSufq .framer-ba2692 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 118px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1h3exi7, .framer-QSufq .framer-r1ubvi, .framer-QSufq .framer-1kw2avm { 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: center; max-width: 322px; overflow: visible; padding: 0px; position: relative; width: 26%; }\",\".framer-QSufq .framer-1fg8i57 { flex: none; height: 91px; overflow: visible; position: relative; width: 322px; }\",\".framer-QSufq .framer-1f8a2nh { aspect-ratio: 1.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 50%; position: absolute; top: 46%; transform: translate(-50%, -50%); width: 91px; }\",\".framer-QSufq .framer-jptfxy, .framer-QSufq .framer-1b2spm5, .framer-QSufq .framer-7cebzm, .framer-QSufq .framer-1qatd4m, .framer-QSufq .framer-1knhy0l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1jhq50z, .framer-QSufq .framer-1hfncdx, .framer-QSufq .framer-wboxgl, .framer-QSufq .framer-8dzytz { flex: none; height: 91px; overflow: visible; position: relative; width: 321px; }\",\".framer-QSufq .framer-1uskf2n { flex: none; height: 65px; left: calc(50.155763239875405% - 74px / 2); position: absolute; top: calc(49.450549450549474% - 65px / 2); width: 74px; }\",\".framer-QSufq .framer-2s8zhw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 64px; }\",\".framer-QSufq .framer-mnafde { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-1a2v4eu, .framer-QSufq .framer-y34t7l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 49%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 64px; }\",\".framer-QSufq .framer-1mn4pdq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 322px; overflow: visible; padding: 0px; position: relative; width: 26%; }\",\".framer-QSufq .framer-6wy41t { align-content: center; align-items: center; background-color: var(--token-37e51053-33a9-4f16-9281-c630075ba280, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 98px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-xv3db5, .framer-QSufq .framer-u5ihz6, .framer-QSufq .framer-1q245we, .framer-QSufq .framer-i6py8f, .framer-QSufq .framer-1b84mm9, .framer-QSufq .framer-c82j48, .framer-QSufq .framer-7g7r6x, .framer-QSufq .framer-hm7r90, .framer-QSufq .framer-als6ym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-QSufq .framer-tksjhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1dkac9o, .framer-QSufq .framer-11gh17m, .framer-QSufq .framer-yb33ir, .framer-QSufq .framer-dnq6t0, .framer-QSufq .framer-1qn2jps { align-content: center; align-items: center; background-color: var(--token-37e51053-33a9-4f16-9281-c630075ba280, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 124px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-ijwa4d, .framer-QSufq .framer-tx3n35, .framer-QSufq .framer-16om3vn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1296px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1shpn32, .framer-QSufq .framer-dhfuxj, .framer-QSufq .framer-r7j18t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 695px; overflow: visible; padding: 0px; position: relative; width: 55%; }\",\".framer-QSufq .framer-zmqc9g, .framer-QSufq .framer-3q5dms, .framer-QSufq .framer-byx32c { flex: none; height: auto; max-width: 483px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-l96sbk, .framer-QSufq .framer-12xgzg2, .framer-QSufq .framer-r6fqzm { align-content: center; align-items: center; aspect-ratio: 1.1833333333333333 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 480px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-QSufq .framer-1qo38rh { aspect-ratio: 1.2923076923076924 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 57px 4px rgba(0, 0, 0, 0.15); flex: none; gap: 10.7279691696167px; height: var(--framer-aspect-ratio-supported, 400px); overflow: hidden; position: relative; width: 91%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-c7v01j, .framer-QSufq .framer-1sznyjn, .framer-QSufq .framer-vk77jw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1207px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1btczwb, .framer-QSufq .framer-1uuvn87, .framer-QSufq .framer-amk4sq { align-content: center; align-items: center; aspect-ratio: 1.1333333333333333 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 480px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-QSufq .framer-31vigh, .framer-QSufq .framer-wh7gje, .framer-QSufq .framer-tisfgr { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); flex: none; gap: 10.7279691696167px; height: 400px; overflow: hidden; position: relative; width: 91%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-12ao2yx, .framer-QSufq .framer-1rp7qpy, .framer-QSufq .framer-lr7s4k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 511px; overflow: visible; padding: 0px; position: relative; width: 42%; }\",\".framer-QSufq .framer-woqb2a, .framer-QSufq .framer-1292wgk, .framer-QSufq .framer-sm6jai { flex: none; height: auto; max-width: 484px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-2cdd1a { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 57px 4px rgba(0, 0, 0, 0.15); flex: none; gap: 10.7279691696167px; height: 400px; overflow: hidden; position: relative; width: 91%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QSufq .framer-17bidz3 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 57px 4px rgba(0, 0, 0, 0.15); flex: none; gap: 10.7279691696167px; height: 400px; overflow: hidden; position: relative; width: 91%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-x4p0zf { align-content: center; align-items: center; background-color: var(--token-37e51053-33a9-4f16-9281-c630075ba280, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 98px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-zn2qoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-11cgvgp { align-content: center; align-items: center; background-color: var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, #b4252b); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 32px 40px 32px 40px; position: relative; width: 100%; }\",\".framer-QSufq .framer-50tjar { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 477px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-1wehc4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QSufq .framer-10mgxxa-container, .framer-QSufq .framer-74o9ex-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QSufq .framer-umnva2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 1438px; }\",\".framer-QSufq .framer-5tvuga { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1nx8yrg, .framer-QSufq .framer-da9jra, .framer-QSufq .framer-7drgs2 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1hjmxni, .framer-QSufq .framer-1rsi2mw, .framer-QSufq .framer-195wrt0 { 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, 293px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-ndsrgu, .framer-QSufq .framer-11c8g74, .framer-QSufq .framer-dqlwon { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1ng51wc, .framer-QSufq .framer-1iflet9, .framer-QSufq .framer-7leqzj, .framer-QSufq .framer-1npoxe2, .framer-QSufq .framer-1ux78jf, .framer-QSufq .framer-17ftu7p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-12c0k5f, .framer-QSufq .framer-12vswex, .framer-QSufq .framer-rb9nia, .framer-QSufq .framer-1sgxf18, .framer-QSufq .framer-13f3ud2, .framer-QSufq .framer-1d5msc, .framer-QSufq .framer-2hjwt6, .framer-QSufq .framer-mn9rg1, .framer-QSufq .framer-bekfka, .framer-QSufq .framer-v0ft31, .framer-QSufq .framer-md97uh, .framer-QSufq .framer-fq0ld, .framer-QSufq .framer-12vsguu, .framer-QSufq .framer-1d3ryhf, .framer-QSufq .framer-eg7c6w { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-chgy4y { align-content: center; align-items: center; background-color: var(--token-37e51053-33a9-4f16-9281-c630075ba280, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 98px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-r1sss7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-QSufq .framer-167eaos { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1218px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-183u4mi { aspect-ratio: 0.945 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 10.7279691696167px; height: var(--framer-aspect-ratio-supported, 645px); overflow: hidden; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-wewsz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 505px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-3iuu6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1gp0lmd { flex: none; height: auto; max-width: 479px; position: relative; white-space: pre-wrap; width: 479px; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-1k21rl1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 342px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-y8z2ay { align-content: center; align-items: center; background-color: #ededed; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 98px 0px 98px 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1kt3pup { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1cv25zm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 34%; }\",\".framer-QSufq .framer-sdefv6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 37%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-5sbd5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-1kyywuh, .framer-QSufq .framer-yadc0z, .framer-QSufq .framer-7nxsfo, .framer-QSufq .framer-rj9tqu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-14el8oj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1200px; }\",\".framer-QSufq .framer-qnnkbx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-QSufq .framer-qa86ex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-QSufq .framer-16ogaby-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-QSufq .framer-1hbk16u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QSufq .framer-i1i9wk { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-QSufq .framer-1v7eirm { align-content: center; align-items: center; background-color: var(--token-e4747711-a760-4e72-bd8d-ee8abb049346, #b4252b); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 68px 75px 68px 75px; position: relative; width: 100%; }\",\".framer-QSufq .framer-10d04by { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QSufq .framer-1ezjx3x { flex: none; height: auto; max-width: 482px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QSufq .framer-1bq6vq9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1258px; }\",\".framer-QSufq .framer-1f5367x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-QSufq .framer-s99by4 { 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: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 520px; justify-content: center; min-width: 100px; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-1oec4xc, .framer-QSufq .framer-1gpa2g0, .framer-QSufq .framer-1td2sn0 { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 267px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-s5in3e, .framer-QSufq .framer-17bja9k, .framer-QSufq .framer-1nsblsc { 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-QSufq .framer-1o05dvn { 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: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 520px; justify-content: center; min-width: 100px; overflow: hidden; padding: 45px 0px 45px 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QSufq .framer-d7e3mw { 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: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 520px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 992px) and (max-width: 1439px) { .framer-QSufq.framer-18vu9mv { width: 992px; } .framer-QSufq .framer-1lkvmt { order: 0; padding: 100px 0px 100px 0px; } .framer-QSufq .framer-amaezt-container, .framer-QSufq .framer-x4nr4q-container, .framer-QSufq .framer-vk77jw { order: 0; } .framer-QSufq .framer-n36yqk { order: 1; } .framer-QSufq .framer-lhydr8 { flex-direction: column; gap: 40px; } .framer-QSufq .framer-1o4mavr { flex: none; order: 0; width: 100%; } .framer-QSufq .framer-1aeeofj { justify-content: center; width: 75%; } .framer-QSufq .framer-1034qzx { align-content: center; align-items: center; } .framer-QSufq .framer-1sxdi32 { order: 2; } .framer-QSufq .framer-uhjill { left: calc(50.00000000000002% - 992px / 2); width: 992px; } .framer-QSufq .framer-kl26im { order: 1; padding: 0px; } .framer-QSufq .framer-1fhqhmm { gap: 60px; max-width: 1000px; order: 0; padding: 100px 30px 0px 30px; } .framer-QSufq .framer-1hpw8l6 { order: 0; width: 909px; } .framer-QSufq .framer-17oqbt1 { width: 394px; } .framer-QSufq .framer-15pndsf { left: 50%; } .framer-QSufq .framer-xmysee { left: 50%; width: 415px; } .framer-QSufq .framer-1xd7hr7 { order: 3; padding: 100px 0px 0px 0px; } .framer-QSufq .framer-1i47b9l, .framer-QSufq .framer-1ods985 { gap: 60px; max-width: 1000px; } .framer-QSufq .framer-xqzimn { order: 4; padding: 100px 0px 0px 0px; } .framer-QSufq .framer-ba2692 { gap: 30px; justify-content: center; } .framer-QSufq .framer-1h3exi7, .framer-QSufq .framer-r1ubvi, .framer-QSufq .framer-1kw2avm { gap: 24px; } .framer-QSufq .framer-6wy41t { order: 5; padding: 0px; } .framer-QSufq .framer-xv3db5 { max-width: 1000px; padding: 100px 30px 0px 30px; } .framer-QSufq .framer-tksjhm { padding: 0px 0px 60px 0px; } .framer-QSufq .framer-1dkac9o, .framer-QSufq .framer-11gh17m, .framer-QSufq .framer-yb33ir, .framer-QSufq .framer-dnq6t0, .framer-QSufq .framer-1qn2jps, .framer-QSufq .framer-x4p0zf { padding: 0px 0px 100px 0px; } .framer-QSufq .framer-u5ihz6, .framer-QSufq .framer-i6py8f, .framer-QSufq .framer-c82j48, .framer-QSufq .framer-als6ym { max-width: 1000px; } .framer-QSufq .framer-ijwa4d, .framer-QSufq .framer-tx3n35, .framer-QSufq .framer-167eaos { gap: 50px; justify-content: flex-start; } .framer-QSufq .framer-1shpn32, .framer-QSufq .framer-dhfuxj, .framer-QSufq .framer-r7j18t { order: 0; width: 50%; } .framer-QSufq .framer-l96sbk, .framer-QSufq .framer-12xgzg2, .framer-QSufq .framer-r6fqzm { height: var(--framer-aspect-ratio-supported, 400px); order: 1; width: 45%; } .framer-QSufq .framer-1qo38rh { aspect-ratio: unset; height: 400px; width: 91%; } .framer-QSufq .framer-1q245we, .framer-QSufq .framer-1b84mm9, .framer-QSufq .framer-7g7r6x, .framer-QSufq .framer-hm7r90, .framer-QSufq .framer-r1sss7, .framer-QSufq .framer-i1i9wk { gap: 65px; max-width: 1000px; } .framer-QSufq .framer-1btczwb, .framer-QSufq .framer-1uuvn87, .framer-QSufq .framer-amk4sq { height: var(--framer-aspect-ratio-supported, 400px); } .framer-QSufq .framer-12ao2yx, .framer-QSufq .framer-1rp7qpy, .framer-QSufq .framer-lr7s4k { flex: 1 0 0px; max-width: 475.32px; width: 1px; } .framer-QSufq .framer-16om3vn { gap: 39px; justify-content: flex-start; } .framer-QSufq .framer-zn2qoo { order: 6; } .framer-QSufq .framer-10mgxxa-container { height: 64px; order: 0; width: 147px; } .framer-QSufq .framer-umnva2 { order: 7; width: 993px; } .framer-QSufq .framer-1hjmxni, .framer-QSufq .framer-1rsi2mw, .framer-QSufq .framer-195wrt0 { height: var(--framer-aspect-ratio-supported, 224px); } .framer-QSufq .framer-chgy4y { order: 8; padding: 110px 0px 100px 0px; } .framer-QSufq .framer-183u4mi { height: var(--framer-aspect-ratio-supported, 494px); } .framer-QSufq .framer-1gp0lmd { max-width: unset; width: 100%; } .framer-QSufq .framer-y8z2ay { order: 9; padding: 100px 0px 100px 0px; } .framer-QSufq .framer-1cv25zm { width: 40%; } .framer-QSufq .framer-sdefv6 { width: 47%; } .framer-QSufq .framer-5sbd5h { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-QSufq .framer-1kyywuh, .framer-QSufq .framer-yadc0z, .framer-QSufq .framer-7nxsfo, .framer-QSufq .framer-rj9tqu { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-QSufq .framer-14el8oj { order: 13; width: 992px; } .framer-QSufq .framer-1hbk16u { order: 14; } .framer-QSufq .framer-1v7eirm { padding: 53px 60px 53px 60px; } .framer-QSufq .framer-10d04by { max-width: 650px; } .framer-QSufq .framer-1bq6vq9 { order: 15; width: 993px; } .framer-QSufq .framer-1xq66vo-container { order: 16; }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-QSufq.framer-18vu9mv { width: 768px; } .framer-QSufq .framer-1lkvmt { order: 0; padding: 80px 0px 0px 0px; } .framer-QSufq .framer-lhydr8 { flex-direction: column; gap: 80px; } .framer-QSufq .framer-1o4mavr { flex: none; width: 100%; } .framer-QSufq .framer-1aeeofj { width: 77%; } .framer-QSufq .framer-1cm1l9e { width: 99%; } .framer-QSufq .framer-1034qzx, .framer-QSufq .framer-3iuu6y { align-content: center; align-items: center; } .framer-QSufq .framer-1bjxe09-container { width: 224px; } .framer-QSufq .framer-uhjill { left: calc(50.00000000000002% - 768px / 2); width: 768px; } .framer-QSufq .framer-kl26im { order: 1; padding: 80px 0px 0px 0px; } .framer-QSufq .framer-1fhqhmm { gap: 40px; max-width: 720px; order: 0; } .framer-QSufq .framer-1hpw8l6 { width: 720px; } .framer-QSufq .framer-1rwm5vn { width: 244px; } .framer-QSufq .framer-15pndsf { left: 50%; width: 243px; } .framer-QSufq .framer-1xd7hr7 { order: 3; padding: 80px 0px 0px 0px; } .framer-QSufq .framer-1i47b9l, .framer-QSufq .framer-1ods985, .framer-QSufq .framer-1q245we, .framer-QSufq .framer-1b84mm9, .framer-QSufq .framer-7g7r6x, .framer-QSufq .framer-hm7r90, .framer-QSufq .framer-als6ym { gap: 40px; max-width: 720px; } .framer-QSufq .framer-1pq1viy, .framer-QSufq .framer-16z88ga { max-width: 539px; } .framer-QSufq .framer-1zmsas, .framer-QSufq .framer-lg410v, .framer-QSufq .framer-bttbnn { max-width: 528px; width: 528px; } .framer-QSufq .framer-xqzimn { order: 4; padding: 80px 0px 0px 0px; } .framer-QSufq .framer-ba2692 { align-content: unset; align-items: unset; display: grid; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-QSufq .framer-1h3exi7, .framer-QSufq .framer-r1ubvi, .framer-QSufq .framer-1kw2avm { align-self: start; gap: 24px; height: 100%; justify-self: start; width: 100%; } .framer-QSufq .framer-1fg8i57, .framer-QSufq .framer-1jhq50z { width: 308px; } .framer-QSufq .framer-1mn4pdq { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-QSufq .framer-8dzytz { order: 0; } .framer-QSufq .framer-1knhy0l { order: 1; } .framer-QSufq .framer-6wy41t { order: 5; padding: 100px 0px 0px 0px; } .framer-QSufq .framer-xv3db5, .framer-QSufq .framer-u5ihz6, .framer-QSufq .framer-i6py8f, .framer-QSufq .framer-c82j48 { max-width: 720px; } .framer-QSufq .framer-tksjhm { padding: 0px 0px 60px 0px; } .framer-QSufq .framer-1avi2th { max-width: 468px; width: 468px; } .framer-QSufq .framer-1dkac9o, .framer-QSufq .framer-11gh17m, .framer-QSufq .framer-yb33ir, .framer-QSufq .framer-dnq6t0, .framer-QSufq .framer-1qn2jps, .framer-QSufq .framer-x4p0zf { padding: 0px 0px 80px 0px; } .framer-QSufq .framer-ijwa4d, .framer-QSufq .framer-tx3n35, .framer-QSufq .framer-16om3vn { flex-direction: column; gap: 40px; justify-content: flex-start; max-width: 478px; } .framer-QSufq .framer-1shpn32, .framer-QSufq .framer-dhfuxj, .framer-QSufq .framer-r7j18t { align-content: center; align-items: center; max-width: unset; order: 1; width: 100%; } .framer-QSufq .framer-eoswl4, .framer-QSufq .framer-ewp6h2, .framer-QSufq .framer-ws03kd { max-width: 444px; width: 444px; } .framer-QSufq .framer-l96sbk { height: var(--framer-aspect-ratio-supported, 350px); order: 0; width: 87%; } .framer-QSufq .framer-1qo38rh { height: var(--framer-aspect-ratio-supported, 291px); } .framer-QSufq .framer-c7v01j, .framer-QSufq .framer-1sznyjn, .framer-QSufq .framer-vk77jw { flex-direction: column; gap: 40px; justify-content: center; max-width: 480px; } .framer-QSufq .framer-1btczwb { height: var(--framer-aspect-ratio-supported, 350px); width: 83%; } .framer-QSufq .framer-31vigh, .framer-QSufq .framer-2cdd1a, .framer-QSufq .framer-wh7gje, .framer-QSufq .framer-17bidz3, .framer-QSufq .framer-tisfgr { height: 291px; } .framer-QSufq .framer-12ao2yx, .framer-QSufq .framer-1rp7qpy, .framer-QSufq .framer-lr7s4k, .framer-QSufq .framer-1cv25zm { align-content: center; align-items: center; width: 100%; } .framer-QSufq .framer-7lbyyq, .framer-QSufq .framer-mrdwy1, .framer-QSufq .framer-1w9qmad { max-width: 404px; width: 404px; } .framer-QSufq .framer-12xgzg2, .framer-QSufq .framer-r6fqzm { aspect-ratio: unset; height: 350px; order: 0; width: 83%; } .framer-QSufq .framer-1uuvn87 { aspect-ratio: unset; height: 349px; width: 83%; } .framer-QSufq .framer-amk4sq { aspect-ratio: unset; height: 350px; width: 83%; } .framer-QSufq .framer-zn2qoo { order: 6; } .framer-QSufq .framer-50tjar { max-width: 346px; } .framer-QSufq .framer-1wehc4b { flex-direction: column; gap: 5px; } .framer-QSufq .framer-umnva2 { order: 7; padding: 100px 40px 100px 40px; width: 100%; } .framer-QSufq .framer-1hjmxni, .framer-QSufq .framer-1rsi2mw, .framer-QSufq .framer-195wrt0 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-QSufq .framer-chgy4y { order: 8; padding: 80px 0px 80px 0px; } .framer-QSufq .framer-r1sss7 { gap: 40px; justify-content: center; max-width: 720px; } .framer-QSufq .framer-167eaos { flex-direction: column; gap: 40px; justify-content: flex-start; max-width: 478px; order: 0; } .framer-QSufq .framer-183u4mi { aspect-ratio: unset; height: 291px; width: 100%; } .framer-QSufq .framer-wewsz3 { align-content: center; align-items: center; flex: none; gap: 40px; max-width: 421px; width: 100%; } .framer-QSufq .framer-1gp0lmd { max-width: 399px; width: 100%; } .framer-QSufq .framer-1k21rl1 { align-content: center; align-items: center; gap: 40px; } .framer-QSufq .framer-y8z2ay { order: 9; padding: 80px 0px 80px 0px; } .framer-QSufq .framer-1kt3pup { align-content: center; align-items: center; flex-direction: column; gap: 23px; justify-content: center; width: 99%; } .framer-QSufq .framer-sdefv6 { width: 100%; } .framer-QSufq .framer-5sbd5h { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-QSufq .framer-1kyywuh, .framer-QSufq .framer-yadc0z, .framer-QSufq .framer-7nxsfo, .framer-QSufq .framer-rj9tqu { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-QSufq .framer-14el8oj { order: 13; padding: 80px 40px 80px 40px; width: 100%; } .framer-QSufq .framer-1hbk16u { order: 14; } .framer-QSufq .framer-i1i9wk { align-content: center; align-items: center; gap: 40px; max-width: 720px; } .framer-QSufq .framer-1v7eirm { flex-direction: column; gap: 35px; justify-content: center; padding: 30px 35px 30px 35px; } .framer-QSufq .framer-10d04by { align-content: center; align-items: center; flex: none; justify-content: center; max-width: unset; width: 80%; } .framer-QSufq .framer-1bq6vq9 { order: 15; padding: 80px 40px 80px 40px; width: 100%; } .framer-QSufq .framer-s99by4, .framer-QSufq .framer-1o05dvn, .framer-QSufq .framer-d7e3mw { flex: 1 0 0px; width: 1px; } .framer-QSufq .framer-1oec4xc, .framer-QSufq .framer-1gpa2g0, .framer-QSufq .framer-1td2sn0 { height: var(--framer-aspect-ratio-supported, 146px); width: 195px; } .framer-QSufq .framer-17bja9k, .framer-QSufq .framer-1nsblsc { height: 327px; } .framer-QSufq .framer-1xq66vo-container { order: 16; }}\",\"@media (max-width: 767px) { .framer-QSufq.framer-18vu9mv { width: 375px; } .framer-QSufq .framer-1lkvmt, .framer-QSufq .framer-1xd7hr7, .framer-QSufq .framer-xqzimn { padding: 60px 0px 0px 0px; } .framer-QSufq .framer-n36yqk { padding: 0px 10px 0px 10px; } .framer-QSufq .framer-lhydr8, .framer-QSufq .framer-ba2692 { flex-direction: column; gap: 40px; } .framer-QSufq .framer-1o4mavr, .framer-QSufq .framer-mnafde, .framer-QSufq .framer-1kyywuh, .framer-QSufq .framer-yadc0z, .framer-QSufq .framer-7nxsfo, .framer-QSufq .framer-rj9tqu { flex: none; width: 100%; } .framer-QSufq .framer-1aeeofj { align-content: center; align-items: center; gap: 12px; } .framer-QSufq .framer-1urcwsd-container { order: 0; } .framer-QSufq .framer-1cm1l9e { order: 1; } .framer-QSufq .framer-1034qzx { align-content: center; align-items: center; flex-direction: column; gap: 12px; } .framer-QSufq .framer-x4nr4q-container { height: 64px; width: 232px; } .framer-QSufq .framer-1bjxe09-container { width: 232px; } .framer-QSufq .framer-uhjill { height: 646px; left: calc(49.86666666666669% - 376px / 2); top: 9px; width: 376px; } .framer-QSufq .framer-kl26im, .framer-QSufq .framer-6wy41t { padding: 0px; } .framer-QSufq .framer-1fhqhmm { gap: 40px; max-width: 524px; padding: 60px 30px 0px 30px; } .framer-QSufq .framer-1hpw8l6 { flex-direction: column; height: min-content; width: 315px; } .framer-QSufq .framer-5qlyve, .framer-QSufq .framer-6hphpc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 20px; width: 100%; } .framer-QSufq .framer-17oqbt1 { bottom: unset; left: unset; order: 1; position: relative; transform: unset; width: 285px; } .framer-QSufq .framer-1rwm5vn { left: unset; order: 0; position: relative; top: unset; transform: unset; width: 204px; } .framer-QSufq .framer-15pndsf { left: unset; position: relative; top: unset; transform: unset; width: 179px; } .framer-QSufq .framer-f7x0oc { left: unset; position: relative; top: unset; transform: unset; } .framer-QSufq .framer-1i47b9l, .framer-QSufq .framer-1ods985 { gap: 40px; max-width: 524px; } .framer-QSufq .framer-1tg0627, .framer-QSufq .framer-17mgae, .framer-QSufq .framer-1cymrt6 { max-width: 539px; } .framer-QSufq .framer-llumxz-container { height: 180px; width: 304px; } .framer-QSufq .framer-1h3exi7, .framer-QSufq .framer-r1ubvi, .framer-QSufq .framer-1kw2avm { align-content: center; align-items: center; gap: 24px; max-width: unset; width: 100%; } .framer-QSufq .framer-xv3db5 { gap: 30px; max-width: 524px; padding: 100px 30px 0px 30px; } .framer-QSufq .framer-tksjhm { padding: 0px 0px 40px 0px; } .framer-QSufq .framer-1dkac9o, .framer-QSufq .framer-11gh17m, .framer-QSufq .framer-yb33ir, .framer-QSufq .framer-dnq6t0, .framer-QSufq .framer-1qn2jps, .framer-QSufq .framer-x4p0zf { padding: 0px 0px 60px 0px; } .framer-QSufq .framer-u5ihz6, .framer-QSufq .framer-1q245we, .framer-QSufq .framer-i6py8f, .framer-QSufq .framer-1b84mm9, .framer-QSufq .framer-c82j48, .framer-QSufq .framer-7g7r6x, .framer-QSufq .framer-hm7r90, .framer-QSufq .framer-als6ym { gap: 30px; max-width: 524px; } .framer-QSufq .framer-ijwa4d, .framer-QSufq .framer-tx3n35, .framer-QSufq .framer-16om3vn, .framer-QSufq .framer-167eaos { flex-direction: column; gap: 40px; justify-content: flex-start; max-width: 315px; } .framer-QSufq .framer-1shpn32, .framer-QSufq .framer-dhfuxj, .framer-QSufq .framer-r7j18t { order: 1; width: 100%; } .framer-QSufq .framer-l96sbk, .framer-QSufq .framer-12xgzg2, .framer-QSufq .framer-r6fqzm { height: var(--framer-aspect-ratio-supported, 266px); order: 0; width: 100%; } .framer-QSufq .framer-1qo38rh { height: var(--framer-aspect-ratio-supported, 196px); width: 80%; } .framer-QSufq .framer-c7v01j, .framer-QSufq .framer-1sznyjn, .framer-QSufq .framer-vk77jw { flex-direction: column; gap: 40px; height: 565px; justify-content: center; max-width: 315px; } .framer-QSufq .framer-1btczwb, .framer-QSufq .framer-1uuvn87, .framer-QSufq .framer-amk4sq { height: var(--framer-aspect-ratio-supported, 278px); width: 100%; } .framer-QSufq .framer-31vigh, .framer-QSufq .framer-2cdd1a, .framer-QSufq .framer-wh7gje, .framer-QSufq .framer-17bidz3, .framer-QSufq .framer-tisfgr { height: 196px; width: 80%; } .framer-QSufq .framer-12ao2yx, .framer-QSufq .framer-1rp7qpy, .framer-QSufq .framer-lr7s4k { align-content: center; align-items: center; width: 100%; } .framer-QSufq .framer-11cgvgp { flex-direction: column; gap: 30px; justify-content: center; padding: 25px 23px 25px 23px; } .framer-QSufq .framer-50tjar, .framer-QSufq .framer-10d04by { align-content: center; align-items: center; flex: none; justify-content: center; max-width: unset; width: 100%; } .framer-QSufq .framer-umnva2 { padding: 20px; width: 81%; } .framer-QSufq .framer-5tvuga { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-QSufq .framer-1hjmxni, .framer-QSufq .framer-1rsi2mw, .framer-QSufq .framer-195wrt0 { height: var(--framer-aspect-ratio-supported, 262px); } .framer-QSufq .framer-chgy4y, .framer-QSufq .framer-y8z2ay { padding: 60px 0px 60px 0px; } .framer-QSufq .framer-r1sss7 { justify-content: center; } .framer-QSufq .framer-183u4mi { height: var(--framer-aspect-ratio-supported, 334px); width: 100%; } .framer-QSufq .framer-wewsz3 { flex: none; gap: 30px; width: 100%; } .framer-QSufq .framer-3iuu6y { align-content: center; align-items: center; } .framer-QSufq .framer-1gp0lmd { max-width: 298px; width: 100%; } .framer-QSufq .framer-1kt3pup { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-QSufq .framer-1cv25zm { align-content: center; align-items: center; gap: 20px; width: 100%; } .framer-QSufq .framer-sdefv6, .framer-QSufq .framer-s99by4, .framer-QSufq .framer-1o05dvn, .framer-QSufq .framer-d7e3mw { width: 100%; } .framer-QSufq .framer-5sbd5h, .framer-QSufq .framer-1f5367x { flex-direction: column; } .framer-QSufq .framer-14el8oj, .framer-QSufq .framer-1bq6vq9 { padding: 60px 20px 60px 20px; width: 100%; } .framer-QSufq .framer-1v7eirm { flex-direction: column; gap: 35px; justify-content: center; padding: 30px 20px 30px 20px; } .framer-QSufq .framer-1oec4xc, .framer-QSufq .framer-1gpa2g0 { height: var(--framer-aspect-ratio-supported, 199px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10999\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iI1YNxhh9\":{\"layout\":[\"fixed\",\"auto\"]},\"ZW4uEutDH\":{\"layout\":[\"fixed\",\"auto\"]},\"O0GdGKwgc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uXL8siaBb\":{\"pattern\":\":uXL8siaBb\",\"name\":\"catalogs\"},\"RFLNoulnR\":{\"pattern\":\":RFLNoulnR\",\"name\":\"faq\"},\"bpHax0Dii\":{\"pattern\":\":bpHax0Dii\",\"name\":\"people\"}}\n * @framerResponsiveScreen\n */const Framerets6ME8ND=withCSS(Component,css,\"framer-QSufq\");export default Framerets6ME8ND;Framerets6ME8ND.displayName=\"Home 2\";Framerets6ME8ND.defaultProps={height:10999,width:1440};addFonts(Framerets6ME8ND,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...HeaderFonts,...GradientHeadingFonts,...ButtonFonts,...YouTubeFonts,...ContentWidgetFonts,...BadgeFonts,...FeatureCardFonts,...AccordionFonts,...FooterSectionTwoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerets6ME8ND\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"uXL8siaBb\\\":{\\\"pattern\\\":\\\":uXL8siaBb\\\",\\\"name\\\":\\\"catalogs\\\"},\\\"RFLNoulnR\\\":{\\\"pattern\\\":\\\":RFLNoulnR\\\",\\\"name\\\":\\\"faq\\\"},\\\"bpHax0Dii\\\":{\\\"pattern\\\":\\\":bpHax0Dii\\\",\\\"name\\\":\\\"people\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"10999\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iI1YNxhh9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZW4uEutDH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O0GdGKwgc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lHQ4Hpmri", "B1AkW50uk", "JmDkQaSVU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1dhurgf", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerjxSi6nLyc", "withCSS", "jxSi6nLyc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ovxBITwSh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerKA__nKIWJ", "withCSS", "KA_nKIWJ_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "W88zB8mIG", "T8rQFvSBR", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2wrxd7", "args", "onTapzc6ei0", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramerJDIZfHyyT", "withCSS", "JDIZfHyyT_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "RowFonts", "getFonts", "JDIZfHyyT_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "JDIZfHyyT_default", "css", "FramerlI2q1RNCs", "withCSS", "lI2q1RNCs_default", "addFonts", "RowFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "number", "paragraph", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "szCUZYlSJ", "P6Kw70kpt", "zq2JFPgUR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerocfA2NUsb", "withCSS", "ocfA2NUsb_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeaderFonts", "getFonts", "LbLJTwW5h_default", "GradientHeadingFonts", "xB_8soDMP_default", "ButtonFonts", "XCKf5gDZy_default", "YouTubeFonts", "Youtube", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithFX", "withFX", "motion", "ContentWidgetFonts", "ocfA2NUsb_default", "BadgeFonts", "KA_nKIWJ_default", "FeatureCardFonts", "jxSi6nLyc_default", "AccordionFonts", "lI2q1RNCs_default", "FooterSectionTwoFonts", "C0ZgvZzoP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transition1", "animation", "animation1", "animation2", "animation3", "addImageAlt", "image", "alt", "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", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText", "Link", "getLoadingLazyAtYPosition", "SVG", "css", "Framerets6ME8ND", "withCSS", "ets6ME8ND_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
