{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/rPg7KFjdknwN7VQRLTtp/jgyrWOCgUI7sn6K6VX4d/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\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]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.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\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!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];}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(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";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}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// 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\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import FooterSection from\"#framer/local/canvasComponent/gGuaDjuEG/gGuaDjuEG.js\";import H2Title from\"#framer/local/canvasComponent/MXGzajPp2/MXGzajPp2.js\";import Header from\"#framer/local/canvasComponent/PtzD4Oofj/PtzD4Oofj.js\";import ButtonRounded from\"#framer/local/canvasComponent/rCuohR1gT/rCuohR1gT.js\";import ListItem from\"#framer/local/canvasComponent/rR1f4HeSN/rR1f4HeSN.js\";import*as sharedStyle from\"#framer/local/css/uWkbuPyX5/uWkbuPyX5.js\";import*as sharedStyle2 from\"#framer/local/css/w_ZkSoSzF/w_ZkSoSzF.js\";import*as sharedStyle1 from\"#framer/local/css/ZywSjRXJi/ZywSjRXJi.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const MotionDivWithFX=withFX(motion.div);const ButtonRoundedFonts=getFonts(ButtonRounded);const YouTubeFonts=getFonts(YouTube);const ImageWithFX=withFX(Image);const H2TitleFonts=getFonts(H2Title);const ContainerWithFX=withFX(Container);const ListItemFonts=getFonts(ListItem);const PhosphorFonts=getFonts(Phosphor);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={hg8AfwS75:\"(min-width: 1536px) and (max-width: 1919px)\",J_Hk29iZH:\"(min-width: 810px) and (max-width: 1199px)\",Nq12D7ztP:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1535px)\",yz7iuRaWl:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sDBcB\";const variantClassNames={hg8AfwS75:\"framer-v-1wuhew2\",J_Hk29iZH:\"framer-v-xndljf\",Nq12D7ztP:\"framer-v-kzyu8s\",WQLkyLRf1:\"framer-v-72rtr7\",yz7iuRaWl:\"framer-v-19xmo86\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition1={damping:50,delay:.1,mass:1,stiffness:580,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:16};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={damping:100,delay:.1,mass:5,stiffness:360,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:16};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.96,skewX:0,skewY:0,x:0,y:24};const transition3={damping:50,delay:0,mass:1,stiffness:440,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.96,skewX:0,skewY:0,transition:transition3,x:0,y:24};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop L\":\"hg8AfwS75\",\"Desktop XL\":\"yz7iuRaWl\",Desktop:\"WQLkyLRf1\",Phone:\"Nq12D7ztP\",Tablet:\"J_Hk29iZH\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const VXcAmq9JS3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"fQs299UNJ\");const isDisplayed=()=>{if(!isBrowser())return true;if([\"J_Hk29iZH\",\"Nq12D7ztP\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"J_Hk29iZH\",\"Nq12D7ztP\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"HW6PDrHn6\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c0be2f41-96d4-4867-8789-fd6634276d22, rgb(247, 249, 248)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nyo31g-container\",isModuleExternal:true,nodeId:\"wg53Qyp8F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"wg53Qyp8F\",intensity:10,layoutId:\"wg53Qyp8F\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ktu505-container\",nodeId:\"cTfmOsJM3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{__framer__targets:[{ref:ref1,target:\"VtOuGZg6H\"}],variant:\"ppldISBaW\"},Nq12D7ztP:{__framer__targets:[{ref:ref1,target:\"BqSL18Cp3\"}],variant:\"GJMRhtyrN\"},yz7iuRaWl:{__framer__targets:[{ref:ref1,target:\"YoUELZdzz\"}],variant:\"jtU11TTgR\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"TsABSC6gu\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,DJ_WM2yyP:\"var(--token-5d990186-35fc-4ca8-9b62-c995d8a8e96e, rgb(230, 235, 233))\",height:\"100%\",id:\"cTfmOsJM3\",layoutId:\"cTfmOsJM3\",M3Wv3j02j:\"var(--token-3d74d774-f764-4d22-bbdf-6b79ea14638f, rgb(6, 65, 58))\",style:{width:\"100%\"},variant:\"lPLhXHcY3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1avb9jz\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yea2bj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y9dah7\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1779a69\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gd9pu3\",\"data-framer-name\":\"H1 Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"The easy way to offer\"}),/*#__PURE__*/_jsx(\"br\",{}),\"investing and savings\"]})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:[\"The easy way to offer \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:\"investing and savings\"})]})}),fonts:[\"CUSTOM;GothamSSm Book\",\"CUSTOM;GothamSSm Light\"]},yz7iuRaWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"The easy way to offer\"}),/*#__PURE__*/_jsx(\"br\",{}),\"investing and savings\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"The easy way to offer\"}),/*#__PURE__*/_jsx(\"br\",{}),\"investing and savings\"]})}),className:\"framer-11k7tkh\",fonts:[\"CUSTOM;GothamSSm Light\",\"CUSTOM;GothamSSm Book\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fq26rz\",\"data-styles-preset\":\"uWkbuPyX5\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7aacc38c-4eb0-4915-ae0f-636da107eabf, rgb(91, 91, 91))\"},children:\"A single platform for fintechs and financial institutions to provide investing and savings products.\"})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fq26rz\",\"data-styles-preset\":\"uWkbuPyX5\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7aacc38c-4eb0-4915-ae0f-636da107eabf, rgb(91, 91, 91))\"},children:\"A single platform for fintechs and financial institutions to provide investing and savings products.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fq26rz\",\"data-styles-preset\":\"uWkbuPyX5\",style:{\"--framer-text-color\":\"var(--token-7aacc38c-4eb0-4915-ae0f-636da107eabf, rgb(91, 91, 91))\"},children:\"A single platform for fintechs and financial institutions to provide investing and savings products.\"})}),className:\"framer-1812n9s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hy5syj\",\"data-framer-name\":\"Button group\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R8B45mKmt\"},implicitPathVariables:undefined},{href:{webPageId:\"R8B45mKmt\"},implicitPathVariables:undefined},{href:{webPageId:\"R8B45mKmt\"},implicitPathVariables:undefined},{href:{webPageId:\"R8B45mKmt\"},implicitPathVariables:undefined},{href:{webPageId:\"R8B45mKmt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+566+0},J_Hk29iZH:{y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+64+288+0},Nq12D7ztP:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 376px)`,y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+48+280+0+0},yz7iuRaWl:{y:(componentViewport?.y||0)+0+288+0+0+0+0+0+568+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+486+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8spqj-container\",nodeId:\"tNVttxyUb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{iUHzVl7zi:resolvedLinks[3]},J_Hk29iZH:{iUHzVl7zi:resolvedLinks[1]},Nq12D7ztP:{iUHzVl7zi:resolvedLinks[2],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}},yz7iuRaWl:{iUHzVl7zi:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(ButtonRounded,{eoy8XjpTd:\"ArrowUpRight\",height:\"100%\",Hjoa8QJBO:\"Talk to us\",id:\"tNVttxyUb\",iUHzVl7zi:resolvedLinks[0],layoutId:\"tNVttxyUb\",msClcEPH6:false,r1v4z4qjS:\"talk-to-us\",style:{height:\"100%\"},variant:\"u788wg12n\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+566+0},J_Hk29iZH:{y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+64+288+0},Nq12D7ztP:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 376px)`,y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+48+280+0+72},yz7iuRaWl:{y:(componentViewport?.y||0)+0+288+0+0+0+0+0+568+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+288+0+0+0+0+0+0+486+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1cfcvhg-container\",id:\"1cfcvhg\",nodeId:\"lc4BH6yIW\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Nq12D7ztP:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonRounded,{eoy8XjpTd:\"Play\",height:\"100%\",Hjoa8QJBO:\"See more\",id:\"lc4BH6yIW\",layoutId:\"lc4BH6yIW\",msClcEPH6:false,style:{height:\"100%\"},variant:\"q79QC4Sc6\",VXcAmq9JS:VXcAmq9JS3bnx0g({overlay}),width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ikw18d\"),\"data-framer-portal-id\":\"1cfcvhg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"N429ePgRj\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-hs5oun-container\"),\"data-framer-portal-id\":\"1cfcvhg\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sTfhv_ozW\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"sTfhv_ozW\",isMixedBorderRadius:false,isRed:false,layoutId:\"sTfhv_ozW\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/TJwYHZGSipk?si=k8IGU35rx_91b6-a\",width:\"100%\"})})})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n2mdgz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Hand holding phone with investing experience on screen\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+288+0+0+0+0+0+0+0),pixelHeight:2850,pixelWidth:2382,positionX:\"center\",positionY:\"bottom\",sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png\",srcSet:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=1024 855w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=2048 1711w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png 2382w\"}},J_Hk29iZH:{background:{alt:\"Hand holding phone with investing experience on screen\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+288+0+0+0+0+0+472+0+0),pixelHeight:2850,pixelWidth:2382,positionX:\"center\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 650px)`,src:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png\",srcSet:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=1024 855w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=2048 1711w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png 2382w\"}},Nq12D7ztP:{background:{alt:\"Hand holding phone with investing experience on screen\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+288+0+0+0+0+0+504+0+0),pixelHeight:2850,pixelWidth:2382,positionX:\"center\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 540px)`,src:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png\",srcSet:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=1024 855w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=2048 1711w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png 2382w\"}},yz7iuRaWl:{background:{alt:\"Hand holding phone with investing experience on screen\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+288+0+0+0+0+0+0),pixelHeight:2850,pixelWidth:2382,positionX:\"center\",positionY:\"bottom\",sizes:\"1411.7647px\",src:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png\",srcSet:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=1024 855w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=2048 1711w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png 2382w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hand holding phone with investing experience on screen\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+288+0+0+0+0+0+0+0),pixelHeight:2850,pixelWidth:2382,positionX:\"30.5%\",positionY:\"37.8%\",sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) / 2, 1px)`,src:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png\",srcSet:\"https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=1024 855w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png?scale-down-to=2048 1711w,https://framerusercontent.com/images/oVQhIJmPTLQ6pGfjiyXLGRqBWk.png 2382w\"},className:\"framer-1d0rx5a\",\"data-framer-name\":\"Image\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c7esyi\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a289e0\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ykqhca\",\"data-framer-name\":\"Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"n8sBvQwPE\"},implicitPathVariables:undefined},{href:{webPageId:\"n8sBvQwPE\"},implicitPathVariables:undefined},{href:{webPageId:\"n8sBvQwPE\"},implicitPathVariables:undefined},{href:{webPageId:\"n8sBvQwPE\"},implicitPathVariables:undefined},{href:{webPageId:\"n8sBvQwPE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+1188+0+0+0+253.5},J_Hk29iZH:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px)`,y:(componentViewport?.y||0)+0+1410+0+0+0+96+0},Nq12D7ztP:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+1212+0+0+0+64+0},yz7iuRaWl:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1188+0+0+0+273.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:229,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 288px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1028+0+0+0+193.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q8he3o-container\",nodeId:\"jW1aSb_Y9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{dORTtni6_:resolvedLinks1[3]},J_Hk29iZH:{dORTtni6_:resolvedLinks1[1],PPxdp85K6:36},Nq12D7ztP:{dORTtni6_:resolvedLinks1[2],PPxdp85K6:24},yz7iuRaWl:{dORTtni6_:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(H2Title,{D2hub0Gvn:true,dORTtni6_:resolvedLinks1[0],height:\"100%\",HP1m6V9_w:\"Wealth Management\",id:\"jW1aSb_Y9\",layoutId:\"jW1aSb_Y9\",lywIp3QXI:true,oWS1ycPei:\"Deliver advanced wealth management capabilities, from custom indexing to bond laddering, in a fully automated and highly scalable way.\",PPxdp85K6:48,qIoqPFBHg:\"Learn more\",SB854T6N_:false,style:{width:\"100%\"},tdNEnyxUc:true,variant:\"FVJDUiEjy\",width:\"100%\",zEQF0SF1h:\"Solutions\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tl8uoq\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Investing portfolio illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+0+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"631.1308px\",src:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg 592w\"}},J_Hk29iZH:{background:{alt:\"Investing portfolio illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1410+0+0+0+96+293+0+0),pixelHeight:451,pixelWidth:592,sizes:\"683.7251px\",src:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg 592w\"}},Nq12D7ztP:{background:{alt:\"Investing portfolio illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1212+0+0+0+64+277+0+0),pixelHeight:451,pixelWidth:592,sizes:\"420.7539px\",src:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg 592w\"}},yz7iuRaWl:{background:{alt:\"Investing portfolio illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+0+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"683.7251px\",src:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg 592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Investing portfolio illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1028+0+0+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"473.3481px\",src:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/odkXbngs3ZEFls9JxnSFJFGHU.svg 592w\"},className:\"framer-17xwzlp\",\"data-framer-name\":\"Wealth management\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-siblem\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-msoepv\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F2hpgXEiu\"},implicitPathVariables:undefined},{href:{webPageId:\"F2hpgXEiu\"},implicitPathVariables:undefined},{href:{webPageId:\"F2hpgXEiu\"},implicitPathVariables:undefined},{href:{webPageId:\"F2hpgXEiu\"},implicitPathVariables:undefined},{href:{webPageId:\"F2hpgXEiu\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+1924+0+253.5},J_Hk29iZH:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px)`,y:(componentViewport?.y||0)+0+2415+0+96+0},Nq12D7ztP:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+1937+0+64+0},yz7iuRaWl:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1964+0+273.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:229,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 288px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1644+0+193.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n0c5tw-container\",nodeId:\"njrVqaYQC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{dORTtni6_:resolvedLinks2[3]},J_Hk29iZH:{dORTtni6_:resolvedLinks2[1],PPxdp85K6:36},Nq12D7ztP:{dORTtni6_:resolvedLinks2[2],PPxdp85K6:24},yz7iuRaWl:{dORTtni6_:resolvedLinks2[4]}},children:/*#__PURE__*/_jsx(H2Title,{D2hub0Gvn:true,dORTtni6_:resolvedLinks2[0],height:\"100%\",HP1m6V9_w:\"Cash Management\",id:\"njrVqaYQC\",layoutId:\"njrVqaYQC\",lywIp3QXI:true,oWS1ycPei:\"Provide cash management accounts for individuals and businesses, offering access to high-yield instruments such as FDIC-insured cash sweeps, money market funds, and treasury bills.\",PPxdp85K6:48,qIoqPFBHg:\"Learn more\",SB854T6N_:false,style:{width:\"100%\"},tdNEnyxUc:true,variant:\"FVJDUiEjy\",width:\"100%\",zEQF0SF1h:\"Solutions\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1euvrs5\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Treasury account illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1924+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"631.1308px\",src:\"https://framerusercontent.com/images/yl1leMpoGaNmWYWmSYILtqZk.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yl1leMpoGaNmWYWmSYILtqZk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yl1leMpoGaNmWYWmSYILtqZk.svg 592w\"}},J_Hk29iZH:{background:{alt:\"Treasury account illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2415+0+96+293+0+0),pixelHeight:450,pixelWidth:592,sizes:\"683.7251px\",src:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg 592w\"}},Nq12D7ztP:{background:{alt:\"Treasury account illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1937+0+64+277+0+0),pixelHeight:450,pixelWidth:592,sizes:\"420.7539px\",src:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg 592w\"}},yz7iuRaWl:{background:{alt:\"Treasury account illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1964+0+128+0+0),pixelHeight:450,pixelWidth:592,sizes:\"683.7251px\",src:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg 592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Treasury account illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1644+0+128+0+0),pixelHeight:450,pixelWidth:592,sizes:\"473.3481px\",src:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j8tc62NaDea6DvW6X0IpZ45Jjo.svg 592w\"},className:\"framer-uv521s\",\"data-framer-name\":\"Cash management\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f08dlt\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-65jtcu\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"x5nEcIUPK\"},implicitPathVariables:undefined},{href:{webPageId:\"x5nEcIUPK\"},implicitPathVariables:undefined},{href:{webPageId:\"x5nEcIUPK\"},implicitPathVariables:undefined},{href:{webPageId:\"x5nEcIUPK\"},implicitPathVariables:undefined},{href:{webPageId:\"x5nEcIUPK\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+2660+0+253.5},J_Hk29iZH:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 128px)`,y:(componentViewport?.y||0)+0+3420+0+96+0},Nq12D7ztP:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px)`,y:(componentViewport?.y||0)+0+2662+0+64+0},yz7iuRaWl:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2740+0+273.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:229,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 288px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2260+0+193.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vtqc1e-container\",nodeId:\"eUXea7UIX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{dORTtni6_:resolvedLinks3[3]},J_Hk29iZH:{dORTtni6_:resolvedLinks3[1],PPxdp85K6:36},Nq12D7ztP:{dORTtni6_:resolvedLinks3[2],PPxdp85K6:24},yz7iuRaWl:{dORTtni6_:resolvedLinks3[4]}},children:/*#__PURE__*/_jsx(H2Title,{D2hub0Gvn:true,dORTtni6_:resolvedLinks3[0],height:\"100%\",HP1m6V9_w:\"Brokerage\",id:\"eUXea7UIX\",layoutId:\"eUXea7UIX\",lywIp3QXI:true,oWS1ycPei:\"Launch modern brokerage experiences with access to fractional stocks, bonds, mutual funds, ETFs, and alternative investments, spanning both U.S. and international markets.\",PPxdp85K6:48,qIoqPFBHg:\"Learn more\",SB854T6N_:false,style:{width:\"100%\"},tdNEnyxUc:true,variant:\"FVJDUiEjy\",width:\"100%\",zEQF0SF1h:\"Solutions\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-piw815\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Buy stock illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2660+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"631.1308px\",src:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg 592w\"}},J_Hk29iZH:{background:{alt:\"Buy stock illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3420+0+96+293+0+0),pixelHeight:451,pixelWidth:592,sizes:\"683.7251px\",src:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg 592w\"}},Nq12D7ztP:{background:{alt:\"Buy stock illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2662+0+64+277+0+0),pixelHeight:451,pixelWidth:592,sizes:\"420.7539px\",src:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg 592w\"}},yz7iuRaWl:{background:{alt:\"Buy stock illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2740+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"683.7251px\",src:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg 592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Buy stock illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2260+0+128+0+0),pixelHeight:451,pixelWidth:592,sizes:\"473.3481px\",src:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Fp5je6eAeZ6kSp5ATcfy2AsRdGo.svg 592w\"},className:\"framer-o0s7ok\",\"data-framer-name\":\"Brokerage services\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13lfqw7\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ygsz54\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kl6n11\",\"data-framer-name\":\"H2 Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ybl1h1\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nbq0wi\",\"data-styles-preset\":\"ZywSjRXJi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ddecfb30-6062-40eb-b861-73d19a85db49, rgb(100, 241, 187))\"},children:\"Why us\"})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nbq0wi\",\"data-styles-preset\":\"ZywSjRXJi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ddecfb30-6062-40eb-b861-73d19a85db49, rgb(100, 241, 187))\"},children:\"Why us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nbq0wi\",\"data-styles-preset\":\"ZywSjRXJi\",style:{\"--framer-text-color\":\"var(--token-ddecfb30-6062-40eb-b861-73d19a85db49, rgb(100, 241, 187))\"},children:\"Why us\"})}),className:\"framer-1yen7tk\",\"data-framer-name\":\"Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"We\u2019ve done the heavy lifting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"for you\"})]})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"We\u2019ve done the heavy lifting \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"for you\"})]})})},yz7iuRaWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"We\u2019ve done the heavy lifting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"for you\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"We\u2019ve done the heavy lifting\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"for you\"})]})}),className:\"framer-1vptpj7\",\"data-framer-name\":\"Digital Wealth\",fonts:[\"CUSTOM;GothamSSm Book\",\"CUSTOM;GothamSSm Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wp4jna\",\"data-styles-preset\":\"w_ZkSoSzF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"Atomic\u2019s end-to-end solution reduces legal and operational hassles, allowing you to focus entirely on your product.\"})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wp4jna\",\"data-styles-preset\":\"w_ZkSoSzF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"Atomic\u2019s end-to-end solution reduces legal and operational hassles, allowing you to focus entirely on your product.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wp4jna\",\"data-styles-preset\":\"w_ZkSoSzF\",style:{\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"Atomic\u2019s end-to-end solution reduces legal and operational hassles, allowing you to focus entirely on your product.\"})}),className:\"framer-em665j\",\"data-framer-name\":\"Subtext\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yr8777\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{background:{alt:\"Suite of services covered by Atomic illustration\",fit:\"fill\",intrinsicHeight:1463.5,intrinsicWidth:1583.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4425+0+96+406+0),pixelHeight:2927,pixelWidth:3167,sizes:\"584.2774px\",src:\"https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg 3167w\"}},Nq12D7ztP:{background:{alt:\"Suite of services covered by Atomic illustration\",fit:\"fill\",intrinsicHeight:1463.5,intrinsicWidth:1583.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3387+0+64+374+0),pixelHeight:2927,pixelWidth:3167,sizes:`min(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 1px), 440px)`,src:\"https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg 3167w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Suite of services covered by Atomic illustration\",fit:\"fill\",intrinsicHeight:1463.5,intrinsicWidth:1583.5,pixelHeight:2927,pixelWidth:3167,src:\"https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YhP1g3uOnsTVCmkEGB1anrgLPbk.svg 3167w\"},className:\"framer-xjyolt hidden-72rtr7 hidden-1wuhew2 hidden-19xmo86\",\"data-framer-name\":\"Cyllinders-s\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Suite of services covered by Atomic illustration\",fit:\"fill\",intrinsicHeight:1463.5,intrinsicWidth:1582,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3396+0+128+0),pixelHeight:2927,pixelWidth:3164,sizes:\"562.1045px\",src:\"https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=512 512w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg 3164w\"}},yz7iuRaWl:{background:{alt:\"Suite of services covered by Atomic illustration\",fit:\"fill\",intrinsicHeight:1463.5,intrinsicWidth:1582,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3516+0+128+0),pixelHeight:2927,pixelWidth:3164,sizes:\"605.3434px\",src:\"https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=512 512w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg 3164w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Suite of services covered by Atomic illustration\",fit:\"fill\",intrinsicHeight:1463.5,intrinsicWidth:1582,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2876+0+128+0),pixelHeight:2927,pixelWidth:3164,sizes:\"454.0075px\",src:\"https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=512 512w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V0veENAeY70ohuhXANcqCHOOP2w.svg 3164w\"},className:\"framer-18wbpmv hidden-xndljf hidden-kzyu8s\",\"data-framer-name\":\"Cyllinders\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tgnb9i\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1aw508n\",\"data-framer-name\":\"Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d412d2\",\"data-framer-name\":\"H2 Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oe8sis\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nbq0wi\",\"data-styles-preset\":\"ZywSjRXJi\",style:{\"--framer-text-color\":\"var(--token-2ca8ca1b-7b82-4e31-ae76-48d54dafc249, rgb(0, 122, 65))\"},children:\"How we can help\"})}),className:\"framer-1xhcncv\",\"data-framer-name\":\"Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:[\"Launch and scale \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:\"with ease\"})]})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:[\"Launch and scale\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:\"with ease\"})]})})},yz7iuRaWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:[\"Launch and scale\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:\"with ease\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:[\"Launch and scale\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:\"with ease\"})]})}),className:\"framer-1rc4c88\",\"data-framer-name\":\"Digital Wealth\",fonts:[\"CUSTOM;GothamSSm Book\",\"CUSTOM;GothamSSm Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mpqixe\",\"data-framer-name\":\"Cards Scroll\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f9ogdx\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y8oroz\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"API code snippet illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4172+0+0+128+0+0+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg 592w\"}},J_Hk29iZH:{background:{alt:\"API code snippet illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5563+0+0+96+240+0+0+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max(${componentViewport?.width||\"100vw\"} - 128px, 1px)`,src:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg 592w\"}},Nq12D7ztP:{background:{alt:\"API code snippet illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4199+0+0+64+220+0+0+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg 592w\"}},yz7iuRaWl:{background:{alt:\"API code snippet illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4332+0+128+0+0+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg 592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"API code snippet illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3552+0+0+128+0+0+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((${componentViewport?.width||\"100vw\"} - 272px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rBt8NcGoEe5QRFsoxh5xmRkVG0.svg 592w\"},className:\"framer-9q6xc\",\"data-framer-name\":\"Developer-first APIs\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rkdahn\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px) - 96px)`,y:(componentViewport?.y||0)+0+4172+0+0+128+0+0+0+476+36+0},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 224px)`,y:(componentViewport?.y||0)+0+5563+0+0+96+240+0+0+0+520+36+0},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+4199+0+0+64+220+0+0+0+260+24+0},yz7iuRaWl:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px) - 96px)`,y:(componentViewport?.y||0)+0+4332+0+128+0+0+0+584+36+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(max((${componentViewport?.width||\"100vw\"} - 272px) / 2, 1px) - 96px)`,y:(componentViewport?.y||0)+0+3552+0+0+128+0+0+0+354+36+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17gmo0n-container\",nodeId:\"oYGYrTC9J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:24,EefRis4sN:false,height:\"100%\",id:\"oYGYrTC9J\",layoutId:\"oYGYrTC9J\",oREGu0jtu:\"Developer-first APIs\",OvmUXV9rS:\"03\",Q3bp0fULv:\"Integrate with ease through our developer-first APIs.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"WgFGK0SKt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3idr12\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e4jpcr\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Customization interface illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4172+0+0+128+0+694+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg 592w\"}},J_Hk29iZH:{background:{alt:\"Customization interface illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5563+0+0+96+240+0+738+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max(${componentViewport?.width||\"100vw\"} - 128px, 1px)`,src:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg 592w\"}},Nq12D7ztP:{background:{alt:\"Customization interface illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4199+0+0+64+220+0+454+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg 592w\"}},yz7iuRaWl:{background:{alt:\"Customization interface illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4332+0+128+0+802+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg 592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Customization interface illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3552+0+0+128+0+572+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((${componentViewport?.width||\"100vw\"} - 272px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/VoKzZGoqkVCyaX8LQFORLD5e4T8.svg 592w\"},className:\"framer-1oddkpx\",\"data-framer-name\":\"Pre-built experiences\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqidly\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{width:`max(max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px) - 96px, 1px)`,y:(componentViewport?.y||0)+0+4172+0+0+128+0+694+0+476+36},J_Hk29iZH:{width:`max(${componentViewport?.width||\"100vw\"} - 224px, 1px)`,y:(componentViewport?.y||0)+0+5563+0+0+96+240+0+738+0+520+36},Nq12D7ztP:{width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+0+4199+0+0+64+220+0+454+0+260+24},yz7iuRaWl:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px) - 96px, 1px)`,y:(componentViewport?.y||0)+0+4332+0+128+0+802+0+584+36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`max(max((${componentViewport?.width||\"100vw\"} - 272px) / 2, 1px) - 96px, 1px)`,y:(componentViewport?.y||0)+0+3552+0+0+128+0+572+0+354+36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v8h3pd-container\",nodeId:\"zcDs7Wn_Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:24,EefRis4sN:false,height:\"100%\",id:\"zcDs7Wn_Q\",layoutId:\"zcDs7Wn_Q\",oREGu0jtu:\"Pre-built experiences\",OvmUXV9rS:\"03\",Q3bp0fULv:\"Accelerate your time to market with our pre-built experiences.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"WgFGK0SKt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j69akg\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ln1mjj\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{background:{alt:\"Clients management dashboard illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4172+0+0+128+0+1388+0+0+0+0),pixelHeight:451,pixelWidth:592,sizes:`max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px)`,src:\"https://framerusercontent.com/images/L0l6JyyoZq6ITTGREQydSynV48.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/L0l6JyyoZq6ITTGREQydSynV48.svg?scale-down-to=512 512w,https://framerusercontent.com/images/L0l6JyyoZq6ITTGREQydSynV48.svg 592w\"}},J_Hk29iZH:{background:{alt:\"Clients management dashboard illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5563+0+0+96+240+0+1476+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max(${componentViewport?.width||\"100vw\"} - 128px, 1px)`,src:\"https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg 592w\"}},Nq12D7ztP:{background:{alt:\"Clients management dashboard illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4199+0+0+64+220+0+908+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg 592w\"}},yz7iuRaWl:{background:{alt:\"Clients management dashboard illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4332+0+128+0+1604+0+0+0+0),pixelHeight:451,pixelWidth:592,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,src:\"https://framerusercontent.com/images/L0l6JyyoZq6ITTGREQydSynV48.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/L0l6JyyoZq6ITTGREQydSynV48.svg?scale-down-to=512 512w,https://framerusercontent.com/images/L0l6JyyoZq6ITTGREQydSynV48.svg 592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Clients management dashboard illustration\",fit:\"fill\",intrinsicHeight:225.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3552+0+0+128+0+1144+0+0+0+0),pixelHeight:450,pixelWidth:592,sizes:`max((${componentViewport?.width||\"100vw\"} - 272px) / 2, 1px)`,src:\"https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jepmlY41ltViJUra13datOlVQY.svg 592w\"},className:\"framer-1chw35h\",\"data-framer-name\":\"Management dashboard\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wd6wht\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{width:`max(max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px) - 96px, 1px)`,y:(componentViewport?.y||0)+0+4172+0+0+128+0+1388+0+476+36},J_Hk29iZH:{width:`max(${componentViewport?.width||\"100vw\"} - 224px, 1px)`,y:(componentViewport?.y||0)+0+5563+0+0+96+240+0+1476+0+520+36},Nq12D7ztP:{width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+0+4199+0+0+64+220+0+908+0+260+24},yz7iuRaWl:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px) - 96px, 1px)`,y:(componentViewport?.y||0)+0+4332+0+128+0+1604+0+584+36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`max(max((${componentViewport?.width||\"100vw\"} - 272px) / 2, 1px) - 96px, 1px)`,y:(componentViewport?.y||0)+0+3552+0+0+128+0+1144+0+354+36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-45snz5-container\",nodeId:\"vTZPr84Qi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:24,EefRis4sN:false,height:\"100%\",id:\"vTZPr84Qi\",layoutId:\"vTZPr84Qi\",oREGu0jtu:\"Back-office solutions\",OvmUXV9rS:\"03\",Q3bp0fULv:\"A complete dashboard to effectively manage all your customer accounts.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"WgFGK0SKt\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ak82ht\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tgv3sg\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10a97t2\",\"data-framer-name\":\"H2 Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-302xg3\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nbq0wi\",\"data-styles-preset\":\"ZywSjRXJi\",style:{\"--framer-text-color\":\"var(--token-ddecfb30-6062-40eb-b861-73d19a85db49, rgb(100, 241, 187))\"},children:\"Reliable partner\"})}),className:\"framer-1o4ya8d\",\"data-framer-name\":\"Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"Safety, security, and compliance \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"are fundamental to our offering\"})]})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"Safety, security, and compliance \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"are fundamental to our offering\"})]})})},yz7iuRaWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"Safety, security, and compliance \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"are fundamental to our offering\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, rgb(255, 255, 255))\"},children:[\"Safety, security, and compliance \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-f5c32e40-39de-4911-8597-c584c1868d78, rgba(255, 255, 255, 0.75))\"},children:\"are fundamental to our offering\"})]})}),className:\"framer-1z0mbsf\",\"data-framer-name\":\"Digital Wealth\",fonts:[\"CUSTOM;GothamSSm Book\",\"CUSTOM;GothamSSm Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cd0mmj\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+6462+0+0+128+0+0},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`,y:(componentViewport?.y||0)+0+8161+0+0+96+240+0+0},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+5861+0+0+64+220+0+0},yz7iuRaWl:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,y:(componentViewport?.y||0)+0+6946+0+128+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5476+0+0+128+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uveob-container\",nodeId:\"iXaN9bdH7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Nq12D7ztP:{AUJJn9tAv:24}},children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:48,EefRis4sN:true,height:\"100%\",id:\"iXaN9bdH7\",layoutId:\"iXaN9bdH7\",oREGu0jtu:\"Regulated\",OvmUXV9rS:\"01\",Q3bp0fULv:\"SEC-licensed investment advisor and FINRA-registered broker-dealer.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"jhvSfzV_V\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xuf4ge\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ub4pv\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:702,svg:'<svg width=\"702\" height=\"4\" viewBox=\"-1 -1 702 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.09424H700\" stroke=\"white\" stroke-opacity=\"0.15\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+6462+0+0+128+0+195},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`,y:(componentViewport?.y||0)+0+8161+0+0+96+240+0+195},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+5861+0+0+64+220+0+147},yz7iuRaWl:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,y:(componentViewport?.y||0)+0+6946+0+128+0+195}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5476+0+0+128+0+195,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u0uqel-container\",nodeId:\"ODGmkC44g\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Nq12D7ztP:{AUJJn9tAv:24}},children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:48,EefRis4sN:true,height:\"100%\",id:\"ODGmkC44g\",layoutId:\"ODGmkC44g\",oREGu0jtu:\"G-SIB Custody\",OvmUXV9rS:\"02\",Q3bp0fULv:\"Custody of assets at BNY Pershing, and Bank of New York Mellon - the world's largest custodian bank.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"jhvSfzV_V\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qpfobq\",\"data-framer-name\":\"Divider\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uaftbp\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:702,svg:'<svg width=\"702\" height=\"4\" viewBox=\"-1 -1 702 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.09424H700\" stroke=\"white\" stroke-opacity=\"0.15\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+6462+0+0+128+0+390},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`,y:(componentViewport?.y||0)+0+8161+0+0+96+240+0+390},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+5861+0+0+64+220+0+294},yz7iuRaWl:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 384px) / 2, 1px)`,y:(componentViewport?.y||0)+0+6946+0+128+0+390}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`max((${componentViewport?.width||\"100vw\"} - 288px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5476+0+0+128+0+390,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16vmemh-container\",nodeId:\"NsMVwe3ha\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Nq12D7ztP:{AUJJn9tAv:24}},children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:48,EefRis4sN:true,height:\"100%\",id:\"NsMVwe3ha\",layoutId:\"NsMVwe3ha\",oREGu0jtu:\"SOC-2 Certified\",OvmUXV9rS:\"03\",Q3bp0fULv:\"Annual Type II assessment, upholding the highest security standards.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"jhvSfzV_V\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wr7u18\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1300jox\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eatuqc\",\"data-framer-name\":\"H2 Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qq2i9k\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nbq0wi\",\"data-styles-preset\":\"ZywSjRXJi\",style:{\"--framer-text-color\":\"var(--token-2ca8ca1b-7b82-4e31-ae76-48d54dafc249, rgb(0, 122, 65))\"},children:\"For who\"})}),className:\"framer-6dcjf7\",\"data-framer-name\":\"Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_Hk29iZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"Tailored \"}),\"to your use case\"]})})},Nq12D7ztP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"Tailored \"}),\"to your use case\"]})})},yz7iuRaWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"Tailored \"}),\"to your use case\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBMaWdodA==\",\"--framer-font-family\":'\"GothamSSm Light\", \"GothamSSm Light Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e96927d-e591-4b03-bb83-188c15085853, rgba(26, 35, 34, 0.75))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbVNTbSBCb29r\",\"--framer-font-family\":'\"GothamSSm Book\", \"GothamSSm Book Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, rgb(30, 30, 28))\"},children:\"Tailored \"}),\"to your use case\"]})}),className:\"framer-30ge4x\",\"data-framer-name\":\"Digital Wealth\",fonts:[\"CUSTOM;GothamSSm Light\",\"CUSTOM;GothamSSm Book\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7no55g\",\"data-framer-name\":\"Cards-S\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14wqo9b\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gedqon-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UQa6qr0jm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5cc4113b-b60a-42f1-9d74-200856ccd5e1, rgb(3, 89, 74))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Bank\",id:\"UQa6qr0jm\",layoutId:\"UQa6qr0jm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+7206+0+0+128+260+0+48+80},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 224px)`,y:(componentViewport?.y||0)+0+9081+0+0+96+240+0+0+48+80},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+6601+0+0+64+220+0+0+24+56},yz7iuRaWl:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 304px) / 3, 1px) - 96px)`,y:(componentViewport?.y||0)+0+7690+0+128+264+0+48+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 3, 1px) - 96px)`,y:(componentViewport?.y||0)+0+6220+0+0+128+260+0+48+80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9mo9d-container\",nodeId:\"kssewoY3U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:24,EefRis4sN:false,height:\"100%\",id:\"kssewoY3U\",layoutId:\"kssewoY3U\",oREGu0jtu:\"Financial Institutions\",OvmUXV9rS:\"04\",Q3bp0fULv:\"Retain deposits and attract the next generation of members with self-service digital wealth solutions.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"WgFGK0SKt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s9zuew\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-476rgl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"i_B93Myfk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5cc4113b-b60a-42f1-9d74-200856ccd5e1, rgb(3, 89, 74))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UsersThree\",id:\"i_B93Myfk\",layoutId:\"i_B93Myfk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+7206+0+0+128+260+0+48+80},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 224px)`,y:(componentViewport?.y||0)+0+9081+0+0+96+240+0+298+48+80},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+6601+0+0+64+220+0+226+24+56},yz7iuRaWl:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 304px) / 3, 1px) - 96px)`,y:(componentViewport?.y||0)+0+7690+0+128+264+0+48+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 3, 1px) - 96px)`,y:(componentViewport?.y||0)+0+6220+0+0+128+260+0+48+80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-47l4xv-container\",nodeId:\"vrTLTcVDF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:24,EefRis4sN:false,height:\"100%\",id:\"vrTLTcVDF\",layoutId:\"vrTLTcVDF\",oREGu0jtu:\"Consumer Fintechs\",OvmUXV9rS:\"04\",Q3bp0fULv:\"Drive engagement velocity and retention by empowering users to build wealth on your platform.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"WgFGK0SKt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a4fmhj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kkh7hr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"thFsPj1tF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5cc4113b-b60a-42f1-9d74-200856ccd5e1, rgb(3, 89, 74))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Briefcase\",id:\"thFsPj1tF\",layoutId:\"thFsPj1tF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+7206+0+0+128+260+0+48+80},J_Hk29iZH:{width:`calc(${componentViewport?.width||\"100vw\"} - 224px)`,y:(componentViewport?.y||0)+0+9081+0+0+96+240+0+596+48+80},Nq12D7ztP:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+6601+0+0+64+220+0+452+24+56},yz7iuRaWl:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1920px) - 304px) / 3, 1px) - 96px)`,y:(componentViewport?.y||0)+0+7690+0+128+264+0+48+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 3, 1px) - 96px)`,y:(componentViewport?.y||0)+0+6220+0+0+128+260+0+48+80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojt3kx-container\",nodeId:\"QfwhyyP0z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{AUJJn9tAv:24,EefRis4sN:false,height:\"100%\",id:\"QfwhyyP0z\",layoutId:\"QfwhyyP0z\",oREGu0jtu:\"B2B Fintechs\",OvmUXV9rS:\"04\",Q3bp0fULv:\"Acquire new customers and expand wallet share with existing ones by offering access to treasury services.\",QQntVbId8:8,QwcjdV0L0:true,style:{width:\"100%\"},variant:\"WgFGK0SKt\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{y:(componentViewport?.y||0)+0+7996},J_Hk29iZH:{y:(componentViewport?.y||0)+0+10383},Nq12D7ztP:{y:(componentViewport?.y||0)+0+7603},yz7iuRaWl:{y:(componentViewport?.y||0)+0+8484}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1625,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7010,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhx4gj-container\",nodeId:\"NFvJVHVUZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hg8AfwS75:{variant:\"IU2qWMSXD\"},J_Hk29iZH:{variant:\"fhUIac64x\"},Nq12D7ztP:{variant:\"NzNKT1N9F\"},yz7iuRaWl:{variant:\"QqYXgRSbj\"}},children:/*#__PURE__*/_jsx(FooterSection,{EbQhKgSc2:false,hDwtgkTtT:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"*Products are offered by Atomic Invest LLC, an SEC registered Investment Advisor, and/or Atomic Brokerage LLC, a member of \",/*#__PURE__*/_jsx(Link,{href:\"https://www.finra.org/#/\",motionChild:true,nodeId:\"NFvJVHVUZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"FINRA\"})}),\"/\",/*#__PURE__*/_jsx(Link,{href:\"https://www.sipc.org/\",motionChild:true,nodeId:\"NFvJVHVUZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"SIPC\"})}),\".\"]})}),height:\"100%\",id:\"NFvJVHVUZ\",layoutId:\"NFvJVHVUZ\",style:{width:\"100%\"},variant:\"LjvZogKI2\",width:\"100%\",z6ptyiKbe:\"Enhance your value proposition with embedded investing and saving\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sDBcB.framer-lux5qc, .framer-sDBcB .framer-lux5qc { display: block; }\",\".framer-sDBcB.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-c0be2f41-96d4-4867-8789-fd6634276d22, #f7f9f8); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-sDBcB .framer-nyo31g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sDBcB .framer-1ktu505-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-sDBcB .framer-1avb9jz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 740px; justify-content: center; min-height: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-yea2bj { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-y9dah7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-5d990186-35fc-4ca8-9b62-c995d8a8e96e, #e6ebe9); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-1779a69 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 96px 0px 96px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-1gd9pu3 { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-11k7tkh { --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: 504px; word-break: break-word; word-wrap: break-word; }\",\".framer-sDBcB .framer-1812n9s { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 504px; word-break: break-word; word-wrap: break-word; }\",\".framer-sDBcB .framer-hy5syj { 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: min-content; }\",\".framer-sDBcB .framer-1j8spqj-container, .framer-sDBcB .framer-1cfcvhg-container { flex: none; height: 56px; position: relative; width: auto; }\",\".framer-sDBcB.framer-1ikw18d { background-color: rgba(30, 30, 28, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-sDBcB.framer-hs5oun-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 540px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 960px; z-index: 3; }\",\".framer-sDBcB .framer-n2mdgz { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-1d0rx5a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-c7esyi, .framer-sDBcB .framer-siblem, .framer-sDBcB .framer-1f08dlt, .framer-sDBcB .framer-13lfqw7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-a289e0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-ykqhca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 96px 128px 96px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1q8he3o-container, .framer-sDBcB .framer-1n0c5tw-container, .framer-sDBcB .framer-1vtqc1e-container, .framer-sDBcB .framer-1v8h3pd-container, .framer-sDBcB .framer-45snz5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sDBcB .framer-1tl8uoq, .framer-sDBcB .framer-1euvrs5, .framer-sDBcB .framer-piw815 { --border-bottom-width: 1px; --border-color: var(--token-af40141c-bda6-499a-8008-1a7001030739, #dedede); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-5d990186-35fc-4ca8-9b62-c995d8a8e96e, #eaeaea); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 360px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-17xwzlp, .framer-sDBcB .framer-uv521s, .framer-sDBcB .framer-o0s7ok { aspect-ratio: 1.3148558758314857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 360px); max-height: 360px; overflow: visible; position: relative; width: 473px; }\",\".framer-sDBcB .framer-msoepv, .framer-sDBcB .framer-65jtcu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 96px 128px 96px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-1ygsz54 { align-content: center; align-items: center; background-color: var(--token-3d74d774-f764-4d22-bbdf-6b79ea14638f, #06413a); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 128px 96px 128px 96px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-kl6n11 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-sDBcB .framer-1ybl1h1, .framer-sDBcB .framer-oe8sis, .framer-sDBcB .framer-302xg3, .framer-sDBcB .framer-qq2i9k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1yen7tk, .framer-sDBcB .framer-em665j, .framer-sDBcB .framer-1xhcncv, .framer-sDBcB .framer-1o4ya8d, .framer-sDBcB .framer-6dcjf7 { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sDBcB .framer-1vptpj7, .framer-sDBcB .framer-1rc4c88, .framer-sDBcB .framer-1z0mbsf, .framer-sDBcB .framer-30ge4x { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sDBcB .framer-1yr8777 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-xjyolt { aspect-ratio: 1.0819952169456781 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 185px); overflow: visible; position: relative; width: 1px; }\",\".framer-sDBcB .framer-18wbpmv { aspect-ratio: 1.0809702767338571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); overflow: visible; position: relative; width: 454px; }\",\".framer-sDBcB .framer-1tgnb9i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1aw508n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 128px 96px 128px 96px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-d412d2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 128px; width: 1px; z-index: 1; }\",\".framer-sDBcB .framer-1mpqixe { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-sDBcB .framer-1f9ogdx, .framer-sDBcB .framer-3idr12, .framer-sDBcB .framer-j69akg { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sDBcB .framer-1y8oroz { align-content: flex-end; align-items: flex-end; background-color: var(--token-f435c5f2-ed17-47b2-8773-b210af02da9d, rgba(0, 76, 57, 0.15)); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-9q6xc, .framer-sDBcB .framer-1oddkpx, .framer-sDBcB .framer-1chw35h { aspect-ratio: 1.312638580931264 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 354px); overflow: visible; position: relative; width: 1px; }\",\".framer-sDBcB .framer-rkdahn { --border-bottom-width: 0px; --border-color: var(--token-5d990186-35fc-4ca8-9b62-c995d8a8e96e, #eaeaea); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 36px 48px 36px 48px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-17gmo0n-container, .framer-sDBcB .framer-1uveob-container, .framer-sDBcB .framer-1u0uqel-container, .framer-sDBcB .framer-16vmemh-container, .framer-sDBcB .framer-r9mo9d-container, .framer-sDBcB .framer-47l4xv-container, .framer-sDBcB .framer-ojt3kx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1e4jpcr { align-content: flex-start; align-items: flex-start; background-color: var(--token-f435c5f2-ed17-47b2-8773-b210af02da9d, rgba(0, 76, 57, 0.15)); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1rqidly, .framer-sDBcB .framer-wd6wht { --border-bottom-width: 0px; --border-color: var(--token-5d990186-35fc-4ca8-9b62-c995d8a8e96e, #eaeaea); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f2df68fe-66e9-4e3e-ba4b-1b0067faccef, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 36px 48px 36px 48px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-ln1mjj { align-content: flex-end; align-items: flex-end; background-color: var(--token-f435c5f2-ed17-47b2-8773-b210af02da9d, rgba(0, 76, 57, 0.15)); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1ak82ht, .framer-sDBcB .framer-wr7u18 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-tgv3sg { align-content: flex-start; align-items: flex-start; background-color: var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, #2a2e2d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 128px 96px 128px 96px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-10a97t2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-1cd0mmj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-xuf4ge, .framer-sDBcB .framer-qpfobq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-ub4pv, .framer-sDBcB .framer-uaftbp { flex: none; height: 4px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-1300jox { align-content: center; align-items: center; background-color: var(--token-6327c35c-1698-4e69-8f52-d47684f2fdae, #f2f4f3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 96px 128px 96px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-eatuqc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDBcB .framer-7no55g { 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-sDBcB .framer-14wqo9b, .framer-sDBcB .framer-s9zuew { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: flex-start; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-gedqon-container, .framer-sDBcB .framer-476rgl-container, .framer-sDBcB .framer-1kkh7hr-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-sDBcB .framer-a4fmhj { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-sDBcB .framer-dhx4gj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-sDBcB[data-border=\"true\"]::after, .framer-sDBcB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sDBcB.framer-72rtr7 { width: 810px; } .framer-sDBcB .framer-1avb9jz { height: min-content; } .framer-sDBcB .framer-yea2bj { flex: none; height: min-content; } .framer-sDBcB .framer-y9dah7 { flex-direction: column; height: min-content; } .framer-sDBcB .framer-1779a69 { align-content: center; align-items: center; flex: none; height: min-content; justify-content: flex-start; padding: 64px; width: 100%; } .framer-sDBcB .framer-1gd9pu3, .framer-sDBcB .framer-1ybl1h1 { align-content: center; align-items: center; } .framer-sDBcB.framer-hs5oun-container { height: var(--framer-aspect-ratio-supported, 113px); width: 88%; } .framer-sDBcB .framer-n2mdgz { flex: none; height: min-content; max-height: 1147px; width: 100%; } .framer-sDBcB .framer-1d0rx5a { height: 650px; justify-content: flex-end; max-width: 650px; padding: 0px; } .framer-sDBcB .framer-ykqhca, .framer-sDBcB .framer-msoepv, .framer-sDBcB .framer-65jtcu, .framer-sDBcB .framer-1ygsz54, .framer-sDBcB .framer-1aw508n, .framer-sDBcB .framer-tgv3sg { flex-direction: column; gap: 64px; padding: 96px 64px 96px 64px; } .framer-sDBcB .framer-1q8he3o-container, .framer-sDBcB .framer-1n0c5tw-container, .framer-sDBcB .framer-1mpqixe, .framer-sDBcB .framer-a4fmhj { flex: none; width: 100%; } .framer-sDBcB .framer-1tl8uoq, .framer-sDBcB .framer-1euvrs5 { flex: none; height: 520px; width: 100%; } .framer-sDBcB .framer-17xwzlp, .framer-sDBcB .framer-uv521s, .framer-sDBcB .framer-o0s7ok { height: var(--framer-aspect-ratio-supported, 520px); max-height: 520px; width: 684px; } .framer-sDBcB .framer-1vtqc1e-container, .framer-sDBcB .framer-10a97t2 { flex: none; order: 0; width: 100%; } .framer-sDBcB .framer-piw815 { flex: none; height: 520px; order: 1; width: 100%; } .framer-sDBcB .framer-kl6n11 { align-content: center; align-items: center; gap: 36px; order: 0; width: 100%; } .framer-sDBcB .framer-em665j { width: 682px; } .framer-sDBcB .framer-1yr8777, .framer-sDBcB .framer-1cd0mmj { flex: none; order: 1; width: 100%; } .framer-sDBcB .framer-xjyolt { flex: none; height: var(--framer-aspect-ratio-supported, 540px); width: 584px; } .framer-sDBcB .framer-1tgnb9i { overflow: hidden; } .framer-sDBcB .framer-d412d2 { flex: none; position: relative; top: unset; width: 100%; z-index: unset; } .framer-sDBcB .framer-9q6xc, .framer-sDBcB .framer-1oddkpx, .framer-sDBcB .framer-1chw35h { height: var(--framer-aspect-ratio-supported, 520px); } .framer-sDBcB .framer-1300jox { gap: 64px; padding: 96px 64px 96px 64px; } .framer-sDBcB .framer-eatuqc { order: 0; } .framer-sDBcB .framer-7no55g { flex-direction: column; order: 2; } .framer-sDBcB .framer-14wqo9b, .framer-sDBcB .framer-s9zuew { align-self: unset; flex: none; height: min-content; width: 100%; }}\",\"@media (max-width: 809px) { .framer-sDBcB.framer-72rtr7 { width: 390px; } .framer-sDBcB .framer-1avb9jz { height: min-content; } .framer-sDBcB .framer-yea2bj { flex: none; height: min-content; } .framer-sDBcB .framer-y9dah7 { flex-direction: column; height: min-content; } .framer-sDBcB .framer-1779a69 { align-content: center; align-items: center; flex: none; height: min-content; justify-content: flex-start; padding: 48px 24px 48px 24px; width: 100%; } .framer-sDBcB .framer-11k7tkh, .framer-sDBcB .framer-1812n9s { width: 100%; } .framer-sDBcB .framer-hy5syj { align-content: center; align-items: center; flex-direction: column; width: 100%; } .framer-sDBcB .framer-1j8spqj-container, .framer-sDBcB .framer-1cfcvhg-container { max-width: 376px; width: 100%; } .framer-sDBcB.framer-hs5oun-container { height: var(--framer-aspect-ratio-supported, 113px); width: 87%; } .framer-sDBcB .framer-n2mdgz { flex: none; height: min-content; width: 100%; } .framer-sDBcB .framer-1d0rx5a { aspect-ratio: 0.9285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 420px); justify-content: flex-start; max-width: 540px; } .framer-sDBcB .framer-ykqhca, .framer-sDBcB .framer-msoepv, .framer-sDBcB .framer-65jtcu, .framer-sDBcB .framer-1ygsz54, .framer-sDBcB .framer-1aw508n, .framer-sDBcB .framer-tgv3sg { flex-direction: column; gap: 48px; padding: 64px 24px 64px 24px; } .framer-sDBcB .framer-1q8he3o-container, .framer-sDBcB .framer-1n0c5tw-container, .framer-sDBcB .framer-1vtqc1e-container, .framer-sDBcB .framer-1mpqixe { flex: none; width: 100%; } .framer-sDBcB .framer-1tl8uoq, .framer-sDBcB .framer-1euvrs5, .framer-sDBcB .framer-piw815 { flex: none; height: 320px; width: 100%; } .framer-sDBcB .framer-17xwzlp, .framer-sDBcB .framer-uv521s, .framer-sDBcB .framer-o0s7ok { height: var(--framer-aspect-ratio-supported, 320px); max-height: 320px; width: 421px; } .framer-sDBcB .framer-kl6n11 { gap: 24px; order: 0; width: 100%; } .framer-sDBcB .framer-1yr8777 { flex: none; order: 1; width: 100%; } .framer-sDBcB .framer-xjyolt { height: var(--framer-aspect-ratio-supported, 316px); max-width: 440px; } .framer-sDBcB .framer-1tgnb9i { overflow: hidden; } .framer-sDBcB .framer-d412d2 { flex: none; position: relative; top: unset; width: 100%; z-index: unset; } .framer-sDBcB .framer-9q6xc, .framer-sDBcB .framer-1oddkpx, .framer-sDBcB .framer-1chw35h { height: var(--framer-aspect-ratio-supported, 261px); } .framer-sDBcB .framer-rkdahn, .framer-sDBcB .framer-1rqidly, .framer-sDBcB .framer-wd6wht { padding: 24px; } .framer-sDBcB .framer-10a97t2 { flex: none; order: 0; width: 100%; } .framer-sDBcB .framer-1cd0mmj { flex: none; gap: 24px; order: 1; width: 100%; } .framer-sDBcB .framer-1300jox { gap: 48px; padding: 64px 24px 64px 24px; } .framer-sDBcB .framer-7no55g { flex-direction: column; } .framer-sDBcB .framer-14wqo9b, .framer-sDBcB .framer-s9zuew { align-self: unset; flex: none; gap: 32px; height: min-content; padding: 24px; width: 100%; } .framer-sDBcB .framer-gedqon-container, .framer-sDBcB .framer-476rgl-container, .framer-sDBcB .framer-1kkh7hr-container { height: 24px; width: 24px; } .framer-sDBcB .framer-a4fmhj { flex: none; gap: 32px; padding: 24px; width: 100%; }}\",\"@media (min-width: 1536px) and (max-width: 1919px) { .framer-sDBcB.framer-72rtr7 { width: 1536px; } .framer-sDBcB .framer-nyo31g-container { order: 0; } .framer-sDBcB .framer-1ktu505-container { order: 1; } .framer-sDBcB .framer-1avb9jz { height: 90vh; order: 2; } .framer-sDBcB .framer-1779a69 { flex: none; order: 0; width: 50%; } .framer-sDBcB .framer-n2mdgz { flex: none; order: 1; width: 50%; } .framer-sDBcB .framer-c7esyi { order: 3; } .framer-sDBcB .framer-1tl8uoq, .framer-sDBcB .framer-1euvrs5, .framer-sDBcB .framer-piw815 { height: 480px; } .framer-sDBcB .framer-17xwzlp, .framer-sDBcB .framer-uv521s, .framer-sDBcB .framer-o0s7ok { height: var(--framer-aspect-ratio-supported, 480px); max-height: 480px; width: 631px; } .framer-sDBcB .framer-siblem { order: 4; } .framer-sDBcB .framer-1f08dlt { order: 5; } .framer-sDBcB .framer-13lfqw7 { order: 6; } .framer-sDBcB .framer-1ygsz54, .framer-sDBcB .framer-1aw508n { gap: 96px; } .framer-sDBcB .framer-18wbpmv { height: var(--framer-aspect-ratio-supported, 520px); width: 562px; } .framer-sDBcB .framer-1tgnb9i { order: 7; } .framer-sDBcB .framer-9q6xc, .framer-sDBcB .framer-1oddkpx { height: var(--framer-aspect-ratio-supported, 476px); } .framer-sDBcB .framer-1chw35h { height: var(--framer-aspect-ratio-supported, 475px); } .framer-sDBcB .framer-1ak82ht { order: 8; } .framer-sDBcB .framer-wr7u18 { order: 9; } .framer-sDBcB .framer-dhx4gj-container { order: 10; }}\",\"@media (min-width: 1920px) { .framer-sDBcB.framer-72rtr7 { width: 1920px; } .framer-sDBcB .framer-1avb9jz { height: 90vh; } .framer-sDBcB .framer-yea2bj { align-content: center; align-items: center; background-color: var(--token-5d990186-35fc-4ca8-9b62-c995d8a8e96e, #e6ebe9); } .framer-sDBcB .framer-y9dah7 { max-width: 1920px; } .framer-sDBcB .framer-1779a69 { flex: none; order: 0; padding: 0px 128px 0px 128px; width: 50%; } .framer-sDBcB .framer-11k7tkh, .framer-sDBcB .framer-1812n9s { width: 528px; } .framer-sDBcB .framer-n2mdgz { flex: none; order: 1; width: 50%; } .framer-sDBcB .framer-1d0rx5a { aspect-ratio: 1.5686274509803921 / 1; flex: none; width: var(--framer-aspect-ratio-supported, 314px); } .framer-sDBcB .framer-ykqhca, .framer-sDBcB .framer-msoepv, .framer-sDBcB .framer-65jtcu, .framer-sDBcB .framer-1ygsz54 { gap: 128px; max-width: 1920px; padding: 128px; } .framer-sDBcB .framer-1tl8uoq, .framer-sDBcB .framer-1euvrs5, .framer-sDBcB .framer-piw815 { height: 520px; } .framer-sDBcB .framer-17xwzlp, .framer-sDBcB .framer-uv521s, .framer-sDBcB .framer-o0s7ok { height: var(--framer-aspect-ratio-supported, 520px); max-height: 520px; width: 684px; } .framer-sDBcB .framer-13lfqw7 { background-color: var(--token-3d74d774-f764-4d22-bbdf-6b79ea14638f, #024b3f); } .framer-sDBcB .framer-kl6n11 { width: 768px; } .framer-sDBcB .framer-1yr8777 { flex: none; width: 768px; } .framer-sDBcB .framer-18wbpmv { height: var(--framer-aspect-ratio-supported, 560px); width: 605px; } .framer-sDBcB .framer-1tgnb9i { flex-direction: row; } .framer-sDBcB .framer-1aw508n, .framer-sDBcB .framer-tgv3sg { flex: 1 0 0px; gap: 128px; max-width: 1920px; padding: 128px; width: 1px; } .framer-sDBcB .framer-9q6xc, .framer-sDBcB .framer-1oddkpx, .framer-sDBcB .framer-1chw35h { height: var(--framer-aspect-ratio-supported, 152px); } .framer-sDBcB .framer-1ak82ht { background-color: var(--token-3ab8b6c3-c457-47df-8ba3-1325d55cda39, #1a2322); flex-direction: row; } .framer-sDBcB .framer-wr7u18 { background-color: var(--token-6327c35c-1698-4e69-8f52-d47684f2fdae, #f2f4f3); flex-direction: row; } .framer-sDBcB .framer-1300jox { flex: 1 0 0px; max-width: 1920px; overflow: visible; padding: 128px; width: 1px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8385.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"J_Hk29iZH\":{\"layout\":[\"fixed\",\"auto\"]},\"Nq12D7ztP\":{\"layout\":[\"fixed\",\"auto\"]},\"hg8AfwS75\":{\"layout\":[\"fixed\",\"auto\"]},\"yz7iuRaWl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerTrackingIds [{\"id\":\"talk-to-us\"}]\n * @framerScrollSections {\"fQs299UNJ\":{\"pattern\":\":fQs299UNJ\",\"name\":\"solutions\"},\"HW6PDrHn6\":{\"pattern\":\":HW6PDrHn6\",\"name\":\"integrations\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-sDBcB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8385.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"GothamSSm Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/7Zjwki38Ix95QQxpsdPLrw0z7M.woff2\"},{family:\"GothamSSm Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/TwHBta5VLDZuO1JUeMulwMxzE.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...HeaderFonts,...ButtonRoundedFonts,...YouTubeFonts,...H2TitleFonts,...ListItemFonts,...PhosphorFonts,...FooterSectionFonts,...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\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"talk-to-us\\\"}]\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"fQs299UNJ\\\":{\\\"pattern\\\":\\\":fQs299UNJ\\\",\\\"name\\\":\\\"solutions\\\"},\\\"HW6PDrHn6\\\":{\\\"pattern\\\":\\\":HW6PDrHn6\\\",\\\"name\\\":\\\"integrations\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"8385.5\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J_Hk29iZH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nq12D7ztP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hg8AfwS75\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yz7iuRaWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "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", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "SmoothScrollFonts", "getFonts", "SmoothScroll", "HeaderFonts", "PtzD4Oofj_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "ButtonRoundedFonts", "rCuohR1gT_default", "YouTubeFonts", "Youtube", "ImageWithFX", "Image2", "H2TitleFonts", "MXGzajPp2_default", "ContainerWithFX", "Container", "ListItemFonts", "rR1f4HeSN_default", "PhosphorFonts", "Icon", "FooterSectionFonts", "gGuaDjuEG_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation2", "animation3", "transition3", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "VXcAmq9JS3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "router", "useRouter", "elementId", "useRouteElementId", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "l", "AnimatePresence", "Ga", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
