{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/Mr50DOjxFvqI2gbFYjUU/xTi5fBmqoeMCRODWLABK/dcY4qNRJN.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import Footer from\"#framer/local/canvasComponent/ai5_pzl9A/ai5_pzl9A.js\";import Navigation from\"#framer/local/canvasComponent/vOAfNpZDa/vOAfNpZDa.js\";import Accordion from\"#framer/local/canvasComponent/W11my1gf6/W11my1gf6.js\";import{withoutFramerBadge}from\"#framer/local/codeFile/TAmrfKJ/WithCSS.js\";import*as sharedStyle3 from\"#framer/local/css/IZwbh7ta0/IZwbh7ta0.js\";import*as sharedStyle2 from\"#framer/local/css/k_AhShpKr/k_AhShpKr.js\";import*as sharedStyle from\"#framer/local/css/M3JjKOTa6/M3JjKOTa6.js\";import*as sharedStyle4 from\"#framer/local/css/m94FkyF83/m94FkyF83.js\";import*as sharedStyle5 from\"#framer/local/css/Tiz0tLY7y/Tiz0tLY7y.js\";import*as sharedStyle1 from\"#framer/local/css/W79aj0gT2/W79aj0gT2.js\";import*as sharedStyle6 from\"#framer/local/css/z4PYCMEIg/z4PYCMEIg.js\";import metadataProvider from\"#framer/local/webPageMetadata/dcY4qNRJN/dcY4qNRJN.js\";const NavigationFonts=getFonts(Navigation);const TickerFonts=getFonts(Ticker);const EmbedFonts=getFonts(Embed);const AccordionFonts=getFonts(Accordion);const ContainerWithFX=withFX(Container);const FooterFonts=getFonts(Footer);const MotionDivWithoutFramerBadgeichzfp=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XIaiWVSXx\",override:withoutFramerBadge,scopeId:\"dcY4qNRJN\"});const breakpoints={ABmK8osNc:\"(min-width: 810px) and (max-width: 1199px)\",gi02ESiX7:\"(min-width: 1964px)\",vW6Sa5jga:\"(max-width: 809px)\",XIaiWVSXx:\"(min-width: 1200px) and (max-width: 1963px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-p5iH8\";const variantClassNames={ABmK8osNc:\"framer-v-9t4tjm\",gi02ESiX7:\"framer-v-1szztd7\",vW6Sa5jga:\"framer-v-1dga94s\",XIaiWVSXx:\"framer-v-ichzfp\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={backgroundColor:\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const transition2={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation1={backgroundColor:\"rgba(237, 247, 246, 0.51)\",boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.13), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.13)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:80,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"XIaiWVSXx\",Macbook:\"gi02ESiX7\",Phone:\"vW6Sa5jga\",Tablet:\"ABmK8osNc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XIaiWVSXx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"gi02ESiX7\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"gi02ESiX7\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"vW6Sa5jga\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"vW6Sa5jga\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"XIaiWVSXx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(MotionDivWithoutFramerBadgeichzfp,{...restProps,className:cx(scopingClassNames,\"framer-ichzfp\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ena6r5\",\"data-framer-name\":\"abovethefold\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v2s7pq-container\",nodeId:\"MCZdArY_1\",rendersWithMotion:true,scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vW6Sa5jga:{variant:\"cGgWbayTE\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"MCZdArY_1\",layoutId:\"MCZdArY_1\",style:{width:\"100%\"},variant:\"T4CDVvT45\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d2dgyy\",\"data-framer-name\":\"display\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hjm7h8\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x10wz0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aa4ero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gi02ESiX7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:1366,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+74+0+0+0+0+0+0+23+0),pixelHeight:800,pixelWidth:2732,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.65, ${componentViewport?.width||\"100vw\"} * 10) * 0.74)`,src:\"https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=512 512w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png 2732w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:1366,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+74+0+0+0+0+0+0+23+0),pixelHeight:800,pixelWidth:2732,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, ${componentViewport?.width||\"100vw\"} * 10) * 0.74)`,src:\"https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=512 512w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png 2732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:1366,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+74+0+0+0+0+0+0+23+0),pixelHeight:800,pixelWidth:2732,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.8, ${componentViewport?.width||\"100vw\"} * 10) * 0.74)`,src:\"https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=512 512w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T2mI61pFGaOTMaCVp8CLNjN0H8.png 2732w\"},className:\"framer-r32xmn\",\"data-framer-name\":\"Att-tomorrow\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rmegch\",\"data-styles-preset\":\"M3JjKOTa6\",style:{\"--framer-text-color\":\"var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, rgb(26, 97, 99))\"},children:[\"Doctors Have Medical Teams,\",/*#__PURE__*/_jsx(\"br\",{}),\"Credit Unions Have \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-12b7afe9-8b9d-4941-8652-3ec28eba163a, rgb(225, 114, 8))\"},children:[\"Attune\",/*#__PURE__*/_jsx(\"em\",{children:\" \"})]}),\"for\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Financial Mission and Margin\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"br\",{})})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rmegch\",\"data-styles-preset\":\"M3JjKOTa6\",style:{\"--framer-text-color\":\"var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, rgb(26, 97, 99))\"},children:[\"Doctors Have Medical Teams,\",/*#__PURE__*/_jsx(\"br\",{}),\"Credit Unions Have \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-12b7afe9-8b9d-4941-8652-3ec28eba163a, rgb(225, 114, 8))\"},children:[\"Attune\",/*#__PURE__*/_jsx(\"em\",{children:\" \"})]}),\"for\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:/*#__PURE__*/_jsxs(\"em\",{children:[\"Financial Mission and Margin\",/*#__PURE__*/_jsx(\"br\",{})]})})]})}),className:\"framer-4v1myl hidden-1szztd7\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rmegch\",\"data-styles-preset\":\"M3JjKOTa6\",style:{\"--framer-text-color\":\"var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, rgb(26, 97, 99))\"},children:[\"Doctors Have Medical Teams,Credit Unions Have \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-12b7afe9-8b9d-4941-8652-3ec28eba163a, rgb(225, 114, 8))\"},children:\"Attune\"}),\" for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Financial Health\"})})]})}),className:\"framer-1t6hrdj hidden-ichzfp hidden-9t4tjm hidden-1dga94s\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-unmguy\",\"data-styles-preset\":\"W79aj0gT2\",children:\"Attune empowers credit unions to transform member financial health from aspiration to measurable reality. Our proven approach gives you the tools, insights, and roadmap to assess current state, develop effective programs, and demonstrate impact\u2014helping you drive your credit union's financial health mission and margin.\"})}),className:\"framer-1avrj1n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r6x7wv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bFnB37zqL\",rendersWithMotion:true,scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:42,height:\"100%\",hoverFactor:1,id:\"bFnB37zqL\",layoutId:\"bFnB37zqL\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mayfj1\",\"data-framer-name\":\"creditunions\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:68,intrinsicWidth:263,pixelHeight:136,pixelWidth:526,sizes:\"143.4039px\",src:\"https://framerusercontent.com/images/auyLrbDQxvNaoKJXoc7fsxOlKQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/auyLrbDQxvNaoKJXoc7fsxOlKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/auyLrbDQxvNaoKJXoc7fsxOlKQ.png 526w\"},className:\"framer-a5tus9\",\"data-framer-name\":\"wpcu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:285.5,pixelHeight:90,pixelWidth:571,sizes:\"176.1465px\",src:\"https://framerusercontent.com/images/bNpJvhKGTMC6fcZESnpsYpmJrzA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bNpJvhKGTMC6fcZESnpsYpmJrzA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bNpJvhKGTMC6fcZESnpsYpmJrzA.png 571w\"},className:\"framer-grzmsx\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:450,pixelHeight:500,pixelWidth:900,sizes:\"111.0759px\",src:\"https://framerusercontent.com/images/VpWVmul3sNpQQGqh907HprztvuE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VpWVmul3sNpQQGqh907HprztvuE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VpWVmul3sNpQQGqh907HprztvuE.png 900w\"},className:\"framer-1kbqvh8\",\"data-framer-name\":\"golden1cu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:521.5,intrinsicWidth:1597.5,pixelHeight:1043,pixelWidth:3195,sizes:\"157.4957px\",src:\"https://framerusercontent.com/images/vIrJP9lbWslm20HN81uao5ngOvs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/vIrJP9lbWslm20HN81uao5ngOvs.png?scale-down-to=512 512w,https://framerusercontent.com/images/vIrJP9lbWslm20HN81uao5ngOvs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vIrJP9lbWslm20HN81uao5ngOvs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vIrJP9lbWslm20HN81uao5ngOvs.png 3195w\"},className:\"framer-lqfa0w\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:199.5,intrinsicWidth:529,pixelHeight:399,pixelWidth:1058,sizes:\"130.9701px\",src:\"https://framerusercontent.com/images/9bHxYWsJEPBtcz8BJxeHZOdl8PQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9bHxYWsJEPBtcz8BJxeHZOdl8PQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9bHxYWsJEPBtcz8BJxeHZOdl8PQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9bHxYWsJEPBtcz8BJxeHZOdl8PQ.png 1058w\"},className:\"framer-16ko2f0\",\"data-framer-name\":\"redwood\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:779,intrinsicWidth:2531,pixelHeight:779,pixelWidth:2531,sizes:\"98.2276px\",src:\"https://framerusercontent.com/images/QImVzlaMhuYFv7eHbHpFIpB51g.png\",srcSet:\"https://framerusercontent.com/images/QImVzlaMhuYFv7eHbHpFIpB51g.png?scale-down-to=512 512w,https://framerusercontent.com/images/QImVzlaMhuYFv7eHbHpFIpB51g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QImVzlaMhuYFv7eHbHpFIpB51g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QImVzlaMhuYFv7eHbHpFIpB51g.png 2531w\"},className:\"framer-ql1bjg\",\"data-framer-name\":\"becu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:523,pixelHeight:60,pixelWidth:205,src:\"https://framerusercontent.com/images/5uXC9lVg2Orf195TJTymXBEL2To.png\"},className:\"framer-ub1msh\",\"data-framer-name\":\"virginiacu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1042,intrinsicWidth:3125,pixelHeight:2084,pixelWidth:6250,sizes:\"133.4568px\",src:\"https://framerusercontent.com/images/rpnt1sQUaTRg8AG9RZFwvctk2Y.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/rpnt1sQUaTRg8AG9RZFwvctk2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rpnt1sQUaTRg8AG9RZFwvctk2Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rpnt1sQUaTRg8AG9RZFwvctk2Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rpnt1sQUaTRg8AG9RZFwvctk2Y.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/rpnt1sQUaTRg8AG9RZFwvctk2Y.png 6250w\"},className:\"framer-1h7wvqy\",\"data-framer-name\":\"trueskycu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:282,pixelHeight:144,pixelWidth:564,sizes:\"134.7002px\",src:\"https://framerusercontent.com/images/evrAzNWGfLBmzDlwo1l8omuiR4s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/evrAzNWGfLBmzDlwo1l8omuiR4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/evrAzNWGfLBmzDlwo1l8omuiR4s.png 564w\"},className:\"framer-qzkjlt\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:295.5,pixelHeight:163,pixelWidth:591,sizes:\"182.3634px\",src:\"https://framerusercontent.com/images/DSQ3CYWBnFIe7h7oT7fBJhtj1I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DSQ3CYWBnFIe7h7oT7fBJhtj1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/DSQ3CYWBnFIe7h7oT7fBJhtj1I.png 591w\"},className:\"framer-1aw8e00\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:547,pixelHeight:430,pixelWidth:1094,sizes:\"109.8325px\",src:\"https://framerusercontent.com/images/j46Umv0XKHI0nhW1FiQp8p4csM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j46Umv0XKHI0nhW1FiQp8p4csM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j46Umv0XKHI0nhW1FiQp8p4csM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j46Umv0XKHI0nhW1FiQp8p4csM.png 1094w\"},className:\"framer-1hf2mil\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:134.5,pixelHeight:100,pixelWidth:269,src:\"https://framerusercontent.com/images/8q2pTubxcLZ0Bcl0Dh9yXh8hd4I.png\"},className:\"framer-5jipub\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56.5,intrinsicWidth:223.5,pixelHeight:113,pixelWidth:447,src:\"https://framerusercontent.com/images/nJMakROie7FVOuC5NAzyl4l2ZMQ.png\"},className:\"framer-45i9k2\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53.5,intrinsicWidth:156,pixelHeight:107,pixelWidth:312,src:\"https://framerusercontent.com/images/1A7atshEXYX7qQ6Rch9vvE.png\"},className:\"framer-1bc4ca0\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:223.5,intrinsicWidth:750,pixelHeight:447,pixelWidth:1500,sizes:\"163.7126px\",src:\"https://framerusercontent.com/images/8Mt6W4xWgvrNdSTNDLP4G6RA68.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8Mt6W4xWgvrNdSTNDLP4G6RA68.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Mt6W4xWgvrNdSTNDLP4G6RA68.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Mt6W4xWgvrNdSTNDLP4G6RA68.png 1500w\"},className:\"framer-1te8ztc\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76.5,intrinsicWidth:250,pixelHeight:153,pixelWidth:500,src:\"https://framerusercontent.com/images/72c9IiNPQiFvRZYlS3qhNPLcE6I.png\"},className:\"framer-avrx9r\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:430,intrinsicWidth:600,pixelHeight:860,pixelWidth:1200,sizes:\"87.866px\",src:\"https://framerusercontent.com/images/94muV2sw3WCdfLAREZq2xvfa5P0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/94muV2sw3WCdfLAREZq2xvfa5P0.png?scale-down-to=512 512w,https://framerusercontent.com/images/94muV2sw3WCdfLAREZq2xvfa5P0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/94muV2sw3WCdfLAREZq2xvfa5P0.png 1200w\"},className:\"framer-1awezxo\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:125,intrinsicWidth:226.5,pixelHeight:250,pixelWidth:453,src:\"https://framerusercontent.com/images/AspKAGReDJJHTyyiZSUUKdBm4.png\"},className:\"framer-1o0x0wy\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:187,pixelHeight:64,pixelWidth:374,src:\"https://framerusercontent.com/images/1OZu22Ne7Vpv6yd2T1fjIv3PtY.png\"},className:\"framer-1l8be5b\",\"data-framer-name\":\"Image\"})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BKUdQbPQz\"},motionChild:true,nodeId:\"LpgIfLw6s\",scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wr9ofk framer-14u4pxk\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start Your Journey \u2192\"})}),className:\"framer-17r3wl1\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fprpbd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"n7FxZ6qxn\",rendersWithMotion:true,scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n  (function(w, d, t, h, s, n) {\\n    w.FlodeskObject = n;\\n    var fn = function() {\\n      (w[n].q = w[n].q || []).push(arguments);\\n    };\\n    w[n] = w[n] || fn;\\n    var f = d.getElementsByTagName(t)[0];\\n    var v = '?v=' + Math.floor(new Date().getTime() / (120 * 1000)) * 60;\\n    var sm = d.createElement(t);\\n    sm.async = true;\\n    sm.type = 'module';\\n    sm.src = h + s + '.mjs' + v;\\n    f.parentNode.insertBefore(sm, f);\\n    var sn = d.createElement(t);\\n    sn.async = true;\\n    sn.noModule = true;\\n    sn.src = h + s + '.js' + v;\\n    f.parentNode.insertBefore(sn, f);\\n  })(window, document, 'script', 'https://assets.flodesk.com', '/universal', 'fd');\\n</script>\\n<script>\\n  window.fd('form', {\\n    formId: '684b4b78e8cebe0b9ce98095'\\n  });\\n</script>\",id:\"n7FxZ6qxn\",layoutId:\"n7FxZ6qxn\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oa4vy9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-10a555i\",\"data-styles-preset\":\"k_AhShpKr\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Build\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(240, 158, 36)\"},children:/*#__PURE__*/_jsx(\"em\",{children:\" \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, rgb(26, 97, 99))\"},children:\"Tomorrow\u2019s Financial\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(240, 158, 36)\"},children:/*#__PURE__*/_jsx(\"em\",{children:\" \"})}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, rgb(26, 97, 99))\"},children:\"Health Ecosystem,\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(224, 132, 45)\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Today\"})})]})}),className:\"framer-1qxrcbq\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mdye5z\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bn7q3b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+786.4+62+104.4+0+0+0),pixelHeight:974,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} * 0.8 - 120px) / 3, 1px)`,src:\"https://framerusercontent.com/images/50ambTnwd46YibJ894UZqE5Ndl8.png\",srcSet:\"https://framerusercontent.com/images/50ambTnwd46YibJ894UZqE5Ndl8.png 943w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+766.4+62+104.4+0+0+0+0),pixelHeight:974,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.68)`,src:\"https://framerusercontent.com/images/50ambTnwd46YibJ894UZqE5Ndl8.png\",srcSet:\"https://framerusercontent.com/images/50ambTnwd46YibJ894UZqE5Ndl8.png 943w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+786.4+62+104.4+0+0+45.62),pixelHeight:974,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} * 0.68 - 120px) / 3, 1px)`,src:\"https://framerusercontent.com/images/50ambTnwd46YibJ894UZqE5Ndl8.png\",srcSet:\"https://framerusercontent.com/images/50ambTnwd46YibJ894UZqE5Ndl8.png 943w\"},className:\"framer-q0gbq2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sa0row\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",children:\"Measure your financial health mission, fast\"})}),className:\"framer-1ro3urq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tz9oxb\",\"data-styles-preset\":\"m94FkyF83\",children:\"No need to hire for data analysis and data science\u2014get instant ready-to-go insights.\"})}),className:\"framer-17pguy7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nvleni\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+786.4+62+104.4+0+0+0),pixelHeight:1542,pixelWidth:1045,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} * 0.8 - 120px) / 3, 1px)`,src:\"https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png\",srcSet:\"https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png?scale-down-to=1024 693w,https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png 1045w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+766.4+62+104.4+0+192.1+0+0),pixelHeight:1542,pixelWidth:1045,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.68)`,src:\"https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png\",srcSet:\"https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png?scale-down-to=1024 693w,https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png 1045w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+786.4+62+104.4+0+0+45.62),pixelHeight:1542,pixelWidth:1045,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} * 0.68 - 120px) / 3, 1px)`,src:\"https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png\",srcSet:\"https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png?scale-down-to=1024 693w,https://framerusercontent.com/images/PlJOWao4UTNWygG7EvBurzpmlgQ.png 1045w\"},className:\"framer-joaxs8\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16upu3i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",children:\"Measure your margin, too, to prove out the ROI\"})}),className:\"framer-8tll99\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1tz9oxb\",\"data-styles-preset\":\"m94FkyF83\",children:[\"Track the business case: investing in financial health is good for members \",/*#__PURE__*/_jsx(\"em\",{children:\"and \"}),\"the credit union\"]})}),className:\"framer-v05x9b\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-188moe8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+786.4+62+104.4+0+0+0),pixelHeight:1114,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} * 0.8 - 120px) / 3, 1px)`,src:\"https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png\",srcSet:\"https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png?scale-down-to=1024 866w,https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png 943w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+766.4+62+104.4+0+383.7+0+0),pixelHeight:1114,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.68)`,src:\"https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png\",srcSet:\"https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png?scale-down-to=1024 866w,https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png 943w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+786.4+62+104.4+0+0+45.62),pixelHeight:1114,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} * 0.68 - 120px) / 3, 1px)`,src:\"https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png\",srcSet:\"https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png?scale-down-to=1024 866w,https://framerusercontent.com/images/QSP4ORJYaSgF5JhKeOZJAVvGDvM.png 943w\"},className:\"framer-1n632t7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jizq0r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",children:[\"Report and win leadership \",/*#__PURE__*/_jsx(\"br\",{}),\"buy-in with ease\"]})}),className:\"framer-zw3dtk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tz9oxb\",\"data-styles-preset\":\"m94FkyF83\",children:\"Share clear, actionable insights and reports that drive confident decisions.\"})}),className:\"framer-1h46pq1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oxdnmx\",\"data-framer-name\":\"Templates\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:438.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1246.9+0+0),pixelHeight:154,pixelWidth:877,sizes:\"330px\",src:\"https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png 877w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:438.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1523.1+0+0),pixelHeight:154,pixelWidth:877,sizes:\"330px\",src:\"https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png 877w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:438.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337.8+0+0),pixelHeight:154,pixelWidth:877,sizes:\"330px\",src:\"https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/rs9w0CiL4VaLA15oaMEqDAfHXA.png 877w\"},className:\"framer-1so4emk\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bu67jh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ve1ah2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vW6Sa5jga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-10a555i\",\"data-styles-preset\":\"k_AhShpKr\",style:{\"--framer-text-color\":\"var(--token-52c1752f-81ea-4327-a6da-5be4d4ff3d81, rgb(47, 117, 120))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(230, 143, 62)\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Transform\"})}),\" \",/*#__PURE__*/_jsx(\"br\",{}),\"Your Credit Union\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-10a555i\",\"data-styles-preset\":\"k_AhShpKr\",style:{\"--framer-text-color\":\"var(--token-52c1752f-81ea-4327-a6da-5be4d4ff3d81, rgb(47, 117, 120))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(230, 143, 62)\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Transform\"})}),\" Your Credit Union\"]})}),className:\"framer-zb3e4v\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-unmguy\",\"data-styles-preset\":\"W79aj0gT2\",children:\"No matter where your credit union stands on the financial health spectrum\u2014just beginning, expanding programs, or leading the industry\u2014Attune provides the expertise and support you need to succeed.\"})}),className:\"framer-m0pvg7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j7rark\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-reqb4h\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f5y16p\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:581,intrinsicWidth:781.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1246.9+0+291.6+0+0+0+22+0),pixelHeight:1162,pixelWidth:1563,positionX:\"center\",positionY:\"center\",sizes:\"124px\",src:\"https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png 1563w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:581,intrinsicWidth:781.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1523.1+0+231.6+0+0+0+0+22+0),pixelHeight:1162,pixelWidth:1563,positionX:\"center\",positionY:\"center\",sizes:\"93.5px\",src:\"https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png 1563w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:581,intrinsicWidth:781.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337.8+0+291.6+171+0+22+0),pixelHeight:1162,pixelWidth:1563,positionX:\"center\",positionY:\"center\",sizes:\"124px\",src:\"https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbVou0MCmNmhgdP94PudSWT68BI.png 1563w\"},className:\"framer-getws2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zvnii\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:\"Assess\"})}),className:\"framer-1ytspsc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1va6ki8\",\"data-styles-preset\":\"Tiz0tLY7y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01e58039-2c93-486a-8306-417a52d54f5b, rgb(117, 117, 117))\"},children:\"Establish your goals and identify insights through our comprehensive measurement framework.\"})}),className:\"framer-1vyo5y8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13dqs4u\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:814.5,intrinsicWidth:860.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1246.9+0+291.6+0+0+0+22+0),pixelHeight:1629,pixelWidth:1721,sizes:\"105px\",src:\"https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png 1721w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:814.5,intrinsicWidth:860.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1523.1+0+231.6+0+0+0+375+22+0),pixelHeight:1629,pixelWidth:1721,sizes:\"93.5px\",src:\"https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png 1721w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:814.5,intrinsicWidth:860.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337.8+0+291.6+171+0+22+0),pixelHeight:1629,pixelWidth:1721,sizes:\"105px\",src:\"https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mW91MbzBmhJZsNbe1c9gSAiavg.png 1721w\"},className:\"framer-1xkzx8i\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ulvglf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:\"Plan\"})}),className:\"framer-aam7go\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1va6ki8\",\"data-styles-preset\":\"Tiz0tLY7y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01e58039-2c93-486a-8306-417a52d54f5b, rgb(117, 117, 117))\"},children:\"Develop a customized roadmap aligned with your credit union\u2019s unique mission and member needs.\"})}),className:\"framer-r8lczq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ovhgr4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h3hjwg\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:923.5,intrinsicWidth:867,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1246.9+0+291.6+0+22+0+22+0),pixelHeight:1847,pixelWidth:1734,sizes:\"130.9px\",src:\"https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png?scale-down-to=1024 961w,https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png 1734w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:923.5,intrinsicWidth:867,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1523.1+0+231.6+0+711+0+0+22+0),pixelHeight:1847,pixelWidth:1734,sizes:\"93.5px\",src:\"https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png?scale-down-to=1024 961w,https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png 1734w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:923.5,intrinsicWidth:867,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337.8+0+291.6+0+0+22+0),pixelHeight:1847,pixelWidth:1734,sizes:\"130.9px\",src:\"https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png?scale-down-to=1024 961w,https://framerusercontent.com/images/hxoXAh59khATbDQA7DMfcnhSgs.png 1734w\"},className:\"framer-wvhqqj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vhz6nt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:\"Develop\"})}),className:\"framer-ofqgfc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1va6ki8\",\"data-styles-preset\":\"Tiz0tLY7y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01e58039-2c93-486a-8306-417a52d54f5b, rgb(117, 117, 117))\"},children:\"Implement proven strategies and programs that make financial health an integral part of your operations.\"})}),className:\"framer-o6avfq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r5aomo\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:838,intrinsicWidth:1057,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1246.9+0+291.6+0+22+0+22+0),pixelHeight:1676,pixelWidth:2114,sizes:\"145.86px\",src:\"https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png 2114w\"}},vW6Sa5jga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:838,intrinsicWidth:1057,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1523.1+0+231.6+0+711+0+402+22+0),pixelHeight:1676,pixelWidth:2114,sizes:\"93.5px\",src:\"https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png 2114w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:838,intrinsicWidth:1057,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337.8+0+291.6+0+0+22+0),pixelHeight:1676,pixelWidth:2114,sizes:\"145.86px\",src:\"https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oqiXAACH9hBPH6CJv8p33wxSE.png 2114w\"},className:\"framer-tiujqn\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r7el0v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vu50i6\",\"data-styles-preset\":\"IZwbh7ta0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-71b95732-3156-453c-a663-0a03a8f5b1a2, rgb(46, 140, 143))\"},children:\"Measure\"})}),className:\"framer-m36moh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vW6Sa5jga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1va6ki8\",\"data-styles-preset\":\"Tiz0tLY7y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01e58039-2c93-486a-8306-417a52d54f5b, rgb(117, 117, 117))\"},children:\"Track your impact with data-driven insights that demonstrate real results for your members.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1va6ki8\",\"data-styles-preset\":\"Tiz0tLY7y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01e58039-2c93-486a-8306-417a52d54f5b, rgb(117, 117, 117))\"},children:\"Track your mission and margin impact with data-driven insights that demonstrate real results for your members.\"})}),className:\"framer-b23k1n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jshor99h7\"},motionChild:true,nodeId:\"PUPYyLpZ_\",openInNewTab:false,scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-187d43j framer-14u4pxk\",\"data-framer-name\":\"CTA_solution\",\"data-reset\":\"button\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See How It Works \u2192\"})}),className:\"framer-zuoawm\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-weyvo3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-63e5ta\",\"data-styles-preset\":\"z4PYCMEIg\",style:{\"--framer-text-color\":\"var(--token-3f88b55b-4a03-436d-bd4f-c489e5e9743b, rgb(98, 161, 159))\"},children:\"Frequently Asked Questions\"})}),className:\"framer-1stg3hn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{y:(componentViewport?.y||0)+0+1734.5+42+92.6},vW6Sa5jga:{y:(componentViewport?.y||0)+0+4064.7+42+87.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:`calc(${componentViewport?.width||\"100vw\"} * 0.85)`,y:(componentViewport?.y||0)+0+2145.4+42+92.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qzqn1o-container\",nodeId:\"ke6yvLmEr\",rendersWithMotion:true,scopeId:\"dcY4qNRJN\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"ke6yvLmEr\",layoutId:\"ke6yvLmEr\",style:{width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{y:(componentViewport?.y||0)+0+2443.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:621,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2854,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c47a90-container hidden-1dga94s\",nodeId:\"vuuBPKSPP\",rendersWithMotion:true,scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ABmK8osNc:{variant:\"jqlz4f8AT\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",HtM_nMymA:\"If financial health is the journey you want to be on, Attune will get you there\",id:\"vuuBPKSPP\",layoutId:\"vuuBPKSPP\",style:{width:\"100%\"},variant:\"dS74ZsC_L\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vW6Sa5jga:{height:621,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4790.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbm49a-container hidden-ichzfp hidden-9t4tjm hidden-1szztd7\",nodeId:\"WPKORpbof\",rendersWithMotion:true,scopeId:\"dcY4qNRJN\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",HtM_nMymA:\"If financial health is the journey you want to be on, Attune will get you there\",id:\"WPKORpbof\",layoutId:\"WPKORpbof\",style:{width:\"100%\"},variant:\"KeNle7tQQ\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p5iH8.framer-14u4pxk, .framer-p5iH8 .framer-14u4pxk { display: block; }\",\".framer-p5iH8.framer-ichzfp { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-p5iH8 .framer-1ena6r5 { align-content: center; align-items: center; background-color: #fff6e7; border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-p5iH8 .framer-v2s7pq-container, .framer-p5iH8 .framer-1c47a90-container, .framer-p5iH8 .framer-qbm49a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-d2dgyy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 42px 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-1hjm7h8, .framer-p5iH8 .framer-1ve1ah2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-1x10wz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 1000%; padding: 0px; position: relative; width: 80%; }\",\".framer-p5iH8 .framer-aa4ero { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 23px 0px 23px 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-r32xmn { aspect-ratio: 3.415 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 208px); overflow: visible; position: relative; width: 74%; }\",\".framer-p5iH8 .framer-4v1myl, .framer-p5iH8 .framer-1t6hrdj, .framer-p5iH8 .framer-1qxrcbq, .framer-p5iH8 .framer-1ro3urq, .framer-p5iH8 .framer-8tll99, .framer-p5iH8 .framer-zw3dtk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p5iH8 .framer-1avrj1n, .framer-p5iH8 .framer-17pguy7, .framer-p5iH8 .framer-v05x9b, .framer-p5iH8 .framer-1h46pq1, .framer-p5iH8 .framer-m0pvg7, .framer-p5iH8 .framer-1ytspsc, .framer-p5iH8 .framer-1vyo5y8, .framer-p5iH8 .framer-aam7go, .framer-p5iH8 .framer-r8lczq, .framer-p5iH8 .framer-ofqgfc, .framer-p5iH8 .framer-o6avfq, .framer-p5iH8 .framer-m36moh, .framer-p5iH8 .framer-b23k1n { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p5iH8 .framer-1r6x7wv-container { flex: none; height: 87px; position: relative; width: 85%; }\",\".framer-p5iH8 .framer-mayfj1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-p5iH8 .framer-a5tus9 { aspect-ratio: 3.8676470588235294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 143px; }\",\".framer-p5iH8 .framer-grzmsx { aspect-ratio: 6.344444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 176px; }\",\".framer-p5iH8 .framer-1kbqvh8 { aspect-ratio: 1.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 111px; }\",\".framer-p5iH8 .framer-lqfa0w { aspect-ratio: 3.0632790028763184 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 157px; }\",\".framer-p5iH8 .framer-16ko2f0 { flex: none; height: 41px; overflow: visible; position: relative; width: 131px; }\",\".framer-p5iH8 .framer-ql1bjg { aspect-ratio: 3.2490372272143775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 98px; }\",\".framer-p5iH8 .framer-ub1msh { aspect-ratio: 4.648888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 148px; }\",\".framer-p5iH8 .framer-1h7wvqy { flex: none; height: 46px; overflow: visible; position: relative; width: 133px; }\",\".framer-p5iH8 .framer-qzkjlt { aspect-ratio: 3.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 135px; }\",\".framer-p5iH8 .framer-1aw8e00 { aspect-ratio: 3.625766871165644 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 182px; }\",\".framer-p5iH8 .framer-1hf2mil { aspect-ratio: 2.5441860465116277 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 110px; }\",\".framer-p5iH8 .framer-5jipub { aspect-ratio: 2.69 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 125px; }\",\".framer-p5iH8 .framer-45i9k2 { aspect-ratio: 3.9557522123893807 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 138px; }\",\".framer-p5iH8 .framer-1bc4ca0 { aspect-ratio: 2.9158878504672896 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 154px; }\",\".framer-p5iH8 .framer-1te8ztc { aspect-ratio: 3.3557046979865772 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 164px; }\",\".framer-p5iH8 .framer-avrx9r { aspect-ratio: 3.2679738562091503 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 155px; }\",\".framer-p5iH8 .framer-1awezxo { aspect-ratio: 1.3953488372093024 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 88px; }\",\".framer-p5iH8 .framer-1o0x0wy { aspect-ratio: 1.812 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 159px; }\",\".framer-p5iH8 .framer-1l8be5b { aspect-ratio: 5.84375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 210px; }\",\".framer-p5iH8 .framer-wr9ofk { align-content: center; align-items: center; background-color: var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, #1a6163); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px 22px 0px 22px; position: relative; text-decoration: none; width: 24%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-p5iH8 .framer-17r3wl1, .framer-p5iH8 .framer-zuoawm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p5iH8 .framer-fprpbd-container { bottom: 3px; flex: none; height: 467px; position: fixed; right: 0px; width: 600px; z-index: 1; }\",\".framer-p5iH8 .framer-oa4vy9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 62px 0px 0px 0px; position: relative; width: 80%; }\",\".framer-p5iH8 .framer-1mdye5z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 85%; }\",\".framer-p5iH8 .framer-bn7q3b, .framer-p5iH8 .framer-1nvleni, .framer-p5iH8 .framer-188moe8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 323px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p5iH8 .framer-q0gbq2, .framer-p5iH8 .framer-joaxs8, .framer-p5iH8 .framer-1n632t7 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 42%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-p5iH8 .framer-sa0row, .framer-p5iH8 .framer-16upu3i, .framer-p5iH8 .framer-jizq0r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-oxdnmx { align-content: center; align-items: center; background-color: #ffffff; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 85%; will-change: var(--framer-will-change-override, transform); }\",\".framer-p5iH8 .framer-1so4emk { aspect-ratio: 5.694805194805195 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 330px; }\",\".framer-p5iH8 .framer-1bu67jh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-zb3e4v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p5iH8 .framer-1j7rark { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-reqb4h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-p5iH8 .framer-1f5y16p, .framer-p5iH8 .framer-13dqs4u { --border-bottom-width: 1px; --border-color: rgba(46, 140, 143, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 22px; position: relative; width: 231px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-p5iH8 .framer-getws2 { aspect-ratio: 0.8864265927977839 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 140px); overflow: visible; position: relative; width: 66%; }\",\".framer-p5iH8 .framer-zvnii, .framer-p5iH8 .framer-1ulvglf, .framer-p5iH8 .framer-vhz6nt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 187px; }\",\".framer-p5iH8 .framer-1xkzx8i { aspect-ratio: 1.0564763658686311 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); overflow: visible; position: relative; width: 56%; }\",\".framer-p5iH8 .framer-ovhgr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: 342px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-p5iH8 .framer-1h3hjwg, .framer-p5iH8 .framer-1r5aomo { --border-bottom-width: 1px; --border-color: rgba(46, 140, 143, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 22px; position: relative; width: 231px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-p5iH8 .framer-wvhqqj { aspect-ratio: 0.9388197076340011 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); overflow: visible; position: relative; width: 70%; }\",\".framer-p5iH8 .framer-tiujqn { aspect-ratio: 1.2613365155131264 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 116px); overflow: visible; position: relative; width: 78%; }\",\".framer-p5iH8 .framer-r7el0v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-187d43j { align-content: center; align-items: center; background-color: var(--token-464d143d-40d7-496e-8fb4-88d828c73bf6, #1a6163); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px 22px 0px 22px; position: relative; text-decoration: none; width: 30%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-p5iH8 .framer-weyvo3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 42px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-p5iH8 .framer-1stg3hn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-p5iH8 .framer-qzqn1o-container { flex: none; height: auto; position: relative; width: 85%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-p5iH8[data-border=\"true\"]::after, .framer-p5iH8 [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-p5iH8.framer-ichzfp { width: 810px; } .framer-p5iH8 .framer-r32xmn { height: var(--framer-aspect-ratio-supported, 140px); } .framer-p5iH8 .framer-4v1myl { width: 90%; } .framer-p5iH8 .framer-fprpbd-container { bottom: unset; left: calc(50.00000000000002% - 600px / 2); right: unset; top: calc(49.53703703703706% - 467px / 2); } .framer-p5iH8 .framer-1mdye5z { width: 100%; } .framer-p5iH8 .framer-bn7q3b, .framer-p5iH8 .framer-1nvleni, .framer-p5iH8 .framer-188moe8 { height: min-content; } .framer-p5iH8 .framer-q0gbq2, .framer-p5iH8 .framer-joaxs8, .framer-p5iH8 .framer-1n632t7 { height: 136px; } .framer-p5iH8 .framer-1j7rark { flex-direction: column; } .framer-p5iH8 .framer-reqb4h { gap: 32px; justify-content: center; width: 100%; } .framer-p5iH8 .framer-ovhgr4 { gap: 32px; height: min-content; justify-content: center; width: 100%; } .framer-p5iH8 .framer-1h3hjwg, .framer-p5iH8 .framer-1r5aomo { align-self: stretch; height: auto; } .framer-p5iH8 .framer-187d43j { width: 40%; }}\",\"@media (max-width: 809px) { .framer-p5iH8.framer-ichzfp { gap: 42px; width: 390px; } .framer-p5iH8 .framer-1ena6r5, .framer-p5iH8 .framer-1qxrcbq { order: 0; } .framer-p5iH8 .framer-1x10wz0 { width: 90%; } .framer-p5iH8 .framer-r32xmn { height: var(--framer-aspect-ratio-supported, 76px); } .framer-p5iH8 .framer-wr9ofk, .framer-p5iH8 .framer-187d43j { width: 80%; } .framer-p5iH8 .framer-fprpbd-container { bottom: unset; height: 524px; left: calc(52.05128205128208% - 277px / 2); order: 1; right: unset; top: calc(50.71090047393368% - 524px / 2); width: 277px; } .framer-p5iH8 .framer-oa4vy9 { order: 2; } .framer-p5iH8 .framer-1mdye5z { flex-direction: column; gap: 32px; order: 1; } .framer-p5iH8 .framer-bn7q3b, .framer-p5iH8 .framer-1nvleni, .framer-p5iH8 .framer-188moe8 { flex: none; height: min-content; width: 100%; } .framer-p5iH8 .framer-q0gbq2, .framer-p5iH8 .framer-joaxs8 { height: 72px; } .framer-p5iH8 .framer-sa0row, .framer-p5iH8 .framer-16upu3i, .framer-p5iH8 .framer-jizq0r { gap: 12px; } .framer-p5iH8 .framer-1n632t7 { height: 77px; } .framer-p5iH8 .framer-oxdnmx { gap: 32px; order: 4; } .framer-p5iH8 .framer-1j7rark { flex-direction: column; } .framer-p5iH8 .framer-reqb4h { flex-direction: column; gap: 32px; justify-content: center; width: 100%; } .framer-p5iH8 .framer-1f5y16p { align-self: unset; gap: 0px; height: min-content; justify-content: flex-start; } .framer-p5iH8 .framer-getws2 { height: var(--framer-aspect-ratio-supported, 105px); width: 50%; } .framer-p5iH8 .framer-13dqs4u { align-self: unset; gap: 12px; height: min-content; justify-content: flex-start; } .framer-p5iH8 .framer-1xkzx8i { height: var(--framer-aspect-ratio-supported, 89px); width: 50%; } .framer-p5iH8 .framer-ovhgr4 { flex-direction: column; gap: 32px; height: min-content; justify-content: center; width: 100%; } .framer-p5iH8 .framer-1h3hjwg { gap: 12px; height: min-content; justify-content: flex-start; } .framer-p5iH8 .framer-wvhqqj { height: var(--framer-aspect-ratio-supported, 100px); width: 50%; } .framer-p5iH8 .framer-1r5aomo { gap: 32px; height: min-content; justify-content: flex-start; } .framer-p5iH8 .framer-tiujqn { height: var(--framer-aspect-ratio-supported, 74px); width: 50%; } .framer-p5iH8 .framer-weyvo3 { gap: 37px; justify-content: flex-start; order: 6; padding: 42px 0px 42px 0px; } .framer-p5iH8 .framer-qbm49a-container { order: 8; }}\",\"@media (min-width: 1964px) { .framer-p5iH8.framer-ichzfp { width: 1964px; } .framer-p5iH8 .framer-1x10wz0 { width: 65%; } .framer-p5iH8 .framer-r32xmn { height: var(--framer-aspect-ratio-supported, 277px); } .framer-p5iH8 .framer-wr9ofk { width: 18%; } .framer-p5iH8 .framer-fprpbd-container { bottom: -8px; right: 0px; } .framer-p5iH8 .framer-1bu67jh { width: 80%; } .framer-p5iH8 .framer-m0pvg7 { width: 70%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3722.25\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ABmK8osNc\":{\"layout\":[\"fixed\",\"auto\"]},\"vW6Sa5jga\":{\"layout\":[\"fixed\",\"auto\"]},\"gi02ESiX7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerdcY4qNRJN=withCSS(Component,css,\"framer-p5iH8\");export default FramerdcY4qNRJN;FramerdcY4qNRJN.displayName=\"Home\";FramerdcY4qNRJN.defaultProps={height:3722.25,width:1200};addFonts(FramerdcY4qNRJN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavigationFonts,...TickerFonts,...EmbedFonts,...AccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdcY4qNRJN\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"3722.25\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ABmK8osNc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vW6Sa5jga\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gi02ESiX7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavigationFonts", "getFonts", "vOAfNpZDa_default", "TickerFonts", "Ticker", "EmbedFonts", "Embed", "AccordionFonts", "W11my1gf6_default", "ContainerWithFX", "withFX", "Container", "FooterFonts", "ai5_pzl9A_default", "MotionDivWithoutFramerBadgeichzfp", "withCodeBoundaryForOverrides", "motion", "withoutFramerBadge", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText", "Link", "css", "FramerdcY4qNRJN", "withCSS", "dcY4qNRJN_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
