{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/g21Hb64qDJwkel1M6hPO/Ai7GpQXyYpb0j0L8Pfg8/Responsive_wrapper_HS.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/tPTOOnrnAI7DdmcvN38G/VvfuER27C960CQIxmySh/h_NJdonIk.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";export function ResponsiveContainer(props){return{style:{...props.style,width:\"100%\",maxWidth:\"600px\",margin:\"0 auto\",overflow:\"hidden\"}};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withResponsiveContainer(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ResponsiveContainer(props)});};}withResponsiveContainer.displayName=\"ResponsiveContainer\";\nexport const __FramerMetadata__ = {\"exports\":{\"withResponsiveContainer\":{\"type\":\"reactHoc\",\"name\":\"withResponsiveContainer\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ResponsiveContainer\":{\"type\":\"override\",\"name\":\"ResponsiveContainer\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Responsive_wrapper_HS.map", "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,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,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\";}}});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,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},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(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_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===null||iframeWindow===void 0?void 0:iframeWindow.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                min-height: 100vh;\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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import HubSpotForm from\"https://framerusercontent.com/modules/e40uXZbiDF4v3OxInDmN/HnmiRf1QhOLZJFamt6CP/HubSpot_Form.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{withResponsiveContainer}from\"https://framerusercontent.com/modules/g21Hb64qDJwkel1M6hPO/Ai7GpQXyYpb0j0L8Pfg8/Responsive_wrapper_HS.js\";import*as componentPresets from\"https://framerusercontent.com/modules/nZ4xVsA7NIj65xPVkCj7/1fA1k7PLLA9tKSdD8O60/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/ienMKaJfHmy2o15P8ElQ/31owDnPZQC6slCzn6pJB/ap80R2Lb8.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/kobDgBm2lSLKQfwXR4m7/5Muss0PcbW8FlloxOHUH/BfxiPTkFg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/UC3HsI1p05sjMJN8l012/B17r3GGh1KOrz3bDjOWM/E6f9AJq3D.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/Hwln35FB19TLezlZCACI/qRlGemi5ZTd6HlNUbKQn/E6iOwVyQF.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/x7wtc7IxpyspddjGaoqt/XGUDEGEkpkTg9atH477q/EEPxhBpga.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/NyuMRCoT6B7WII5S05QU/zeT9YYc4Q57sGoE0w4Yk/hHNQakchl.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/Jb7qPUUMexdgGXkYP5FI/JbCcgdGLfeu2gKMKd7MY/HPKyIfNyW.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/TRf4REvaZTmw6YX4nLeJ/538dpcEf83CGALT4xyEi/uJ39ityt5.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/w5gyeR0Prpek6iCHInF5/NeDcYnpZt3L6555aT2N5/VxFEXeIKw.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/ezADfwYl2bzFbYfm2dp4/Q2DDWF1ZxrwC048nlo2E/xMd9WPmw6.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/7YEF5Ab39SOKWLLJdIA9/i3MkSTDb2NpnwvQvtadO/yelBHI4JQ.js\";import PrimaryButton from\"https://framerusercontent.com/modules/fsyphWmNuAwmzuz9YJzL/f42uMDufUexDqSb0ZuOL/tzzjXYQuN.js\";import SecondaryButton from\"https://framerusercontent.com/modules/8QF72VFa9Qz7hR4JQJ4K/rCKVDo5JoCVWFImtyrjw/ut8gnGZ45.js\";const PrimaryButtonFonts=getFonts(PrimaryButton);const SecondaryButtonFonts=getFonts(SecondaryButton);const TickerFonts=getFonts(Ticker);const VideoFonts=getFonts(Video);const HubSpotFormFonts=getFonts(HubSpotForm);const EmbedFonts=getFonts(Embed);const MotionDivWithResponsiveContainerzexnyv=withCodeBoundaryForOverrides(motion.div,{nodeId:\"sWoXswMtj\",override:withResponsiveContainer,scopeId:\"h_NJdonIk\"});const MotionDivWithResponsiveContainer1eqtdso=withCodeBoundaryForOverrides(motion.div,{nodeId:\"xhKNRHkUa\",override:withResponsiveContainer,scopeId:\"h_NJdonIk\"});const MotionDivWithResponsiveContainerop5yu1=withCodeBoundaryForOverrides(motion.div,{nodeId:\"CcvnfIsgY\",override:withResponsiveContainer,scopeId:\"h_NJdonIk\"});const VideoControls=getPropertyControls(Video);const cycleOrder=[\"HPyxQfrYv\",\"uxCAwbtvl\",\"elkQxU5ds\",\"CkKLSDkBO\"];const serializationHash=\"framer-CpQiC\";const variantClassNames={CkKLSDkBO:\"framer-v-12errrc\",elkQxU5ds:\"framer-v-r264xk\",HPyxQfrYv:\"framer-v-h8zmpg\",uxCAwbtvl:\"framer-v-6f4zde\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Scale Down\":\"scale-down\",Contain:\"contain\",Cover:\"cover\",Fill:\"fill\",None:\"none\"};const humanReadableVariantMap={\"Dekstop large\":\"HPyxQfrYv\",\"Dekstop small\":\"uxCAwbtvl\",Phone:\"CkKLSDkBO\",Tablet:\"elkQxU5ds\"};const getProps=({_2NdCTA,_2NdCTALink,_2NdCTAText,_2NdText,avatars,background,border,buttonWrapper,click2,contact,controls,cTA,cTALink,cTAText,embed,embedST,fitVideo,formID,height,id,image,image1,logoSLeft,portalID,subtext,text,text2,title,title1,video,videoFile,videoLoop,visibleLogoS,width,...props})=>{return{...props,aA8EucAIH:cTALink??props.aA8EucAIH,AGSfBEHEN:videoFile??props.AGSfBEHEN??\"https://framerusercontent.com/assets/KON1HtMLb30yAZk6MEXFMVUekoY.mp4\",BttyN5iIK:image??props.BttyN5iIK??true,dEc4aUqTr:visibleLogoS??props.dEc4aUqTr??true,Ege0LJA8p:text??props.Ege0LJA8p??\"We provide a suite of white-label InvestTech solutions to help financial institutions accelerate their digital wealth transformation and deliver engaging investment experiences to their customers.\",f7U186GZ3:cTA??props.f7U186GZ3??true,fLru66aqu:border??props.fLru66aqu??{borderBottomWidth:0,borderColor:\"rgb(232, 238, 247)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},G_vw5ZYYl:controls??props.G_vw5ZYYl,GHbKHYPft:contact??props.GHbKHYPft,H12oF0ydM:_2NdCTA??props.H12oF0ydM,HymJZQKQ3:background??props.HymJZQKQ3??\"rgb(242, 247, 255)\",I1IQ8h920:title??props.I1IQ8h920??\"Building solid bonds.\",I3WgZZcBy:embed??props.I3WgZZcBy,Jejb6qKsa:title1??props.Jejb6qKsa??\"var(--token-f5df46e3-f85d-43c0-b6dd-3b9bbefeb349, rgb(30, 47, 94))\",lTJTB26uL:text2??props.lTJTB26uL??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"We strongly believe that cooperation between traditional financial institutions and fintechs generates mutual benefit. Both have advantages and aspirations that are complementary, making it worthwhile to form partnerships.\"})}),m3WKrHS8f:_2NdText??props.m3WKrHS8f,mtezlGCX6:embedST??props.mtezlGCX6,n0_b9K1LS:buttonWrapper??props.n0_b9K1LS??true,nOtTaxq6T:videoLoop??props.nOtTaxq6T??true,NrZZoXDoV:video??props.NrZZoXDoV,pZbecZTER:humanReadableEnumMap[fitVideo]??fitVideo??props.pZbecZTER??\"cover\",QgPI3WKqG:logoSLeft??props.QgPI3WKqG,QryifnSYG:_2NdCTAText??props.QryifnSYG??\"Request a demo\",rUqsSGnJ3:portalID??props.rUqsSGnJ3??\"5641482\",tXlgaWeoL:subtext??props.tXlgaWeoL??\"var(--token-49eb94dc-29dd-4e0d-98ba-05b9e91d174d, rgb(63, 75, 107))\",UT0codFEK:click2??props.UT0codFEK,v8YtQ8FeY:_2NdCTALink??props.v8YtQ8FeY,variant:humanReadableVariantMap[props.variant]??props.variant??\"HPyxQfrYv\",vvqoYeomz:formID??props.vvqoYeomz??\"b098cce1-d3ce-4199-bb76-c3a5dca351a3\",y7pc0iEWb:image1??props.y7pc0iEWb,YIOcFyTPl:avatars??props.YIOcFyTPl,yltTujlrz:cTAText??props.yltTujlrz??\"Request a demo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,I1IQ8h920,Ege0LJA8p,NrZZoXDoV,BttyN5iIK,y7pc0iEWb,AGSfBEHEN,GHbKHYPft,dEc4aUqTr,nOtTaxq6T,yltTujlrz,aA8EucAIH,QryifnSYG,v8YtQ8FeY,H12oF0ydM,HymJZQKQ3,fLru66aqu,Jejb6qKsa,tXlgaWeoL,f7U186GZ3,UT0codFEK,rUqsSGnJ3,vvqoYeomz,QgPI3WKqG,YIOcFyTPl,n0_b9K1LS,I3WgZZcBy,m3WKrHS8f,pZbecZTER,mtezlGCX6,G_vw5ZYYl,lTJTB26uL,vozfSL6cQ,QVZ5nz7tZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HPyxQfrYv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const AARLeDmPR1gvwn5i=activeVariantCallback(async(...args)=>{if(UT0codFEK){const res=await UT0codFEK(...args);if(res===false)return false;}});const GgfVbloZg1wubtfy=activeVariantCallback(async(...args)=>{if(vozfSL6cQ){const res=await vozfSL6cQ(...args);if(res===false)return false;}});const jqQkMLtjP1k1vmh6=activeVariantCallback(async(...args)=>{if(QVZ5nz7tZ){const res=await QVZ5nz7tZ(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h8zmpg\",className,classNames),\"data-framer-name\":\"Dekstop large\",layoutDependency:layoutDependency,layoutId:\"HPyxQfrYv\",ref:refBinding,style:{backgroundColor:HymJZQKQ3,...style},...addPropertyOverrides({CkKLSDkBO:{\"data-framer-name\":\"Phone\"},elkQxU5ds:{\"data-framer-name\":\"Tablet\"},uxCAwbtvl:{\"data-framer-name\":\"Dekstop small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1utarvn\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"XINB2Dbm4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tucy30\",layoutDependency:layoutDependency,layoutId:\"mLnvwOHQs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wes318\",\"data-framer-name\":\"Frame 1000001341\",layoutDependency:layoutDependency,layoutId:\"fG3K9JI8p\",children:[YIOcFyTPl&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rnj294\",\"data-framer-name\":\"Avatars\",layoutDependency:layoutDependency,layoutId:\"Qe9iAYhn4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A9zvTziuUiDORLjdgAwjOoidLWU.png\"},className:\"framer-1fxn4ar\",\"data-framer-name\":\"Ellipse 42\",layoutDependency:layoutDependency,layoutId:\"Eh2NJ6DvJ\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({CkKLSDkBO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A9zvTziuUiDORLjdgAwjOoidLWU.png\"}},elkQxU5ds:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A9zvTziuUiDORLjdgAwjOoidLWU.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B38W6g5pr7VIkPZTkKdQH6NkU.png\"},className:\"framer-lq7p0a\",\"data-framer-name\":\"Ellipse 43\",layoutDependency:layoutDependency,layoutId:\"uryqYAjxs\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({CkKLSDkBO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B38W6g5pr7VIkPZTkKdQH6NkU.png\"}},elkQxU5ds:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/B38W6g5pr7VIkPZTkKdQH6NkU.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gIXdG902RG440HPGHziQlKgLLkM.png\"},className:\"framer-ufwmht\",\"data-framer-name\":\"Ellipse 44\",layoutDependency:layoutDependency,layoutId:\"W82X1kr5g\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({CkKLSDkBO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gIXdG902RG440HPGHziQlKgLLkM.png\"}},elkQxU5ds:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gIXdG902RG440HPGHziQlKgLLkM.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0I30tgP1791OGgh1Pmyby3h32CI.png\"},className:\"framer-1l44kfj\",\"data-framer-name\":\"Ellipse 45\",layoutDependency:layoutDependency,layoutId:\"EVcnwYTwK\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({CkKLSDkBO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0I30tgP1791OGgh1Pmyby3h32CI.png\"}},elkQxU5ds:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0I30tgP1791OGgh1Pmyby3h32CI.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wEWkHjgUgNkbCCIzct0a3gCQQJE.png\"},className:\"framer-2udw1v\",\"data-framer-name\":\"Ellipse 46\",layoutDependency:layoutDependency,layoutId:\"pGjXzPvBL\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({CkKLSDkBO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wEWkHjgUgNkbCCIzct0a3gCQQJE.png\"}},elkQxU5ds:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+0+61-60.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wEWkHjgUgNkbCCIzct0a3gCQQJE.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-urur5s\",\"data-framer-name\":\"H2 [FeatureCard-Heading]\",layoutDependency:layoutDependency,layoutId:\"Y5AXHyM_g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1dfzoqi\",\"data-styles-preset\":\"E6f9AJq3D\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-Jejb6qKsa-h_NJdonIk))\"},children:\"Building solid bonds.\"})}),className:\"framer-1xmvn0r\",\"data-framer-name\":\"Platform for easy investing.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SQmCN4Szb\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-Jejb6qKsa-h_NJdonIk)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-Jejb6qKsa-h_NJdonIk\":Jejb6qKsa,backdropFilter:\"blur(10px)\",WebkitBackdropFilter:\"blur(10px)\"},text:I1IQ8h920,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-66gf01\",\"data-styles-preset\":\"uJ39ityt5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-tXlgaWeoL-h_NJdonIk))\"},children:\"We strongly believe that cooperation between traditional financial institutions and fintechs generates mutual benefit. Both have advantages and aspirations that are complementary, making it worthwhile to form partnerships.\"})}),className:\"framer-1p273sb\",\"data-framer-name\":\"Roughly one in five retail investors is deemed to be \u2018self-directed\u2019. Not only do they want more control over their investments, but they want to become better investors.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NCFO4HX55\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-tXlgaWeoL-h_NJdonIk)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-tXlgaWeoL-h_NJdonIk\":tXlgaWeoL},text:Ege0LJA8p,verticalAlignment:\"top\",withExternalLayout:true}),m3WKrHS8f&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"BgUyhB3Yw\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"eb0TtgoXW\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lTJTB26uL,className:\"framer-eyczqy\",\"data-framer-name\":\"Roughly one in five retail investors is deemed to be \u2018self-directed\u2019. Not only do they want more control over their investments, but they want to become better investors.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HbP3CLoT0\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-tXlgaWeoL-h_NJdonIk)\",\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-7khknb\",blockquote:\"framer-styles-preset-1d3kqjr\",code:\"framer-styles-preset-17wvlyf\",h1:\"framer-styles-preset-1dfzoqi\",h2:\"framer-styles-preset-16977fj\",h3:\"framer-styles-preset-f89hwj\",h4:\"framer-styles-preset-179e1cl\",h5:\"framer-styles-preset-3989e\",h6:\"framer-styles-preset-8z503l\",img:\"framer-styles-preset-fpghdd\",p:\"framer-styles-preset-66gf01\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),n0_b9K1LS&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozk453\",\"data-framer-name\":\"Button wrapper\",layoutDependency:layoutDependency,layoutId:\"l3lzKjgxP\",children:[f7U186GZ3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({CkKLSDkBO:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+300.8+0},elkQxU5ds:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+300.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dd5l16-container\",layoutDependency:layoutDependency,layoutId:\"IERB1ImhU-container\",nodeId:\"IERB1ImhU\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(PrimaryButton,{EXO_yR3hp:yltTujlrz,GmsrOGF5w:\"rgb(66, 115, 252)\",height:\"100%\",id:\"IERB1ImhU\",layoutId:\"IERB1ImhU\",LcJ0tD3du:aA8EucAIH,tZK_MLuSu:\"rgb(45, 101, 255)\",width:\"100%\",...addPropertyOverrides({uxCAwbtvl:{AARLeDmPR:AARLeDmPR1gvwn5i}},baseVariant,gestureVariant)})})}),H12oF0ydM&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({CkKLSDkBO:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+0+0+300.8+0},elkQxU5ds:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+0+0+300.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tkbtga-container\",layoutDependency:layoutDependency,layoutId:\"bpv4ycfCb-container\",nodeId:\"bpv4ycfCb\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(SecondaryButton,{GgfVbloZg:GgfVbloZg1wubtfy,height:\"100%\",id:\"bpv4ycfCb\",jqQkMLtjP:jqQkMLtjP1k1vmh6,layoutId:\"bpv4ycfCb\",ovoZ80DDp:QryifnSYG,us_Cr9D6C:v8YtQ8FeY,variant:\"vk3fev5Dj\",width:\"100%\"})})})]}),QgPI3WKqG&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tp1fr7\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"aa1pMii2P\",style:{\"--border-bottom-width\":(fLru66aqu.borderBottomWidth??fLru66aqu.borderWidth)+\"px\",\"--border-color\":fLru66aqu.borderColor,\"--border-left-width\":(fLru66aqu.borderLeftWidth??fLru66aqu.borderWidth)+\"px\",\"--border-right-width\":(fLru66aqu.borderRightWidth??fLru66aqu.borderWidth)+\"px\",\"--border-style\":fLru66aqu.borderStyle,\"--border-top-width\":(fLru66aqu.borderTopWidth??fLru66aqu.borderWidth)+\"px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-173cu8w-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"g9tOggaTP-container\",nodeId:\"g9tOggaTP\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",style:{opacity:.6},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"g9tOggaTP\",layoutId:\"g9tOggaTP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bgpw1u\",\"data-framer-name\":\"Award 4\",layoutDependency:layoutDependency,layoutId:\"XLwPbe_dA\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0v9ze\",\"data-framer-name\":\"Laag_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:174,intrinsicWidth:696,layoutDependency:layoutDependency,layoutId:\"cXkaWxy07\",svg:'<svg width=\"696\" height=\"174\" viewBox=\"0 0 696 174\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12703)\">\\n<path d=\"M581.31 73.49C595.16 71.14 603.92 79.52 605.47 92.86C607.5 110.39 604.42 137.54 580.32 133.01C559.36 129.07 558.35 77.39 581.32 73.49H581.31ZM581.87 77.56C576.17 82.41 576.52 118.58 579.81 125.52C581.54 129.17 584.87 130.23 588.59 128.76C589.26 128.42 589.62 127.79 590.03 127.2C593.89 121.6 593.93 84.13 589.61 78.71C587.75 76.38 584.28 75.49 581.86 77.55L581.87 77.56Z\" fill=\"#626E92\"/>\\n<path d=\"M215.44 74.38L231.06 123.26L246.67 74.35H253.48L268.59 124.25L284.67 74.35L290.57 74.26L270.41 133.08L264.05 132.28L249.06 85.25L232.09 132.27L225.53 132.79L207.59 75.72C207.22 72.86 213.57 74.59 215.44 74.38Z\" fill=\"#626E92\"/>\\n<path d=\"M33.7899 138.05C33.2799 126.89 36.5299 116.07 38.5799 105.26C41.2899 104.96 41.7399 108.2 43.5299 109.79C54.0699 119.14 67.0799 122.33 80.9799 121.16C83.6799 120.93 85.9499 118.18 87.5699 120.77C85.2499 124.27 86.7199 128.4 86.3499 130.64C85.8099 133.91 60.9599 145.03 56.6099 145.8C48.4499 147.24 40.6799 141.65 33.7799 138.05H33.7899Z\" fill=\"#626E92\"/>\\n<path d=\"M147.53 63.28C152.22 88.17 142.47 115.48 122.59 131.25C122.68 124.1 122.19 116.87 121.57 109.76C121.35 107.2 119.66 103.89 119.86 101.89C120.06 99.89 124.48 92.12 125.52 88.7C127.35 82.65 128.27 76.21 128.72 69.9L147.53 63.29V63.28Z\" fill=\"#626E92\"/>\\n<path d=\"M406.58 133.25V74.24C413.41 74.24 420.27 74.24 427.12 74.29C432.34 74.33 436.91 73.43 442.63 74.7C465.92 79.84 467.05 116.03 448.91 128.08C446.97 129.37 437.88 133.25 436.08 133.25H406.58ZM414.58 129.25C434.01 133.21 451.26 127.96 452.62 105.8C454.25 79.16 437.76 74.69 414.58 78.25V129.25Z\" fill=\"#626E92\"/>\\n<path d=\"M518.58 132.25C515.82 129.42 530.27 117.48 532.55 114.72C539.32 106.54 547.16 92.08 541.8 81.53C540.45 78.88 538.08 77.31 535.06 77.18C524.79 76.74 527.44 90.33 525.08 90.23L518.86 83.77C522.43 69.08 552.59 69.88 556.11 83.22C560.59 100.24 543.35 108.44 535.07 119.24C534.3 120.24 533.13 120.51 533.58 122.24L556.58 121.24V132.25H518.57H518.58Z\" fill=\"#626E92\"/>\\n<path d=\"M361.58 133.25H353.57V74.24C363.23 75.49 380.67 70.46 387.97 78.35C394.55 85.45 391 95.9 383.52 100.7C381.33 102.1 374.02 103.25 374.59 105.7L396.56 133.23L385.99 132.31L366.13 106.17L361.56 105.24V133.24L361.58 133.25ZM361.58 101.25C371.11 102.21 383.28 100.81 383.67 88.76C384.06 76.71 370.78 76.7 361.58 77.25V101.25Z\" fill=\"#626E92\"/>\\n<path d=\"M610.58 132.25C607.83 129.46 621 118.72 623.09 116.26C628.7 109.65 635.7 98.7 635.66 89.74C635.64 85.52 633.48 78.5 628.87 77.46C617.15 74.82 619.66 88.7 617.07 89.24L611 83.2C614.75 70.78 637.55 70.27 644.99 78.34C657.74 92.17 634.86 112.86 624.59 120.74C626.84 123.63 630.01 121.27 633.04 121.2C638.21 121.07 643.42 121.39 648.59 121.24V132.25H610.58Z\" fill=\"#626E92\"/>\\n<path d=\"M29.4801 78.35C29.1801 83.43 29.8301 87.08 31.5701 91.77C32.7501 94.95 32.9001 97.38 36.6101 97.78C33.5801 108.9 33.1901 120.42 31.6001 131.78C31.3901 133.26 31.6301 134.27 30.0801 135.24C28.9301 135.23 17.6901 124.37 16.8101 122.53C15.5501 119.9 14.9901 113.95 14.5901 110.75C13.1201 98.84 13.7501 86.26 13.5901 74.26L29.4801 78.35Z\" fill=\"#626E92\"/>\\n<path d=\"M681.58 101.24C690.83 102.46 696.15 106.81 695.62 116.72C694.72 133.72 666.62 139.15 656.75 126.76L662.09 119.26C664.43 119.04 663.58 122.48 664.7 124.63C668.34 131.63 677.21 130.91 680.77 123.95C685.59 114.54 680.57 101.45 668.57 104.25L668.63 100.32C681.8 102.48 685.06 81.15 675.29 77C667.25 73.58 665.09 87.26 664.08 87.24L658.69 81.62C665.44 66.25 700.03 71.94 692.36 91.55C690.06 97.43 685.69 97.49 681.58 101.25V101.24Z\" fill=\"#626E92\"/>\\n<path d=\"M60.57 32.24C49.49 35.46 38.07 43.89 34.48 55.15C32.32 57.04 21.75 49.49 18.65 49.16C16.48 46.16 33.37 19.01 38.22 16.41C40.26 16.02 61.42 31.16 60.57 32.25V32.24Z\" fill=\"#626E92\"/>\\n<path d=\"M344.58 133.24L335.06 132.27L326.62 110.71L304.48 110.87L296.45 133.11L290.59 133.24L318.09 72.27L344.59 133.24H344.58ZM324.58 106.25C323.34 98.89 318.17 92.63 316.57 85.25C315.27 84.24 307.33 104.3 306.58 106.25H324.58Z\" fill=\"#626E92\"/>\\n<path d=\"M207.57 133.25L198.69 133.14L189.59 110.74L167.68 110.38L160.08 132.28L153.57 133.26L181.07 72.29L207.56 133.26L207.57 133.25ZM188.58 106.25C187.78 104.5 179.82 84.33 178.59 85.25C176.65 92.49 172.01 98.97 170.58 106.25H188.58Z\" fill=\"#626E92\"/>\\n<path d=\"M121.58 33.25C109.87 33.62 97.8699 31.55 87.5599 25.78C86.4299 24.29 80.2299 22.77 80.6999 20.9C81.2999 18.49 91.8199 6.49002 94.0499 5.19002C97.6999 3.06002 112.8 10.43 115.61 13.74C117.3 15.74 122.54 32.31 121.59 33.26L121.58 33.25Z\" fill=\"#626E92\"/>\\n<path d=\"M500.56 84.25C497.58 82.54 497.89 78.53 494.32 77.01C483.99 72.59 474.91 81.79 479.32 92.01C483.04 100.63 505.15 98.84 505.66 114.75C506.24 132.84 483.98 139.43 470.52 130.74L471.58 122.26C474.17 123.64 474.74 126.27 477.22 128.11C491.41 138.66 507.21 119.74 493.07 109.26C486.07 104.08 473.24 103.66 471.67 92.67C469.33 76.19 485.34 68.27 499.13 74.2C504.84 76.66 501.17 79.55 500.56 84.26V84.25Z\" fill=\"#626E92\"/>\\n<path d=\"M169.59 46.25C170.96 46.55 170.67 45.21 171.06 44.26C172.35 41.16 176.82 24.98 177.63 24.31C178.27 23.77 181.19 24.17 182.09 25.25C184.26 27.85 187.08 42.16 188.59 46.26C193.19 42.02 192.88 30.84 195.77 25.95C196.64 24.48 198.64 23.34 199.58 24.27C200.69 25.37 190.25 49.98 189.86 54.02C189.64 56.2 186.05 55.6 185.06 54.29C183.69 52.46 180.24 34.29 178.08 34.29L170.48 55.16L165.72 55.14L157.58 24.28L164.11 25.25L169.6 46.27L169.59 46.25Z\" fill=\"#626E92\"/>\\n<path d=\"M59.44 2.34003C62.73 10.35 69.79 15.51 75.4 21.75C74.13 23.04 73.05 25.99 71.57 26.75C71.11 26.98 63.69 29.14 63.26 29.07C58.88 28.33 46.85 15.59 40.58 15.25C39.7 14.05 47.21 6.72003 48.62 5.81003C51.71 3.81003 55.89 3.15003 59.43 2.35003L59.44 2.34003Z\" fill=\"#626E92\"/>\\n<path d=\"M125.52 66.2L117.57 67.24C120.49 64.48 117.87 60.19 116.43 56.89C113.89 51.09 109.88 45.42 105.04 41.28C97.4899 34.81 84.3899 28.32 74.5799 30.25C73.9199 28.09 76.8399 24.2 78.8999 24.39C92.2699 33.46 106.47 37.04 122.63 36.69C126.1 46.11 125.66 56.35 125.52 66.2Z\" fill=\"#626E92\"/>\\n<path d=\"M146.47 61.16L128.58 65.26C129.98 55.77 127.04 47.21 125.97 38.27C125.85 37.23 125.28 36.54 126.53 35.72L135.08 34.22C138.1 34.45 143.53 47.47 144.59 50.74C145.65 54.01 147.27 57.49 146.47 61.16Z\" fill=\"#626E92\"/>\\n<path d=\"M118.57 107.26L120.41 133.59C118.62 136.06 104 144.64 102.58 143.26C103.38 140.92 100.75 137.2 100.91 135.74C101.02 134.72 103.84 132.98 104.37 130.55C104.9 128.12 104.11 125.27 104.77 122.96C105.29 121.15 109.15 118.6 110.55 116.74C111.38 115.64 117.15 105.57 118.57 107.27V107.26Z\" fill=\"#626E92\"/>\\n<path d=\"M437.29 34.57C437.89 35.06 438.41 37.22 439.08 37.23C455.54 24.78 452.07 44.45 448.65 54.82L442.58 55.25C442.73 51.75 449.73 35.9 443.25 36.41C436.22 39.29 437.25 48.87 435.47 55.15L429.58 55.25C428.7 54.42 434.58 40.21 432.67 37.71L430.25 36.4C420.4 39 427.51 57.17 416.58 55.24L420.62 34.3C423.07 34.35 427 33 426.59 36.23C427.05 36.58 432.21 30.4 437.28 34.56L437.29 34.57Z\" fill=\"#626E92\"/>\\n<path d=\"M279.58 21.25V36.25C281.91 36.69 282.45 33.99 284.29 33.44C287.34 32.53 293.58 34.46 293.58 37.75V55.25H287.58V39.75C287.58 36.77 283.1 36.26 281.08 38.26C280.82 38.99 279.58 40.31 279.58 40.75V55.25H273.58V21.25H279.58Z\" fill=\"#626E92\"/>\\n<path d=\"M100.45 145.13C97.8998 149.11 64.3598 150.61 58.5898 148.24L88.0998 134.29C90.8998 137.27 96.5098 136.56 98.5998 137.74C100.13 138.61 101.32 143.78 100.46 145.13H100.45Z\" fill=\"#626E92\"/>\\n<path d=\"M11.58 74.27C9.24995 87.94 11.65 102.54 13.57 116.25C11.23 116.8 10.36 113.53 9.40995 111.93C2.91995 100.94 -0.140047 86.73 -4.73266e-05 74.18L1.21995 73.4L11.58 74.26V74.27Z\" fill=\"#626E92\"/>\\n<path d=\"M86.0801 1.25001C87.5201 1.43001 90.9401 3.11001 92.5801 3.75001L78.0701 19.27C71.2801 15.42 66.3801 9.58001 62.0701 3.24001L63.0801 1.26001C70.3601 1.91001 79.0001 0.370012 86.0801 1.26001V1.25001Z\" fill=\"#626E92\"/>\\n<path d=\"M488.59 165.25C490.26 166.91 490.27 164.74 490.67 163.85C492.4 160.02 493.45 154.48 494.68 150.37L498.03 150.21C499.22 150.57 501.45 165.13 504.57 166.26L508.49 150.84L511.58 150.27L503.64 172.82L500.6 173.26L495.08 157.25C492.96 161.67 492.01 166.81 490.04 171.26C489.46 172.56 490.2 173.6 488.08 173.27C486.3 173.45 486.07 172.08 485.51 170.84C483 165.31 481.99 156.24 479.59 150.27L485.11 151.24L488.6 165.26L488.59 165.25Z\" fill=\"#626E92\"/>\\n<path d=\"M406.56 24.26L413.57 55.25L406.62 55.2L404.64 45.68C401.74 45.14 396.36 44.36 394.08 46.26C392.46 47.61 389.31 57.92 386.58 55.25C385.27 53.96 401.47 28.79 403.1 25.28L406.56 24.26ZM404.57 43.25L402.08 33.26L396.58 43.25H404.57Z\" fill=\"#626E92\"/>\\n<path d=\"M32.58 59.27C30.18 63.52 27.01 71.24 30.58 75.24L14.02 71.28C14.24 68.51 15.77 51.42 18.08 51.28L32.59 59.27H32.58Z\" fill=\"#626E92\"/>\\n<path d=\"M16.5699 47.26L7.63989 43.17C7.74989 36.68 29.6299 12.37 34.0599 13.26C34.7599 13.4 36.3699 15.38 35.0999 16.28C26.8599 24.85 19.7199 35.84 16.5699 47.27V47.26Z\" fill=\"#626E92\"/>\\n<path d=\"M11.5799 71.26C9.64993 71.25 1.06993 71.79 0.539932 69.59C-0.0200684 61.06 3.71993 53.3 5.58993 45.25L14.4799 49.92L11.5799 71.25V71.26Z\" fill=\"#626E92\"/>\\n<path d=\"M548.58 55.24C545.84 56.74 541.35 53.28 540.28 53.43C537.34 53.84 533.66 59.46 529.68 52.6C525.7 45.74 537.18 41.48 542.59 42.25L542.15 37.2C540.87 35.35 536.43 36.24 534.6 37.26C532.22 34.32 545.35 30.57 548.09 36.26C550.96 42.23 543.16 49.81 548.59 55.25L548.58 55.24ZM541.57 44.26C536.13 43.13 532.72 49.72 537.09 53.25C541.05 52.24 541.95 47.68 541.57 44.26Z\" fill=\"#626E92\"/>\\n<path d=\"M242.57 53.27L242 55.25C237.16 57.79 235.46 53.2 235.05 53.21C233.19 53.27 222.99 60.37 222.47 50.75C222 42.15 234.61 44.4 234.62 39.77C234.62 38.39 233.14 36.81 231.85 36.43C227.84 35.25 226.11 39.4 223.59 36.76C227.19 32.38 238.32 31.38 239.55 37.78C240.46 42.53 236.99 52.23 242.56 53.28L242.57 53.27ZM234.57 44.26C229.28 44.1 227.58 47.18 228.72 52.1L231.93 53.06L233.65 51.84L234.57 44.26Z\" fill=\"#626E92\"/>\\n<path d=\"M219.58 44.26L207.01 45.23C207.27 52.56 212.3 55.64 218.56 51.25L217.99 54.34C208.5 58.19 199.54 53.89 200.52 42.75C201.68 29.64 221.94 29.68 219.57 44.25L219.58 44.26ZM213.58 42.26L213.14 36.2L208.67 35.36L207.57 42.26H213.58Z\" fill=\"#626E92\"/>\\n<path d=\"M566.58 148.25H571.59V158.25C583.79 152.28 581.67 165.04 581.59 173.26H576.58C575.24 171.95 579.93 154.31 571.55 160.93L571.59 173.26L566.59 171.76V148.26L566.58 148.25Z\" fill=\"#626E92\"/>\\n<path d=\"M473.32 35.5C474.4 36.7 475.82 43.37 474.48 44.16L461.57 44.25L462.55 51.77C465.99 54.37 467.41 52.97 470.51 51.68C472.09 51.03 472.89 50.67 472.56 52.74C462.34 59.37 452.96 53.89 456 41.18C457.67 34.23 468.69 30.38 473.31 35.5H473.32ZM469.58 42.26C470.86 31.63 462.85 33.72 461.58 42.26H469.58Z\" fill=\"#626E92\"/>\\n<path d=\"M246.57 55.26C247.54 43.84 247.54 32.67 246.57 21.25C248.24 21.3 252.94 20.59 253.32 22.71V53.8L251.93 55.11L246.57 55.26Z\" fill=\"#626E92\"/>\\n<path d=\"M266.57 26.26V34.26L270.57 34.75C263.09 37.05 265.87 46.94 266.62 53.21C267.48 54.01 271.57 51.73 270.58 55.25C256.71 58.84 261.15 45.8 260.64 36.8L257.57 34.26L260.64 33.72C259.45 28.2 261.6 27.31 266.57 26.26Z\" fill=\"#626E92\"/>\\n<path d=\"M527.57 40.25C524.75 38.06 526.14 34.86 521.15 35.28C510.76 36.16 510.91 60.33 524.57 51.25L523.38 55.05C496.47 59.54 508 23.58 528.51 35.88L527.56 40.24L527.57 40.25Z\" fill=\"#626E92\"/>\\n<path d=\"M566.43 34.4L566.57 38.25C563.06 37.94 562.79 33.73 558.59 35.74C551.97 38.92 563.79 42.5 565.06 45.27C568.91 53.69 558.1 58.02 551.53 54.75L551.59 50.25L557.05 54.23C568.7 50.05 555.09 47.62 553.09 43.23C549.74 35.9 560.52 30.84 566.43 34.4Z\" fill=\"#626E92\"/>\\n<path d=\"M543.58 173.24C539.58 172.53 523.47 174.82 529.5 166.67C531.14 164.46 541.69 163.29 536.6 159.72C535.27 158.79 526.63 161.2 529.57 158.27C529.81 158.03 535.44 156.35 536.09 156.35C545.1 156.44 539.07 168.94 543.57 173.24H543.58Z\" fill=\"#626E92\"/>\\n<path d=\"M494.57 33.26L492.63 38.76C483.89 37.59 484.42 48.14 483.14 54.32L476.58 55.25L481.72 34.4L486.52 34.35L487.08 37.25C489.3 34.87 490.91 32.57 494.58 33.26H494.57Z\" fill=\"#626E92\"/>\\n<path d=\"M526.58 165.25H516.58L518.54 170.79L525.57 170.26C528.42 173.64 514.51 175.35 512.78 169.57C508.56 155.52 526.11 150.76 526.59 165.26L526.58 165.25Z\" fill=\"#626E92\"/>\\n<path d=\"M90.5801 118.24L102.07 112.25C106.53 107.39 113.57 103.65 113.58 96.25C121.24 102.78 107.28 113.48 103.58 119.82L90.5801 118.24Z\" fill=\"#626E92\"/>\\n<path d=\"M95.5099 134.51C99.144 134.51 102.09 131.564 102.09 127.93C102.09 124.296 99.144 121.35 95.5099 121.35C91.8759 121.35 88.9299 124.296 88.9299 127.93C88.9299 131.564 91.8759 134.51 95.5099 134.51Z\" fill=\"#626E92\"/>\\n<path d=\"M505.57 34.26L501.12 54.3L494.58 55.25L499.03 35.21L505.57 34.26Z\" fill=\"#626E92\"/>\\n<path d=\"M551.58 148.25H546.58V173.25H551.58V148.25Z\" fill=\"#626E92\"/>\\n<path d=\"M561.57 151.26L561.51 156.71L564.58 157.27C560.29 160.31 559.63 164.21 561.02 169.37C561.72 171.96 564.22 170.36 563.58 173.26C552.88 174.56 558.03 165.38 556.6 159.91C556.33 158.88 554.65 159.68 554.57 158.75L554.65 157.32C557.97 156.76 555.92 150.81 561.57 151.27V151.26Z\" fill=\"#626E92\"/>\\n<path d=\"M133.58 32.24L124.7 33.12L119.57 17.26C121.45 16.82 121.95 18.31 123.07 19.25C124.98 20.85 135.19 30.32 133.57 32.24H133.58Z\" fill=\"#626E92\"/>\\n<path d=\"M125.57 70.26C124.51 76.53 123.71 82.91 121.84 89.02C121.51 90.1 119.57 98.3 117.59 96.26C115.35 91.56 118.23 90.17 118.9 87.08C120.02 81.99 121.85 76.37 119.57 71.27L125.57 70.27V70.26Z\" fill=\"#626E92\"/>\\n<path d=\"M503.94 28.76C505.79 28.76 507.29 27.2602 507.29 25.41C507.29 23.5598 505.79 22.06 503.94 22.06C502.09 22.06 500.59 23.5598 500.59 25.41C500.59 27.2602 502.09 28.76 503.94 28.76Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12703\">\\n<rect width=\"695.66\" height=\"172.4\" fill=\"white\" transform=\"translate(0 0.970001)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y038b0\",\"data-framer-name\":\"Award 3\",layoutDependency:layoutDependency,layoutId:\"TM_rysCCW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ubqkl7\",\"data-framer-name\":\"Laag_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:851,intrinsicWidth:523,layoutDependency:layoutDependency,layoutId:\"bM1VBRrJR\",svg:'<svg width=\"523\" height=\"851\" viewBox=\"0 0 523 851\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12775)\">\\n<path d=\"M125.08 266.73L125.22 686.02L127.07 687.73C133.13 634.89 181.56 595.14 234.08 594.73V755.23C234.08 780.11 210.87 814.06 191.56 828.71C180.41 837.17 152.38 850.73 138.58 850.73H109.08V681.23C106.04 678.43 100.85 680.12 96.7001 679.61C46.1701 673.37 4.49008 631.67 1.04008 580.27C-2.26992 530.91 3.64008 477.92 1.04008 428.18L2.67008 423.84C19.2401 424.71 35.0801 427.92 49.9701 435.35C83.3301 452.01 97.6201 476.25 107.4 510.93C107.69 511.97 107.64 513.95 109.09 513.73V266.73H125.09H125.08Z\" fill=\"#626E92\"/>\\n<path d=\"M231.08 0.72998V162.23C231.08 165.92 226.29 182.51 224.79 186.94C209.89 230.87 169.71 255.92 124.08 257.73V96.23C124.08 92.79 129.14 77.03 130.62 72.77C145.9 28.91 185.01 2.53998 231.08 0.72998Z\" fill=\"#626E92\"/>\\n<path d=\"M107.08 257.73C59.8301 255.99 18.2001 228.86 4.80008 182.51C3.81008 179.09 0.0800781 164.74 0.0800781 162.23V1.72998C31.0801 3.81998 60.6401 15.35 81.0501 39.26C91.1401 51.07 107.08 81.9 107.08 97.23V257.73Z\" fill=\"#626E92\"/>\\n<path d=\"M156.07 17.75C157.24 19.45 149.18 25.03 147.54 26.71C135.53 39.04 126.16 54.06 120.05 70.22L114.08 90.73C110.27 62.94 94.4601 36.98 73.0901 19.24C97.0301 -2.78001 130.74 -1.05001 156.06 17.76L156.07 17.75Z\" fill=\"#626E92\"/>\\n<path d=\"M287.05 470.74L295.58 514.73L304.28 471.93L311.6 471.09L312.9 472.37C316.57 484.77 317.51 499.01 321.03 511.29C321.42 512.65 321.15 514.39 323.07 514.74L329.26 473.42C330.06 471.38 337.28 469.78 338.65 471.71C340.66 474.55 327.94 532.14 327.15 540.31L317.97 540.16L308.1 494.74L300.04 540.69H290.13L277.07 471.25L287.06 470.75L287.05 470.74Z\" fill=\"#626E92\"/>\\n<path d=\"M254.58 309.73C257.27 310.06 262.46 311.97 264.59 313.72C273.04 320.63 272.42 338.9 260.69 341.66L260.08 343.71C275.58 346.65 275.72 369.47 263.43 376.58C262.37 377.19 255.27 379.73 254.58 379.73H234.08V309.73C240.58 310.31 248.25 308.94 254.58 309.73ZM244.08 320.23V337.23C244.08 340.54 260.23 339 260.12 328.21C260.1 326.19 257.88 321.1 256.08 320.23C254.28 319.36 244.85 317.76 244.08 320.23ZM244.08 369.73C266.52 374.49 267.24 345.84 245.74 347.89L244.08 349.23V369.73Z\" fill=\"#626E92\"/>\\n<path d=\"M403.08 540.73H393.07L392.19 472.23C392.78 470.85 393.31 471.32 394.16 471.19C400.98 470.12 413.74 470.41 419.97 473.33C429.16 477.63 431.01 491.2 427.81 499.97C426.08 504.71 421.98 505.89 420.12 510.19L430.07 540.73L419.21 540.6L409.96 511.86L403.07 511.74V540.74L403.08 540.73ZM403.08 502.73C410.9 502.83 417.28 503.63 418.12 494.28C419.22 482.08 414.72 479.7 403.08 480.73V502.73Z\" fill=\"#626E92\"/>\\n<path d=\"M439.08 540.73V470.73C448 472.33 456.11 469.33 464.89 472.42C469.48 474.03 472.37 476.71 474.12 481.19C477.08 488.76 477.33 523.09 474.27 530.43C472.16 535.49 466.19 540.73 460.57 540.73H439.07H439.08ZM449.08 482.23V530.23C449.08 532.91 461.46 532.27 464.29 526.44C466.95 520.96 466.59 501.98 466.13 495.19C465.36 483.96 463.4 479.04 450.74 480.9L449.08 482.24V482.23Z\" fill=\"#626E92\"/>\\n<path d=\"M369.91 471.9L383.08 540.72L373.18 540.62L370.2 526.3L355.02 526.16L352.04 540.68L342.08 540.73L356.04 471.2L369.91 471.91V471.9ZM363.07 484.73C361.06 485.12 361.44 486.84 361.09 488.23C359.02 496.42 358.93 506.33 356.47 514.67L357.61 516.69C359.77 514.74 367.39 517.68 368.02 515.12L363.07 484.73Z\" fill=\"#626E92\"/>\\n<path d=\"M276.08 540.72L265.13 540.68L262.15 526.16H247.01L243.98 540.63L234.08 540.73L247.68 471.63L260.47 470.96L261.88 472.42L276.08 540.73V540.72ZM260.08 515.73C259.16 506.68 257.62 497.44 255.75 488.54C255.51 487.39 255.61 484.56 254.09 484.73L249.01 515.11C249.66 517.37 258.28 515.36 260.09 515.73H260.08Z\" fill=\"#626E92\"/>\\n<path d=\"M332.08 309.73V363.23C332.08 363.53 334.17 368.2 334.61 368.7C338.52 373.18 348.08 369.81 348.08 365.23V309.73H358.08V367.23C358.08 368.98 354.07 375.15 352.42 376.57C344.74 383.21 330.08 381.6 324.86 372.44C324.24 371.35 322.07 365.99 322.07 365.23V309.73H332.07H332.08Z\" fill=\"#626E92\"/>\\n<path d=\"M290.08 390.73V445.23C290.08 445.52 292.56 449.72 293.11 450.19C297.46 453.92 306.08 449.99 306.08 445.23V390.73H316.08V447.23C316.08 447.67 313.49 453.2 312.92 454.07C306.71 463.57 288.48 463.26 282.65 453.66C282.26 453.01 280.08 447.58 280.08 447.23V390.73H290.08Z\" fill=\"#626E92\"/>\\n<path d=\"M521.08 487.73L511.09 489.73C510.8 476.2 492.24 476.69 495.28 490.03C497.45 499.53 519.35 505.73 521.83 520.47C526.35 547.41 483.21 549.62 482.49 522.69L492.07 519.73C491.34 533.87 512.9 537.77 511.14 522.21C509.84 510.74 483.53 505.14 483.99 486.24C484.53 464.24 520.22 465.14 521.07 487.73H521.08Z\" fill=\"#626E92\"/>\\n<path d=\"M398.08 459.73H388.08V390.73H412.58C413.71 390.73 419.85 394.24 420.98 395.33C429.06 403.17 427.61 424.68 416.79 429.94C410.38 433.06 403.57 430.02 398.08 433.23V459.73ZM398.08 401.23V421.23C402.01 424.51 412.41 422.26 414.32 417.47C418.91 405.95 411.98 397.26 399.74 399.89L398.08 401.23Z\" fill=\"#626E92\"/>\\n<path d=\"M401.08 309.73L400.96 318.11L399.58 319.5C399.17 319.53 398.83 318.73 398.58 318.73H381.58L380.08 320.23V338.73L395.07 337.73V347.73H380.08V369.73H399.58C401.94 371.88 401.94 377.58 399.58 379.73H370.08V309.73H401.08Z\" fill=\"#626E92\"/>\\n<path d=\"M338.08 390.73V450.73H359.08V459.73H327.08V390.73H338.08Z\" fill=\"#626E92\"/>\\n<path d=\"M271.08 390.73V399.74H258.08V459.74H248.08V401.24C246.33 398.06 235.02 400.69 234.07 399.75V390.74H271.08V390.73Z\" fill=\"#626E92\"/>\\n<path d=\"M292.08 309.73V369.73H314.08V379.73H282.08V309.73H292.08Z\" fill=\"#626E92\"/>\\n<path d=\"M379.08 390.73H369.08V459.73H379.08V390.73Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12775\">\\n<rect width=\"522.17\" height=\"850\" fill=\"white\" transform=\"translate(0 0.72998)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cx0s3e\",\"data-framer-name\":\"Award 2\",layoutDependency:layoutDependency,layoutId:\"w9IHmRk2c\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b3nily\",\"data-framer-name\":\"Isolatiemodus\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:336,intrinsicWidth:1440,layoutDependency:layoutDependency,layoutId:\"JwVKc4Zzh\",svg:'<svg width=\"1440\" height=\"336\" viewBox=\"0 0 1440 336\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12797)\">\\n<path d=\"M11 289.15C10.02 287.34 2 284.97 2 283.65V244.15C12.06 249.13 21.16 252.32 32 255.15C58.7 262.13 90.74 266.23 116 253.15C142.95 237.65 148.28 199.81 131 175.15C108.02 147.22 60.01 154.9 28.54 161.11L8.49 149.15L19.5 9.1499H166.5C166.61 9.1499 168 10.5399 168 10.6499V47.6499C168 47.7599 166.61 49.1499 166.5 49.1499H60.5C57.66 49.1499 58.23 62.4399 57.99 64.6399C56.01 83.1399 54.12 101.68 52.42 120.19C53.15 121.19 54.32 121.19 55.45 121.19C62.47 121.18 73.74 117.6 81.46 117.11C154.51 112.46 202.09 156.38 184.7 231.35C167.33 306.23 70.56 310.26 10.99 289.14L11 289.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1440 211.15V215.15C1427.8 222.62 1427.91 202.79 1440 211.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1330 28.15H1308.5C1305.81 30.29 1307.87 34.2 1306 37.14C1323.51 35.26 1335.72 42.98 1334.04 61.69C1332.27 81.45 1308 83.78 1292.78 78.87C1286 76.68 1290 68.89 1289.01 63.15C1295.18 65.29 1301.69 67.93 1308.41 67.05C1314.77 66.22 1319.46 60.24 1315.01 54.63C1308.52 46.45 1297.47 55.76 1290.49 49.16C1290.4 37.95 1291.65 26.39 1292.44 15.08L1328.36 14.28C1331.51 15.31 1329.42 25.2 1330 28.14V28.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1117 41.1499V54.1499H1099.5C1099.17 54.1499 1097.98 55.4699 1097 55.1499V78.6499C1097 80.9299 1080 80.9299 1080 78.6499V15.6499C1080 15.5399 1081.39 14.1499 1081.5 14.1499H1117.5C1119.43 14.1499 1119.34 22.9599 1119.01 24.6599C1117.77 31.1299 1099.49 26.1299 1097.43 29.0799C1096.39 30.5699 1096.54 41.1399 1098.49 41.1399H1116.99L1117 41.1499Z\" fill=\"#626E92\"/>\\n<path d=\"M1218.92 32.2599C1219.76 33.4299 1216.05 42.7099 1214.4 43.0899C1212.75 43.4699 1196.94 34.9499 1196.95 42.6499C1196.78 44.5599 1198.29 44.5699 1199.45 45.1999C1206.39 48.9499 1218.66 50.8199 1220.04 60.6099C1222.47 77.8899 1207.88 82.1099 1193.63 81.0299C1191.35 80.8599 1182.86 79.4199 1181.43 78.2399C1179.64 76.7599 1179.58 66.9599 1181.57 65.1999C1185.49 66.4399 1189.29 67.8899 1193.46 68.1999C1196.1 68.3899 1204.09 69.2099 1204.04 65.6499C1203.98 60.7399 1184.63 59.3699 1181.06 48.6199C1173.73 26.5599 1205.89 25.7899 1218.92 32.2699V32.2599Z\" fill=\"#626E92\"/>\\n<path d=\"M726 80.1499C723.54 79.7599 715.9 81.3899 715.07 78.5299L715.23 11.7699C715.85 8.34991 724.94 7.97991 725.86 10.7899C727.15 14.7199 725.68 28.1799 725.47 33.1499C725.41 34.5299 724.56 34.8799 726.5 36.1299C730.71 29.2399 737.82 28.3099 745.5 29.1499C756.19 30.3099 759.28 37.9999 760.03 47.6199C760.37 52.0299 760.76 75.7599 759.85 78.5199C758.88 81.4999 751.59 79.7199 748.99 80.1599V44.6599C748.99 43.8599 746.04 39.4999 744.75 38.8899C740.57 36.9399 731.78 38.0599 728.96 41.8899C728.42 42.6299 725.99 49.0899 725.99 49.6499V80.1499H726Z\" fill=\"#626E92\"/>\\n<path d=\"M1247.99 29.16C1248.64 29.8 1259.79 28.22 1260.01 29.73C1260.71 42.2 1260.86 43.16 1247.99 42.15C1249.04 47.89 1246.51 59.6 1248.16 64.49C1250.06 70.13 1261 63.97 1261.88 67.74C1262 68.25 1260.86 77.79 1260.56 78.22C1257.99 81.91 1242.12 81.14 1237.73 78.93C1225.47 72.77 1233.94 52.88 1230.87 43.79C1229.79 40.59 1224.18 44.41 1223.91 38.65C1223.66 33.37 1229.05 32.61 1232 28.64C1233.99 25.96 1235.16 20.11 1237.7 19.34C1239.27 18.87 1245.92 18.79 1247.07 19.58C1249.13 21.01 1247.39 28.54 1248 29.15L1247.99 29.16Z\" fill=\"#626E92\"/>\\n<path d=\"M1015.87 30.2799L1028.01 67.1499C1030.12 67.4499 1029.63 67.2499 1030.24 65.8899C1032.37 61.1299 1040.43 31.3899 1042.17 30.3199C1042.86 29.8899 1050.11 29.9499 1051.53 30.1499C1052.95 30.3499 1053.25 29.5899 1053.02 31.6499C1047.11 46.0199 1042.5 60.9799 1036.76 75.3999C1030.38 91.4199 1027.58 105.31 1006.01 102.16C1006.28 100.57 1005.64 93.5199 1006.01 93.1499C1006.32 92.8299 1012.69 93.4199 1014.47 93.1099C1019.88 92.1399 1022.21 85.0599 1024.01 80.5799L1004.04 31.6499C1004.06 29.3899 1013.78 30.1299 1015.89 30.2799H1015.87Z\" fill=\"#626E92\"/>\\n<path d=\"M782 80.1499C779.56 79.7699 771.86 81.3799 771.08 78.5199L771.15 31.7399C771.64 29.7499 777.72 29.6399 779.38 30.0899C780.82 30.4899 779.96 36.2299 782.48 35.1299C784 34.4699 786 31.5299 788.81 30.4499C797.91 26.9399 811.13 28.7999 814.52 39.1299C816.89 46.3399 816.62 66.5299 816.05 74.6899C815.44 83.2999 812.1 79.4499 805 80.1499V44.6499C805 43.6499 800.66 38.7599 799.29 38.3599C791.21 35.9899 782 40.7099 782 49.6499V80.1499Z\" fill=\"#626E92\"/>\\n<path d=\"M797 272.15V286.15C805.05 286.13 807.85 284.29 807 293.66C806.21 302.33 798.85 296.28 797 298.14C796.29 298.85 796.91 316.94 797.5 318.15C799.6 322.46 807.64 318.72 808 319.15C807.34 323.22 810.03 329.23 805.61 331.25C799.71 333.95 787.95 333.62 783.99 327.66C783.46 326.86 781 321.03 781 320.65V298.15C779.89 297.95 776.3 298.45 775.99 298.15C775.56 297.73 775.56 286.56 775.99 286.14C776.37 285.77 780.62 286.52 781 286.15C781.63 285.55 780.06 277.22 781.46 275.11C782.86 273 793.99 272.56 797 272.15Z\" fill=\"#626E92\"/>\\n<path d=\"M817 298.15C816.64 297.8 812.36 298.51 811.99 298.15C811.58 297.75 811.77 288.12 811.98 286.72C812.19 285.32 816.48 286.66 817 286.15C817.57 285.59 816.3 275.19 817.1 274.25C817.54 273.73 829.44 271.95 830.46 272.09C835.87 272.84 830.94 282.62 833.12 286.02C834.75 286.64 841.52 285.67 841.99 286.14C842.41 286.57 842.41 297.72 841.99 298.15C841.34 298.8 832.45 296.8 832.21 299.64C832.18 300.05 832.98 300.39 832.98 300.64V318.64C832.98 321.45 842.13 319.5 843.97 319.14C843.22 324.69 846.71 329.88 840.02 331.68C834.58 333.15 824.62 333.6 820.53 329.08C820.09 328.59 816.98 323 816.98 322.63C816.98 319.24 817.86 298.98 816.98 298.13L817 298.15Z\" fill=\"#626E92\"/>\\n<path d=\"M722 128.15C721.74 128.43 721.11 134.7 721.05 135.8C720.77 141.01 725.68 137.86 729.48 138.12C736.31 138.58 744.14 143.45 745.02 150.64C747.29 169.08 735.54 175.82 718.51 174.15C709.45 173.26 708 171.41 709 162.16C715.69 163.7 732.98 167.9 733.98 157.57C734.67 150.49 728.71 148.04 722.48 148.07C719.29 148.08 712.28 150.59 710.21 146.94C708.43 143.81 712.69 124.97 710.95 119.84C711.15 119.18 713.21 118.15 713.49 118.15H740.49C742.67 118.15 742.67 128.15 740.49 128.15C737.9 128.15 722.62 127.48 721.99 128.15H722Z\" fill=\"#626E92\"/>\\n<path d=\"M575.5 173.15C573.33 172.48 573.7 167.1 574.52 165.17C575.99 161.73 591.28 149.39 594.97 144.63C598.04 140.68 602.01 134.88 599.04 129.85C594.46 122.09 582.12 132.75 580.02 131.7C579.02 131.2 574.93 126.85 574.93 125.63C574.94 122.73 584.94 118.59 587.58 118.23C609.58 115.22 619.24 130.37 605.02 147.67C601.05 152.49 594.37 156.86 590.67 161.1C589.69 162.23 589.93 162.75 589.99 164.14H612.99V173.14H575.49L575.5 173.15Z\" fill=\"#626E92\"/>\\n<path d=\"M702 164.15V173.15H663C663.18 170.56 662.4 167.65 663.52 165.17C664.83 162.27 677.68 151.55 680.97 147.63C684.92 142.93 691.48 136.33 687.44 130.2C681.46 121.12 671.82 133.77 668 131.71C667.05 131.2 663.99 126.72 663.98 125.64C663.94 122.21 673.57 118.64 676.58 118.24C699.52 115.2 707.34 131.29 693.02 148.68C690.73 151.46 678.9 161.26 678.48 162.15C677.98 163.21 679.27 164.15 679.49 164.15H701.99H702Z\" fill=\"#626E92\"/>\\n<path d=\"M623 14.1499V23.1499H604.5C604.39 23.1499 603 24.5399 603 24.6499V80.1499C601 80.0099 592 80.9399 592 78.6499V23.1499H573V14.1499H623Z\" fill=\"#626E92\"/>\\n<path d=\"M697.52 270.15H682V332.21H697.52V270.15Z\" fill=\"#626E92\"/>\\n<path d=\"M684.31 41.46C680.03 46.28 680.12 60.1 682.96 65.69C689.53 78.62 706.1 68.15 707 69.15C708.15 78.37 706.31 80.08 697.4 81.04C682.25 82.67 671.4 75.06 670.02 59.63C668.18 39.09 677.36 27.33 698.54 29.11C704.84 29.64 710.44 30.57 706.21 37.86C703.77 42.06 702.22 38.62 698.42 38.23C693.93 37.77 687.56 37.8 684.31 41.45V41.46Z\" fill=\"#626E92\"/>\\n<path d=\"M1053 119.65C1053.63 117.61 1058.9 117.32 1059.9 119.75L1079.49 165.15L1098.5 119.14C1099.64 117.18 1105 118.12 1105 119.64V171.64C1105 172.7 1102.16 173.54 1101 173.14V125.14C1099.65 125.43 1098.83 126.74 1098.28 127.92C1092.62 140.07 1088.21 159.5 1081.75 170.39C1079.71 173.84 1078.32 174.22 1076.23 170.41C1069.8 158.72 1065.57 140.47 1059.72 127.92C1059.17 126.75 1058.35 125.43 1057 125.14V173.14C1055.84 173.54 1053 172.7 1053 171.64V119.64V119.65Z\" fill=\"#626E92\"/>\\n<path d=\"M503 332.15V0.72998H507.01C507.63 111.47 505.22 221.96 506.04 332.7C505.62 336.14 504.87 337.13 502.99 334.15C503.62 333.18 504.1 332.02 504.43 330.69C504.02 311.99 505.38 331.86 504.18 332.28C503.84 332.4 503.43 332.3 502.99 332.14L503 332.15Z\" fill=\"#626E92\"/>\\n<path d=\"M770 286.15V330.65C770 332.92 754 332.92 754 330.65V286.15H770Z\" fill=\"#626E92\"/>\\n<path d=\"M892.88 9.07007H882V80.2101H892.88V9.07007Z\" fill=\"#626E92\"/>\\n<path d=\"M963.5 146.15C966.14 146.93 964.01 151.49 963.95 153.61C963.8 158.89 963.65 164.38 964.83 169.56C950.65 178.69 925.8 175.6 920.47 157.18C913.03 131.51 929.93 115.2 955.42 118.23C959.04 118.66 964.74 119.89 963 124.14C953.9 122.12 947.44 119.61 938.01 122.65C917.73 129.19 917.81 166.59 940.76 169.88C944.84 170.47 958.55 171.14 960.51 167.15C961.65 164.84 961.83 149.14 958.5 149.14H944V146.14C949.07 147.08 959.17 144.86 963.5 146.14V146.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1038 118.15V159.65C1038 160.09 1035.41 165.62 1034.84 166.49C1028.05 176.86 1008 176.93 1000.57 167.09C1000.02 166.36 997.01 161.02 997.01 160.65V119.65C997.01 117.93 1001.01 117.93 1001.01 119.65V159.65C1001.01 163.96 1009.33 169.47 1013.6 170.06C1044.59 174.33 1030.87 138.17 1034.01 120.65C1034.46 118.17 1035.61 117.88 1038.01 118.15H1038Z\" fill=\"#626E92\"/>\\n<path d=\"M868 143.15V146.15H845.5C845.17 146.15 843.98 147.47 843 147.15V169.15C843.98 168.83 845.17 170.15 845.5 170.15H868.5C869.98 170.15 869.98 173.15 868.5 173.15H840.5C840.39 173.15 839 171.76 839 171.65V119.65C839 119.54 840.39 118.15 840.5 118.15H868.5C870.22 118.15 870.22 122.15 868.5 122.15H844.5C844.39 122.15 843 123.54 843 123.65V141.65C843 141.76 844.39 143.15 844.5 143.15H868Z\" fill=\"#626E92\"/>\\n<path d=\"M503 332.15C503.15 331.58 504.71 330.25 504.07 328.76L504 1.6499H506.01C505.82 10.9899 506.23 20.3599 506.05 29.6899C504.14 129.56 508.33 231.21 505 330.69C504.94 332.62 506.02 334.7 503 334.14C502.89 333.97 502.18 333.99 502.14 333.65C502.09 333.2 502.88 332.59 503 332.14V332.15Z\" fill=\"#626E92\"/>\\n<path d=\"M882 173.15V118.15C884.4 117.88 885.55 118.17 886 120.65C887.29 135.18 884.29 152.54 885.95 166.7C886.07 167.71 886.41 170.15 887.5 170.15H911.5C912.98 170.15 912.98 173.15 911.5 173.15H882Z\" fill=\"#626E92\"/>\\n<path d=\"M903.91 332.48C908.632 332.48 912.46 328.652 912.46 323.93C912.46 319.208 908.632 315.38 903.91 315.38C899.188 315.38 895.36 319.208 895.36 323.93C895.36 328.652 899.188 332.48 903.91 332.48Z\" fill=\"#626E92\"/>\\n<path d=\"M982 173.15C981.28 173.02 978 173.35 978 173.15V119.65C978 117.93 982 117.93 982 119.65V173.15Z\" fill=\"#626E92\"/>\\n<path d=\"M770 280.15H754C754.54 275.59 751.82 270.79 757.45 270.1C767.28 268.89 771.77 269.02 770 280.15Z\" fill=\"#626E92\"/>\\n<path d=\"M388.96 144.7C387.46 69.7 365.97 -4.68004 274.75 5.40996C197.48 13.96 190.63 117.88 195.01 177.65C199.6 240.29 223.3 303.59 297.49 300.15C380.78 296.29 390.27 210.35 388.96 144.7ZM322.51 249.16C304.78 268.84 271.05 264.79 256.58 243.06C237.71 214.73 238.45 138.23 243.12 104.77C246.35 81.68 255.03 47.15 282.75 43.4C327.24 37.38 338.49 77.94 341.97 113.66C345.33 148.06 346.45 222.57 322.5 249.15L322.51 249.16Z\" fill=\"#626E92\"/>\\n<path d=\"M32 255.15C26.99 256.15 21.66 255.21 16.02 252.33C9.81 250.91 5.14 248.19 2 244.15C3.1 244.93 3.77 245.79 4 246.73V282.46L2 283.65C4.52 282.16 12.92 285.98 11 289.15C7.2 287.8 3.33 287.23 0 284.15V243.15C5.58 242.26 9.76 246.49 14.31 248.34C20.16 250.71 26.57 252.04 32 255.15Z\" fill=\"#626E92\"/>\\n<path d=\"M116 253.15C142.85 236.35 146.51 200.96 131 175.15C149.91 198.13 143.37 238.97 116 253.15Z\" fill=\"#626E92\"/>\\n<path d=\"M751.71 209.35C760.7 206.64 759.8 218.19 752.57 217.18C748.18 216.57 747.69 210.57 751.71 209.35Z\" fill=\"#626E92\"/>\\n<path d=\"M694.67 209.31C701.03 207.08 704.88 213.95 698.98 216.66C693.55 219.15 689.62 211.09 694.67 209.31Z\" fill=\"#626E92\"/>\\n<path d=\"M1035.71 209.35C1044.79 206.59 1043.68 218.32 1036.53 217.2C1032.86 216.63 1031.54 210.61 1035.71 209.35Z\" fill=\"#626E92\"/>\\n<path d=\"M1094.5 217.53C1096.91 217.53 1098.87 215.574 1098.87 213.16C1098.87 210.747 1096.91 208.79 1094.5 208.79C1092.09 208.79 1090.13 210.747 1090.13 213.16C1090.13 215.574 1092.09 217.53 1094.5 217.53Z\" fill=\"#626E92\"/>\\n<path d=\"M723.72 209.33C727.46 208.22 731.63 210.84 729.07 214.7C724.43 221.7 715.57 211.75 723.72 209.33Z\" fill=\"#626E92\"/>\\n<path d=\"M1063.64 209.29C1070.09 207.12 1073.85 213.97 1067.97 216.66C1062.09 219.35 1059.95 210.53 1063.64 209.29Z\" fill=\"#626E92\"/>\\n<path d=\"M810.56 217.46C812.951 217.46 814.89 215.521 814.89 213.13C814.89 210.739 812.951 208.8 810.56 208.8C808.169 208.8 806.23 210.739 806.23 213.13C806.23 215.521 808.169 217.46 810.56 217.46Z\" fill=\"#626E92\"/>\\n<path d=\"M1404.71 209.36C1414.08 206.52 1412.25 218.8 1405.72 217.01C1402.28 216.07 1400.23 210.72 1404.71 209.36Z\" fill=\"#626E92\"/>\\n<path d=\"M1378.44 217.47C1380.83 217.47 1382.77 215.531 1382.77 213.14C1382.77 210.749 1380.83 208.81 1378.44 208.81C1376.05 208.81 1374.11 210.749 1374.11 213.14C1374.11 215.531 1376.05 217.47 1378.44 217.47Z\" fill=\"#626E92\"/>\\n<path d=\"M668.37 217.46C670.745 217.46 672.67 215.535 672.67 213.16C672.67 210.785 670.745 208.86 668.37 208.86C665.995 208.86 664.07 210.785 664.07 213.16C664.07 215.535 665.995 217.46 668.37 217.46Z\" fill=\"#626E92\"/>\\n<path d=\"M1321.63 217.45C1324 217.45 1325.93 215.525 1325.93 213.15C1325.93 210.775 1324 208.85 1321.63 208.85C1319.26 208.85 1317.33 210.775 1317.33 213.15C1317.33 215.525 1319.26 217.45 1321.63 217.45Z\" fill=\"#626E92\"/>\\n<path d=\"M611.64 217.28C613.993 217.28 615.9 215.373 615.9 213.02C615.9 210.667 613.993 208.76 611.64 208.76C609.287 208.76 607.38 210.667 607.38 213.02C607.38 215.373 609.287 217.28 611.64 217.28Z\" fill=\"#626E92\"/>\\n<path d=\"M1264.64 217.28C1266.99 217.28 1268.9 215.373 1268.9 213.02C1268.9 210.667 1266.99 208.76 1264.64 208.76C1262.29 208.76 1260.38 210.667 1260.38 213.02C1260.38 215.373 1262.29 217.28 1264.64 217.28Z\" fill=\"#626E92\"/>\\n<path d=\"M1151.36 217.27C1153.71 217.27 1155.61 215.367 1155.61 213.02C1155.61 210.673 1153.71 208.77 1151.36 208.77C1149.01 208.77 1147.11 210.673 1147.11 213.02C1147.11 215.367 1149.01 217.27 1151.36 217.27Z\" fill=\"#626E92\"/>\\n<path d=\"M952.43 217.39C954.783 217.39 956.69 215.483 956.69 213.13C956.69 210.777 954.783 208.87 952.43 208.87C950.077 208.87 948.17 210.777 948.17 213.13C948.17 215.483 950.077 217.39 952.43 217.39Z\" fill=\"#626E92\"/>\\n<path d=\"M1293.29 217.27C1295.62 217.27 1297.51 215.381 1297.51 213.05C1297.51 210.719 1295.62 208.83 1293.29 208.83C1290.96 208.83 1289.07 210.719 1289.07 213.05C1289.07 215.381 1290.96 217.27 1293.29 217.27Z\" fill=\"#626E92\"/>\\n<path d=\"M924 217.13C926.342 217.13 928.24 215.232 928.24 212.89C928.24 210.548 926.342 208.65 924 208.65C921.658 208.65 919.76 210.548 919.76 212.89C919.76 215.232 921.658 217.13 924 217.13Z\" fill=\"#626E92\"/>\\n<path d=\"M866.94 217.17C869.298 217.17 871.21 215.258 871.21 212.9C871.21 210.542 869.298 208.63 866.94 208.63C864.582 208.63 862.67 210.542 862.67 212.9C862.67 215.258 864.582 217.17 866.94 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M640 217.13C642.342 217.13 644.24 215.232 644.24 212.89C644.24 210.548 642.342 208.65 640 208.65C637.658 208.65 635.76 210.548 635.76 212.89C635.76 215.232 637.658 217.13 640 217.13Z\" fill=\"#626E92\"/>\\n<path d=\"M580.15 209.3C585.53 205.9 591.63 214.91 584.29 217C578.9 218.53 578.16 210.56 580.15 209.3Z\" fill=\"#626E92\"/>\\n<path d=\"M980.65 217.2C982.964 217.2 984.84 215.324 984.84 213.01C984.84 210.696 982.964 208.82 980.65 208.82C978.336 208.82 976.46 210.696 976.46 213.01C976.46 215.324 978.336 217.2 980.65 217.2Z\" fill=\"#626E92\"/>\\n<path d=\"M895.77 217.22C898.09 217.22 899.97 215.34 899.97 213.02C899.97 210.7 898.09 208.82 895.77 208.82C893.45 208.82 891.57 210.7 891.57 213.02C891.57 215.34 893.45 217.22 895.77 217.22Z\" fill=\"#626E92\"/>\\n<path d=\"M1349.97 217.12C1352.31 217.12 1354.2 215.226 1354.2 212.89C1354.2 210.554 1352.31 208.66 1349.97 208.66C1347.63 208.66 1345.74 210.554 1345.74 212.89C1345.74 215.226 1347.63 217.12 1349.97 217.12Z\" fill=\"#626E92\"/>\\n<path d=\"M1208.14 217.17C1210.43 217.17 1212.28 215.316 1212.28 213.03C1212.28 210.743 1210.43 208.89 1208.14 208.89C1205.85 208.89 1204 210.743 1204 213.03C1204 215.316 1205.85 217.17 1208.14 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M1179.86 217.16C1182.15 217.16 1184.01 215.302 1184.01 213.01C1184.01 210.718 1182.15 208.86 1179.86 208.86C1177.57 208.86 1175.71 210.718 1175.71 213.01C1175.71 215.302 1177.57 217.16 1179.86 217.16Z\" fill=\"#626E92\"/>\\n<path d=\"M1123.02 217.09C1125.34 217.09 1127.22 215.21 1127.22 212.89C1127.22 210.57 1125.34 208.69 1123.02 208.69C1120.7 208.69 1118.82 210.57 1118.82 212.89C1118.82 215.21 1120.7 217.09 1123.02 217.09Z\" fill=\"#626E92\"/>\\n<path d=\"M1009.14 217.17C1011.43 217.17 1013.28 215.316 1013.28 213.03C1013.28 210.743 1011.43 208.89 1009.14 208.89C1006.85 208.89 1005 210.743 1005 213.03C1005 215.316 1006.85 217.17 1009.14 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M839.02 217.09C841.34 217.09 843.22 215.21 843.22 212.89C843.22 210.57 841.34 208.69 839.02 208.69C836.7 208.69 834.82 210.57 834.82 212.89C834.82 215.21 836.7 217.09 839.02 217.09Z\" fill=\"#626E92\"/>\\n<path d=\"M782.14 217.17C784.426 217.17 786.28 215.316 786.28 213.03C786.28 210.743 784.426 208.89 782.14 208.89C779.854 208.89 778 210.743 778 213.03C778 215.316 779.854 217.17 782.14 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M1236.28 216.91C1238.51 216.91 1240.31 215.106 1240.31 212.88C1240.31 210.654 1238.51 208.85 1236.28 208.85C1234.05 208.85 1232.25 210.654 1232.25 212.88C1232.25 215.106 1234.05 216.91 1236.28 216.91Z\" fill=\"#626E92\"/>\\n<path d=\"M622.41 280.24C618.57 275.25 608.61 270.15 602.5 270.15H578V332.15H600.5C625.79 332.15 636.34 298.35 622.41 280.24ZM594 318.15V284.15C618.17 278.71 617.59 322.57 594 318.15Z\" fill=\"#626E92\"/>\\n<path d=\"M986.5 70.1499C981.74 69.4999 974.61 70.1499 969.5 70.1499C967.56 70.1499 966.12 65.3799 969 63.6399C970.83 62.5299 977.7 63.3199 981.05 62.6999C991.19 60.8099 996.39 52.8799 994.95 42.6999C994.61 40.3099 991.29 37.3199 994.67 36.3199C998.93 35.0499 1001.86 37.9899 1001.01 30.1499C988.15 32.1499 969.06 23.8499 959.47 35.1199C954.35 41.1399 954.53 51.1399 959.45 57.2299C960.4 58.4099 962.97 59.0599 963.08 59.7299C963.64 63.2699 952.23 69.0499 961.99 75.6599C951.91 79.5399 947.49 91.2999 956.95 98.7099C965.58 105.46 993.16 103.51 998.78 92.4299C1004.16 81.8299 997.76 71.6799 986.5 70.1499ZM984.76 49.4299C984.56 50.4999 983.42 53.0399 982.68 53.8399C978.28 58.6399 967.52 56.5099 966.24 49.4299C962.86 30.7499 988.16 30.8099 984.76 49.4299ZM990.81 86.3999C989.54 101.23 950.09 95.7799 963.35 82.4999C968.46 77.3799 991.65 76.6299 990.81 86.3999Z\" fill=\"#626E92\"/>\\n<path d=\"M1170.04 41.61C1169.78 39.59 1167.03 34.83 1165.66 33.49C1158.09 26.1 1137.51 28.76 1128.03 32.2C1127.44 33.02 1131.37 42.31 1131.95 42.72C1134.94 44.81 1146.3 36.9 1151.47 42.18C1158.93 49.81 1143.08 47.85 1139.61 48.26C1129.15 49.5 1121.18 55.13 1122.09 66.52C1123.43 83.3 1145.47 85.48 1154.5 73.17C1156.42 74.52 1157.65 79.3 1159.66 79.99C1161.32 80.55 1168.61 80.58 1169.56 79.22C1170.63 77.68 1170.53 45.43 1170.04 41.61ZM1141.3 59.44C1143.57 56.63 1153.72 55.44 1154.05 59.66C1155.03 72.26 1133.05 69.61 1141.3 59.44Z\" fill=\"#626E92\"/>\\n<path d=\"M722.78 285.44C706.45 287.18 702.33 299.93 703.99 314.66C706.52 337.04 740.63 339.22 746.9 318.56C752.26 300.9 742.41 283.34 722.78 285.44ZM729.75 319.89C728.32 321.24 725.78 321.32 723.97 320.75C716.42 318.39 716.83 292.08 728.78 297.89C733.98 300.42 733.67 316.17 729.75 319.89Z\" fill=\"#626E92\"/>\\n<path d=\"M674.7 296.96C668.83 280.86 639.98 281.33 634.51 298.17C626.96 321.39 641.92 337.13 665.4 332.06C676.28 329.71 672.08 328 670.99 319.16C665.82 320.5 660.11 322.18 654.71 320.95C651.82 320.29 645.35 314.35 649.5 313.16C653.19 312.1 669.21 313.16 674.5 313.16C677.44 313.16 675.58 299.37 674.7 296.96ZM662 303.15C658.36 302.8 653.99 303.65 650.48 303.15C649.14 302.96 648.72 303.7 648.99 301.65C650.07 293.56 662.63 294.6 662 303.14V303.15Z\" fill=\"#626E92\"/>\\n<path d=\"M891 313.15C894.42 293.36 880.42 280.38 861.01 286.66C843.3 292.39 843.38 322.82 860 331.15C867.92 332.38 876.13 332.86 884 331.15C885.13 330.5 887.37 330.68 887.77 328.54C888.02 327.22 886.26 320.3 885.04 319.6C883.75 318.86 862.6 326.4 863.99 313.15H890.99H891ZM876.98 301.71C876.95 305.6 867.25 302.02 863.99 303.15C862.38 293.97 877.03 294.13 876.98 301.71Z\" fill=\"#626E92\"/>\\n<path d=\"M860 331.15C865.27 333.79 875.68 334.19 881.52 333.13C883.61 332.75 883.61 331.37 884 331.15C876.75 334.36 867.6 332.96 860 331.15Z\" fill=\"#626E92\"/>\\n<path d=\"M631.73 118.38C615 121.78 615 163.12 628.05 171.6C641.1 180.08 655.43 170.19 657.01 155.65C659.04 136.92 656.66 113.3 631.73 118.37V118.38ZM641.57 163.21C627.11 171.8 626.98 129.07 636.75 127.31C649.27 125.05 647.98 159.41 641.57 163.21Z\" fill=\"#626E92\"/>\\n<path d=\"M918.95 29.6001C897.41 33.4201 896.15 70.5401 914.76 78.8901C923.34 82.7401 936.01 81.6301 942.65 74.8001C946.17 71.1801 948.56 65.7601 949.05 60.6901C951.06 39.6801 941.59 25.5801 918.96 29.6001H918.95ZM929.29 71.9401C908.73 76.6801 908.19 40.8901 921.73 38.4001C926.73 37.4801 931.6 37.5801 935 41.6501C940.58 48.3201 939.75 69.5301 929.28 71.9401H929.29Z\" fill=\"#626E92\"/>\\n<path d=\"M841.74 29.3899C816.28 33.6699 817.4 84.5499 851.4 81.0399C864.85 79.6499 871.92 68.4999 872.08 55.6599C872.31 37.1499 860.3 26.2599 841.74 29.3799V29.3899ZM851.27 71.9199C830.98 76.0899 830.86 41.2999 843.7 38.3699C865.91 33.2899 865.68 68.9599 851.27 71.9199Z\" fill=\"#626E92\"/>\\n<path d=\"M662.89 47.7599C660.03 22.2999 624.3 23.1799 619.23 45.8899C614.36 67.7199 626.35 83.4899 649.22 80.8799C657.54 79.9299 661.42 79.1899 661 70.1699C655.37 70.1299 650.15 73.2499 644.51 73.2399C635.05 73.2199 628.89 66.4699 630 57.1699H661.5C663.61 57.1699 663.08 49.4899 662.89 47.7699V47.7599ZM652 50.1499H630C629.14 32.5199 654.19 32.5199 652 50.1499Z\" fill=\"#626E92\"/>\\n<path d=\"M817.02 144.65C827.08 141.35 829.49 126.64 820.53 121.12C819.73 120.63 811.98 118.15 811.5 118.15H792.5C792.39 118.15 791 119.54 791 119.65V173.15H814.5C818.63 173.15 825.53 167.51 826.57 163.22C828.86 153.76 825.95 147.91 817.02 144.65ZM795 122.15H812.5C812.85 122.15 817.29 124.21 817.96 124.69C824.72 129.54 822.77 139.11 815.19 141.85C812.19 142.93 794.99 144.56 794.99 141.65V122.15H795ZM816.06 168.71C813.39 169.57 795 171.65 795 168.65C795 164.33 794.12 150.5 795 147.65C795.84 144.93 811.39 146.77 814.28 147.37C825.96 149.83 825.7 165.62 816.06 168.7V168.71Z\" fill=\"#626E92\"/>\\n<path d=\"M1378.5 17.1599C1372.99 12.8699 1364.43 12.2699 1357.74 13.3999C1336.79 16.9499 1336.82 60.9799 1347.97 73.6899C1356.46 83.3699 1374.73 83.3899 1382.24 72.8999C1390.88 60.8399 1391.03 26.9199 1378.49 17.1599H1378.5ZM1367 66.6599C1362.53 68.8299 1361.47 66.2799 1360 63.1499C1357.16 57.1199 1356.54 33.3699 1360.51 28.1699C1363.67 24.0299 1368.17 26.5099 1369.73 30.9199C1371.69 36.4499 1372.53 63.9699 1367 66.6599Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12797\">\\n<rect width=\"1440\" height=\"335.19\" fill=\"white\" transform=\"translate(0 0.72998)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nrd1k7\",\"data-framer-name\":\"Award 1\",layoutDependency:layoutDependency,layoutId:\"a5GAUN9X1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dnbp14\",\"data-framer-name\":\"Client logo\",layoutDependency:layoutDependency,layoutId:\"WQqLFIyEf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qp116p\",\"data-framer-name\":\"Isolatiemodus\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:286,intrinsicWidth:825,layoutDependency:layoutDependency,layoutId:\"O_eh3xYtg\",svg:'<svg width=\"825\" height=\"286\" viewBox=\"0 0 825 286\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12756)\">\\n<path d=\"M499 48.57C489.7 50.44 490.21 45.62 485.51 40.57C412.42 -38.02 302.07 56.66 356.59 137.49C375.19 165.07 410 177.99 442.37 170.45C446.09 169.58 458.58 163.88 459.49 163.93C460.93 164.02 468.44 170.91 468 171.56C433.54 192.18 391.24 190.59 359.53 165.55C313.18 128.95 313.46 57.28 359.53 20.61C404.54 -15.22 471.93 -1.97003 499 48.57Z\" fill=\"#626E92\"/>\\n<path d=\"M458.01 27.58C467.11 31.87 475.53 39.54 481.41 47.67C510.73 88.14 492.18 146.82 444 161.08C377.47 180.76 323.45 108.03 361.5 50.6C366.94 55.48 361.47 60.4 359.73 65.81C343.8 115.39 385.36 162.14 436.01 149.09C482.25 137.17 498.08 79.18 466.03 44.06C460.53 38.04 454.26 37.96 458.01 27.59V27.58Z\" fill=\"#626E92\"/>\\n<path d=\"M418 143.57C420.29 137.51 429.46 138.65 435.54 136.62C465.75 126.52 476.9 90.27 460.42 63.66C439.72 30.25 387.82 35.02 373.52 71.6C370.96 78.15 371.91 88.49 364.01 88.58C361.66 40.83 418.04 12.58 455.48 42.61C498.43 77.05 472.02 145.13 418 143.58V143.57Z\" fill=\"#626E92\"/>\\n<path d=\"M14.5 222.58L28.01 264.58C32.66 260.28 41.08 224.04 43.14 222.72C43.72 222.35 56.38 222.23 56.9 222.68L70.5 265.59L84.48 223.56C86.28 221.4 94.88 223.1 98 222.58L78.91 282.99C77.56 285.61 63.5 284.86 62.88 283.98L49.49 243.56L35.89 284.47L20.1 284.45L0 222.58H14.5Z\" fill=\"#626E92\"/>\\n<path d=\"M618 246.58H645V222.58H660V284.58C657.56 284.25 645 285.64 645 283.08V258.58H618V283.08C618 285.64 605.44 284.25 603 284.58V222.58C605.44 222.91 618 221.52 618 224.08V246.58Z\" fill=\"#626E92\"/>\\n<path d=\"M522 222.58V234.58H490V247.58H518V258.58H490V272.58H523V284.58H476.5C476.39 284.58 475 283.19 475 283.08V224.08C475 223.97 476.39 222.58 476.5 222.58H522Z\" fill=\"#626E92\"/>\\n<path d=\"M155 222.58V234.58H123V247.58H152V258.58H123V272.58H156V284.58H109V222.58H155Z\" fill=\"#626E92\"/>\\n<path d=\"M560.76 221.83C571.96 220.41 583.62 223.23 590.93 232.21C591.2 233.78 584.08 240.27 582.33 240.43C581.38 240.51 573.76 233.06 565.65 233.63C539.49 235.49 542.05 274.22 567.25 273.3C573.98 273.05 581.27 266.53 582.51 266.53C583.75 266.53 590.78 273.29 590.94 274.2C591.81 279.19 574.47 285.02 570.41 285.45C525.27 290.26 519.23 227.08 560.77 221.82L560.76 221.83Z\" fill=\"#626E92\"/>\\n<path d=\"M336 222.58V234.58H316V284.58H302V234.58H282V222.58H336Z\" fill=\"#626E92\"/>\\n<path d=\"M466 222.58V234.58H446V284.58H432V234.58H412V222.58H466Z\" fill=\"#626E92\"/>\\n<path d=\"M254 222.58V272.58H285C284.8 274.71 285.88 284.58 283.5 284.58H240.5C240.39 284.58 239 283.19 239 283.08V224.08C239 221.52 251.56 222.91 254 222.58Z\" fill=\"#626E92\"/>\\n<path d=\"M696 222.58V284.58H682V234.58H669.99L670 222.58H696Z\" fill=\"#626E92\"/>\\n<path d=\"M731.76 221.84C701.6 225.85 701.44 280.72 731.74 285.33C771.55 291.39 773.34 216.31 731.76 221.84ZM730.99 272.07C720.63 267.15 720.85 236.02 733.75 233.76C754.01 230.2 752.24 282.17 730.99 272.07Z\" fill=\"#626E92\"/>\\n<path d=\"M793.76 221.84C763.12 225.91 763.6 282.31 794.62 285.47C834.18 289.5 834.3 216.45 793.76 221.84ZM792.99 272.07C782.43 267.07 782.87 235.64 795.76 233.76C816.2 230.79 813.95 282 792.99 272.07Z\" fill=\"#626E92\"/>\\n<path d=\"M203.86 222.71C203.3 222.35 192.09 222.3 190.46 222.5C187.07 222.92 165.55 277.53 162 284.57H177C177.34 281.96 180.75 272.38 182.66 271.73C184.62 271.06 206.37 271.13 209.54 271.5C212.46 271.84 214.31 284.57 216.5 284.57H231L203.86 222.71ZM187 260.58C187.19 258.3 195.63 236.52 196.99 237.58C198.6 245.56 204.35 252.55 205 260.58H187Z\" fill=\"#626E92\"/>\\n<path d=\"M360 222.58V246.58H388V222.58H402V284.58H388V259.58H360V284.58H346V222.58H360Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12756\">\\n<rect width=\"824.22\" height=\"285.36\" fill=\"white\" transform=\"translate(0 0.369995)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})],speed:26,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7yacw\",layoutDependency:layoutDependency,layoutId:\"unyrkIO_4\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[NrZZoXDoV&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2tzre0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VfIXpswcC-container\",nodeId:\"VfIXpswcC\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:G_vw5ZYYl,height:\"100%\",id:\"VfIXpswcC\",isMixedBorderRadius:false,layoutId:\"VfIXpswcC\",loop:nOtTaxq6T,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:AGSfBEHEN,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({elkQxU5ds:{objectFit:pZbecZTER}},baseVariant,gestureVariant)})})}),GHbKHYPft&&/*#__PURE__*/_jsxs(MotionDivWithResponsiveContainerzexnyv,{className:\"framer-zexnyv\",\"data-framer-name\":\"Content lg:col-6\",layoutDependency:layoutDependency,layoutId:\"sWoXswMtj\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9k3mu7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"r1ltc2f6s-container\",nodeId:\"r1ltc2f6s\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(HubSpotForm,{dataHostingLocation:\"na1\",formId:vvqoYeomz,height:\"100%\",id:\"r1ltc2f6s\",layoutId:\"r1ltc2f6s\",portalId:rUqsSGnJ3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y0xvtt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Pu1vlJuWC-container\",nodeId:\"Pu1vlJuWC\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script>\\ndocument.addEventListener(\"DOMContentLoaded\", function () {\\n    // Controleer elke 500ms of het HubSpot-formulier is geladen\\n    let checkForm = setInterval(function () {\\n        let submitButton = document.querySelector(\\'.hs-button.primary.large\\');\\n        if (submitButton) {\\n            clearInterval(checkForm); // Stop met controleren als de knop gevonden is\\n            submitButton.addEventListener(\"click\", function (event) {\\n                event.preventDefault(); // Voorkom standaard formulierverzending\\n                // Simuleer de formulierinzending maar open in een nieuw venster\\n                let form = submitButton.closest(\"form\");\\n                if (form && form.action) {\\n                    window.open(form.action, \"_blank\"); // Open formulieractie in een nieuw tabblad\\n                }\\n            });\\n        }\\n    }, 500); // Controleert om de halve seconde\\n});\\n</script>',id:\"Pu1vlJuWC\",layoutId:\"Pu1vlJuWC\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),I3WgZZcBy&&/*#__PURE__*/_jsx(MotionDivWithResponsiveContainer1eqtdso,{className:\"framer-1eqtdso\",\"data-framer-name\":\"Embed\",layoutDependency:layoutDependency,layoutId:\"xhKNRHkUa\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6wd9oz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dSVat5wuJ-container\",nodeId:\"dSVat5wuJ\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script>\\ndocument.addEventListener(\"DOMContentLoaded\", function () {\\n    window.addEventListener(\"message\", function (event) {\\n        // Check if the event data indicates a HubSpot form submission\\n        if (typeof event.data === \"string\" && event.data.indexOf(\"hs-form-submit\") !== -1) {\\n            setTimeout(function () {\\n                // Find any HubSpot meeting link that appeared after submission\\n                let meetingLink = document.querySelector(\\'a[href*=\"meetings.hubspot.com\"]\\');\\n                if (meetingLink) {\\n                    window.open(meetingLink.href, \"_blank\");\\n                }\\n            }, 500); // Delay to ensure the link is generated\\n        }\\n    }, false);\\n});\\n</script>\\n\\n\\n\\n\\n\\n\\n',id:\"dSVat5wuJ\",layoutId:\"dSVat5wuJ\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),mtezlGCX6&&/*#__PURE__*/_jsx(MotionDivWithResponsiveContainerop5yu1,{className:\"framer-op5yu1\",\"data-framer-name\":\"Embed\",layoutDependency:layoutDependency,layoutId:\"CcvnfIsgY\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fife84-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HBao1wq6F-container\",nodeId:\"HBao1wq6F\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script charset=\"utf-8\" type=\"text/javascript\" src=\"//js.hsforms.net/forms/embed/v2.js\"></script>\\n<script>\\n  hbspt.forms.create({\\n    portalId: \"5641482\",\\n    formId: \"82afbf97-1fda-441b-bd2b-aaee1a3b2b86\",\\n    region: \"na1\",\\n    onFormSubmit: function($form) {\\n      window.open(\\n        \\'https://storyteller.investsuite.com/demo.com/#/story?id=https://production-storyteller-api-webapp.s3.eu-west-1.amazonaws.com/example-reports-ivs-website/report-2.json&mode=web\\',\\n        \\'_blank\\'\\n      );\\n    }\\n  });\\n</script>\\n',id:\"HBao1wq6F\",layoutId:\"HBao1wq6F\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),BttyN5iIK&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1724,pixelWidth:2880,sizes:\"546px\",...toResponsiveImage(y7pc0iEWb),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1w2wxze\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ek9uD6reJ\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({CkKLSDkBO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-975.8)/2+0+0)+0+0+120+315.8+0),pixelHeight:1724,pixelWidth:2880,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(y7pc0iEWb),...{positionX:\"center\",positionY:\"center\"}}},elkQxU5ds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1235.8)/2+0+0)+0+0+120+315.8+0),pixelHeight:1724,pixelWidth:2880,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(y7pc0iEWb),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})}),dEc4aUqTr&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19kzhvj\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"KPuV6XmpY\",style:{\"--border-bottom-width\":(fLru66aqu.borderBottomWidth??fLru66aqu.borderWidth)+\"px\",\"--border-color\":fLru66aqu.borderColor,\"--border-left-width\":(fLru66aqu.borderLeftWidth??fLru66aqu.borderWidth)+\"px\",\"--border-right-width\":(fLru66aqu.borderRightWidth??fLru66aqu.borderWidth)+\"px\",\"--border-style\":fLru66aqu.borderStyle,\"--border-top-width\":(fLru66aqu.borderTopWidth??fLru66aqu.borderWidth)+\"px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mqulmi-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JI1oCnIDH-container\",nodeId:\"JI1oCnIDH\",rendersWithMotion:true,scopeId:\"h_NJdonIk\",style:{opacity:.6},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"JI1oCnIDH\",layoutId:\"JI1oCnIDH\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nrd1k7\",\"data-framer-name\":\"Award 1\",layoutDependency:layoutDependency,layoutId:\"a5GAUN9X1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dnbp14\",\"data-framer-name\":\"Client logo\",layoutDependency:layoutDependency,layoutId:\"WQqLFIyEf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qp116p\",\"data-framer-name\":\"Isolatiemodus\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:286,intrinsicWidth:825,layoutDependency:layoutDependency,layoutId:\"O_eh3xYtg\",svg:'<svg width=\"825\" height=\"286\" viewBox=\"0 0 825 286\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12756)\">\\n<path d=\"M499 48.57C489.7 50.44 490.21 45.62 485.51 40.57C412.42 -38.02 302.07 56.66 356.59 137.49C375.19 165.07 410 177.99 442.37 170.45C446.09 169.58 458.58 163.88 459.49 163.93C460.93 164.02 468.44 170.91 468 171.56C433.54 192.18 391.24 190.59 359.53 165.55C313.18 128.95 313.46 57.28 359.53 20.61C404.54 -15.22 471.93 -1.97003 499 48.57Z\" fill=\"#626E92\"/>\\n<path d=\"M458.01 27.58C467.11 31.87 475.53 39.54 481.41 47.67C510.73 88.14 492.18 146.82 444 161.08C377.47 180.76 323.45 108.03 361.5 50.6C366.94 55.48 361.47 60.4 359.73 65.81C343.8 115.39 385.36 162.14 436.01 149.09C482.25 137.17 498.08 79.18 466.03 44.06C460.53 38.04 454.26 37.96 458.01 27.59V27.58Z\" fill=\"#626E92\"/>\\n<path d=\"M418 143.57C420.29 137.51 429.46 138.65 435.54 136.62C465.75 126.52 476.9 90.27 460.42 63.66C439.72 30.25 387.82 35.02 373.52 71.6C370.96 78.15 371.91 88.49 364.01 88.58C361.66 40.83 418.04 12.58 455.48 42.61C498.43 77.05 472.02 145.13 418 143.58V143.57Z\" fill=\"#626E92\"/>\\n<path d=\"M14.5 222.58L28.01 264.58C32.66 260.28 41.08 224.04 43.14 222.72C43.72 222.35 56.38 222.23 56.9 222.68L70.5 265.59L84.48 223.56C86.28 221.4 94.88 223.1 98 222.58L78.91 282.99C77.56 285.61 63.5 284.86 62.88 283.98L49.49 243.56L35.89 284.47L20.1 284.45L0 222.58H14.5Z\" fill=\"#626E92\"/>\\n<path d=\"M618 246.58H645V222.58H660V284.58C657.56 284.25 645 285.64 645 283.08V258.58H618V283.08C618 285.64 605.44 284.25 603 284.58V222.58C605.44 222.91 618 221.52 618 224.08V246.58Z\" fill=\"#626E92\"/>\\n<path d=\"M522 222.58V234.58H490V247.58H518V258.58H490V272.58H523V284.58H476.5C476.39 284.58 475 283.19 475 283.08V224.08C475 223.97 476.39 222.58 476.5 222.58H522Z\" fill=\"#626E92\"/>\\n<path d=\"M155 222.58V234.58H123V247.58H152V258.58H123V272.58H156V284.58H109V222.58H155Z\" fill=\"#626E92\"/>\\n<path d=\"M560.76 221.83C571.96 220.41 583.62 223.23 590.93 232.21C591.2 233.78 584.08 240.27 582.33 240.43C581.38 240.51 573.76 233.06 565.65 233.63C539.49 235.49 542.05 274.22 567.25 273.3C573.98 273.05 581.27 266.53 582.51 266.53C583.75 266.53 590.78 273.29 590.94 274.2C591.81 279.19 574.47 285.02 570.41 285.45C525.27 290.26 519.23 227.08 560.77 221.82L560.76 221.83Z\" fill=\"#626E92\"/>\\n<path d=\"M336 222.58V234.58H316V284.58H302V234.58H282V222.58H336Z\" fill=\"#626E92\"/>\\n<path d=\"M466 222.58V234.58H446V284.58H432V234.58H412V222.58H466Z\" fill=\"#626E92\"/>\\n<path d=\"M254 222.58V272.58H285C284.8 274.71 285.88 284.58 283.5 284.58H240.5C240.39 284.58 239 283.19 239 283.08V224.08C239 221.52 251.56 222.91 254 222.58Z\" fill=\"#626E92\"/>\\n<path d=\"M696 222.58V284.58H682V234.58H669.99L670 222.58H696Z\" fill=\"#626E92\"/>\\n<path d=\"M731.76 221.84C701.6 225.85 701.44 280.72 731.74 285.33C771.55 291.39 773.34 216.31 731.76 221.84ZM730.99 272.07C720.63 267.15 720.85 236.02 733.75 233.76C754.01 230.2 752.24 282.17 730.99 272.07Z\" fill=\"#626E92\"/>\\n<path d=\"M793.76 221.84C763.12 225.91 763.6 282.31 794.62 285.47C834.18 289.5 834.3 216.45 793.76 221.84ZM792.99 272.07C782.43 267.07 782.87 235.64 795.76 233.76C816.2 230.79 813.95 282 792.99 272.07Z\" fill=\"#626E92\"/>\\n<path d=\"M203.86 222.71C203.3 222.35 192.09 222.3 190.46 222.5C187.07 222.92 165.55 277.53 162 284.57H177C177.34 281.96 180.75 272.38 182.66 271.73C184.62 271.06 206.37 271.13 209.54 271.5C212.46 271.84 214.31 284.57 216.5 284.57H231L203.86 222.71ZM187 260.58C187.19 258.3 195.63 236.52 196.99 237.58C198.6 245.56 204.35 252.55 205 260.58H187Z\" fill=\"#626E92\"/>\\n<path d=\"M360 222.58V246.58H388V222.58H402V284.58H388V259.58H360V284.58H346V222.58H360Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12756\">\\n<rect width=\"824.22\" height=\"285.36\" fill=\"white\" transform=\"translate(0 0.369995)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cx0s3e\",\"data-framer-name\":\"Award 2\",layoutDependency:layoutDependency,layoutId:\"w9IHmRk2c\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b3nily\",\"data-framer-name\":\"Isolatiemodus\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:336,intrinsicWidth:1440,layoutDependency:layoutDependency,layoutId:\"JwVKc4Zzh\",svg:'<svg width=\"1440\" height=\"336\" viewBox=\"0 0 1440 336\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12797)\">\\n<path d=\"M11 289.15C10.02 287.34 2 284.97 2 283.65V244.15C12.06 249.13 21.16 252.32 32 255.15C58.7 262.13 90.74 266.23 116 253.15C142.95 237.65 148.28 199.81 131 175.15C108.02 147.22 60.01 154.9 28.54 161.11L8.49 149.15L19.5 9.1499H166.5C166.61 9.1499 168 10.5399 168 10.6499V47.6499C168 47.7599 166.61 49.1499 166.5 49.1499H60.5C57.66 49.1499 58.23 62.4399 57.99 64.6399C56.01 83.1399 54.12 101.68 52.42 120.19C53.15 121.19 54.32 121.19 55.45 121.19C62.47 121.18 73.74 117.6 81.46 117.11C154.51 112.46 202.09 156.38 184.7 231.35C167.33 306.23 70.56 310.26 10.99 289.14L11 289.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1440 211.15V215.15C1427.8 222.62 1427.91 202.79 1440 211.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1330 28.15H1308.5C1305.81 30.29 1307.87 34.2 1306 37.14C1323.51 35.26 1335.72 42.98 1334.04 61.69C1332.27 81.45 1308 83.78 1292.78 78.87C1286 76.68 1290 68.89 1289.01 63.15C1295.18 65.29 1301.69 67.93 1308.41 67.05C1314.77 66.22 1319.46 60.24 1315.01 54.63C1308.52 46.45 1297.47 55.76 1290.49 49.16C1290.4 37.95 1291.65 26.39 1292.44 15.08L1328.36 14.28C1331.51 15.31 1329.42 25.2 1330 28.14V28.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1117 41.1499V54.1499H1099.5C1099.17 54.1499 1097.98 55.4699 1097 55.1499V78.6499C1097 80.9299 1080 80.9299 1080 78.6499V15.6499C1080 15.5399 1081.39 14.1499 1081.5 14.1499H1117.5C1119.43 14.1499 1119.34 22.9599 1119.01 24.6599C1117.77 31.1299 1099.49 26.1299 1097.43 29.0799C1096.39 30.5699 1096.54 41.1399 1098.49 41.1399H1116.99L1117 41.1499Z\" fill=\"#626E92\"/>\\n<path d=\"M1218.92 32.2599C1219.76 33.4299 1216.05 42.7099 1214.4 43.0899C1212.75 43.4699 1196.94 34.9499 1196.95 42.6499C1196.78 44.5599 1198.29 44.5699 1199.45 45.1999C1206.39 48.9499 1218.66 50.8199 1220.04 60.6099C1222.47 77.8899 1207.88 82.1099 1193.63 81.0299C1191.35 80.8599 1182.86 79.4199 1181.43 78.2399C1179.64 76.7599 1179.58 66.9599 1181.57 65.1999C1185.49 66.4399 1189.29 67.8899 1193.46 68.1999C1196.1 68.3899 1204.09 69.2099 1204.04 65.6499C1203.98 60.7399 1184.63 59.3699 1181.06 48.6199C1173.73 26.5599 1205.89 25.7899 1218.92 32.2699V32.2599Z\" fill=\"#626E92\"/>\\n<path d=\"M726 80.1499C723.54 79.7599 715.9 81.3899 715.07 78.5299L715.23 11.7699C715.85 8.34991 724.94 7.97991 725.86 10.7899C727.15 14.7199 725.68 28.1799 725.47 33.1499C725.41 34.5299 724.56 34.8799 726.5 36.1299C730.71 29.2399 737.82 28.3099 745.5 29.1499C756.19 30.3099 759.28 37.9999 760.03 47.6199C760.37 52.0299 760.76 75.7599 759.85 78.5199C758.88 81.4999 751.59 79.7199 748.99 80.1599V44.6599C748.99 43.8599 746.04 39.4999 744.75 38.8899C740.57 36.9399 731.78 38.0599 728.96 41.8899C728.42 42.6299 725.99 49.0899 725.99 49.6499V80.1499H726Z\" fill=\"#626E92\"/>\\n<path d=\"M1247.99 29.16C1248.64 29.8 1259.79 28.22 1260.01 29.73C1260.71 42.2 1260.86 43.16 1247.99 42.15C1249.04 47.89 1246.51 59.6 1248.16 64.49C1250.06 70.13 1261 63.97 1261.88 67.74C1262 68.25 1260.86 77.79 1260.56 78.22C1257.99 81.91 1242.12 81.14 1237.73 78.93C1225.47 72.77 1233.94 52.88 1230.87 43.79C1229.79 40.59 1224.18 44.41 1223.91 38.65C1223.66 33.37 1229.05 32.61 1232 28.64C1233.99 25.96 1235.16 20.11 1237.7 19.34C1239.27 18.87 1245.92 18.79 1247.07 19.58C1249.13 21.01 1247.39 28.54 1248 29.15L1247.99 29.16Z\" fill=\"#626E92\"/>\\n<path d=\"M1015.87 30.2799L1028.01 67.1499C1030.12 67.4499 1029.63 67.2499 1030.24 65.8899C1032.37 61.1299 1040.43 31.3899 1042.17 30.3199C1042.86 29.8899 1050.11 29.9499 1051.53 30.1499C1052.95 30.3499 1053.25 29.5899 1053.02 31.6499C1047.11 46.0199 1042.5 60.9799 1036.76 75.3999C1030.38 91.4199 1027.58 105.31 1006.01 102.16C1006.28 100.57 1005.64 93.5199 1006.01 93.1499C1006.32 92.8299 1012.69 93.4199 1014.47 93.1099C1019.88 92.1399 1022.21 85.0599 1024.01 80.5799L1004.04 31.6499C1004.06 29.3899 1013.78 30.1299 1015.89 30.2799H1015.87Z\" fill=\"#626E92\"/>\\n<path d=\"M782 80.1499C779.56 79.7699 771.86 81.3799 771.08 78.5199L771.15 31.7399C771.64 29.7499 777.72 29.6399 779.38 30.0899C780.82 30.4899 779.96 36.2299 782.48 35.1299C784 34.4699 786 31.5299 788.81 30.4499C797.91 26.9399 811.13 28.7999 814.52 39.1299C816.89 46.3399 816.62 66.5299 816.05 74.6899C815.44 83.2999 812.1 79.4499 805 80.1499V44.6499C805 43.6499 800.66 38.7599 799.29 38.3599C791.21 35.9899 782 40.7099 782 49.6499V80.1499Z\" fill=\"#626E92\"/>\\n<path d=\"M797 272.15V286.15C805.05 286.13 807.85 284.29 807 293.66C806.21 302.33 798.85 296.28 797 298.14C796.29 298.85 796.91 316.94 797.5 318.15C799.6 322.46 807.64 318.72 808 319.15C807.34 323.22 810.03 329.23 805.61 331.25C799.71 333.95 787.95 333.62 783.99 327.66C783.46 326.86 781 321.03 781 320.65V298.15C779.89 297.95 776.3 298.45 775.99 298.15C775.56 297.73 775.56 286.56 775.99 286.14C776.37 285.77 780.62 286.52 781 286.15C781.63 285.55 780.06 277.22 781.46 275.11C782.86 273 793.99 272.56 797 272.15Z\" fill=\"#626E92\"/>\\n<path d=\"M817 298.15C816.64 297.8 812.36 298.51 811.99 298.15C811.58 297.75 811.77 288.12 811.98 286.72C812.19 285.32 816.48 286.66 817 286.15C817.57 285.59 816.3 275.19 817.1 274.25C817.54 273.73 829.44 271.95 830.46 272.09C835.87 272.84 830.94 282.62 833.12 286.02C834.75 286.64 841.52 285.67 841.99 286.14C842.41 286.57 842.41 297.72 841.99 298.15C841.34 298.8 832.45 296.8 832.21 299.64C832.18 300.05 832.98 300.39 832.98 300.64V318.64C832.98 321.45 842.13 319.5 843.97 319.14C843.22 324.69 846.71 329.88 840.02 331.68C834.58 333.15 824.62 333.6 820.53 329.08C820.09 328.59 816.98 323 816.98 322.63C816.98 319.24 817.86 298.98 816.98 298.13L817 298.15Z\" fill=\"#626E92\"/>\\n<path d=\"M722 128.15C721.74 128.43 721.11 134.7 721.05 135.8C720.77 141.01 725.68 137.86 729.48 138.12C736.31 138.58 744.14 143.45 745.02 150.64C747.29 169.08 735.54 175.82 718.51 174.15C709.45 173.26 708 171.41 709 162.16C715.69 163.7 732.98 167.9 733.98 157.57C734.67 150.49 728.71 148.04 722.48 148.07C719.29 148.08 712.28 150.59 710.21 146.94C708.43 143.81 712.69 124.97 710.95 119.84C711.15 119.18 713.21 118.15 713.49 118.15H740.49C742.67 118.15 742.67 128.15 740.49 128.15C737.9 128.15 722.62 127.48 721.99 128.15H722Z\" fill=\"#626E92\"/>\\n<path d=\"M575.5 173.15C573.33 172.48 573.7 167.1 574.52 165.17C575.99 161.73 591.28 149.39 594.97 144.63C598.04 140.68 602.01 134.88 599.04 129.85C594.46 122.09 582.12 132.75 580.02 131.7C579.02 131.2 574.93 126.85 574.93 125.63C574.94 122.73 584.94 118.59 587.58 118.23C609.58 115.22 619.24 130.37 605.02 147.67C601.05 152.49 594.37 156.86 590.67 161.1C589.69 162.23 589.93 162.75 589.99 164.14H612.99V173.14H575.49L575.5 173.15Z\" fill=\"#626E92\"/>\\n<path d=\"M702 164.15V173.15H663C663.18 170.56 662.4 167.65 663.52 165.17C664.83 162.27 677.68 151.55 680.97 147.63C684.92 142.93 691.48 136.33 687.44 130.2C681.46 121.12 671.82 133.77 668 131.71C667.05 131.2 663.99 126.72 663.98 125.64C663.94 122.21 673.57 118.64 676.58 118.24C699.52 115.2 707.34 131.29 693.02 148.68C690.73 151.46 678.9 161.26 678.48 162.15C677.98 163.21 679.27 164.15 679.49 164.15H701.99H702Z\" fill=\"#626E92\"/>\\n<path d=\"M623 14.1499V23.1499H604.5C604.39 23.1499 603 24.5399 603 24.6499V80.1499C601 80.0099 592 80.9399 592 78.6499V23.1499H573V14.1499H623Z\" fill=\"#626E92\"/>\\n<path d=\"M697.52 270.15H682V332.21H697.52V270.15Z\" fill=\"#626E92\"/>\\n<path d=\"M684.31 41.46C680.03 46.28 680.12 60.1 682.96 65.69C689.53 78.62 706.1 68.15 707 69.15C708.15 78.37 706.31 80.08 697.4 81.04C682.25 82.67 671.4 75.06 670.02 59.63C668.18 39.09 677.36 27.33 698.54 29.11C704.84 29.64 710.44 30.57 706.21 37.86C703.77 42.06 702.22 38.62 698.42 38.23C693.93 37.77 687.56 37.8 684.31 41.45V41.46Z\" fill=\"#626E92\"/>\\n<path d=\"M1053 119.65C1053.63 117.61 1058.9 117.32 1059.9 119.75L1079.49 165.15L1098.5 119.14C1099.64 117.18 1105 118.12 1105 119.64V171.64C1105 172.7 1102.16 173.54 1101 173.14V125.14C1099.65 125.43 1098.83 126.74 1098.28 127.92C1092.62 140.07 1088.21 159.5 1081.75 170.39C1079.71 173.84 1078.32 174.22 1076.23 170.41C1069.8 158.72 1065.57 140.47 1059.72 127.92C1059.17 126.75 1058.35 125.43 1057 125.14V173.14C1055.84 173.54 1053 172.7 1053 171.64V119.64V119.65Z\" fill=\"#626E92\"/>\\n<path d=\"M503 332.15V0.72998H507.01C507.63 111.47 505.22 221.96 506.04 332.7C505.62 336.14 504.87 337.13 502.99 334.15C503.62 333.18 504.1 332.02 504.43 330.69C504.02 311.99 505.38 331.86 504.18 332.28C503.84 332.4 503.43 332.3 502.99 332.14L503 332.15Z\" fill=\"#626E92\"/>\\n<path d=\"M770 286.15V330.65C770 332.92 754 332.92 754 330.65V286.15H770Z\" fill=\"#626E92\"/>\\n<path d=\"M892.88 9.07007H882V80.2101H892.88V9.07007Z\" fill=\"#626E92\"/>\\n<path d=\"M963.5 146.15C966.14 146.93 964.01 151.49 963.95 153.61C963.8 158.89 963.65 164.38 964.83 169.56C950.65 178.69 925.8 175.6 920.47 157.18C913.03 131.51 929.93 115.2 955.42 118.23C959.04 118.66 964.74 119.89 963 124.14C953.9 122.12 947.44 119.61 938.01 122.65C917.73 129.19 917.81 166.59 940.76 169.88C944.84 170.47 958.55 171.14 960.51 167.15C961.65 164.84 961.83 149.14 958.5 149.14H944V146.14C949.07 147.08 959.17 144.86 963.5 146.14V146.15Z\" fill=\"#626E92\"/>\\n<path d=\"M1038 118.15V159.65C1038 160.09 1035.41 165.62 1034.84 166.49C1028.05 176.86 1008 176.93 1000.57 167.09C1000.02 166.36 997.01 161.02 997.01 160.65V119.65C997.01 117.93 1001.01 117.93 1001.01 119.65V159.65C1001.01 163.96 1009.33 169.47 1013.6 170.06C1044.59 174.33 1030.87 138.17 1034.01 120.65C1034.46 118.17 1035.61 117.88 1038.01 118.15H1038Z\" fill=\"#626E92\"/>\\n<path d=\"M868 143.15V146.15H845.5C845.17 146.15 843.98 147.47 843 147.15V169.15C843.98 168.83 845.17 170.15 845.5 170.15H868.5C869.98 170.15 869.98 173.15 868.5 173.15H840.5C840.39 173.15 839 171.76 839 171.65V119.65C839 119.54 840.39 118.15 840.5 118.15H868.5C870.22 118.15 870.22 122.15 868.5 122.15H844.5C844.39 122.15 843 123.54 843 123.65V141.65C843 141.76 844.39 143.15 844.5 143.15H868Z\" fill=\"#626E92\"/>\\n<path d=\"M503 332.15C503.15 331.58 504.71 330.25 504.07 328.76L504 1.6499H506.01C505.82 10.9899 506.23 20.3599 506.05 29.6899C504.14 129.56 508.33 231.21 505 330.69C504.94 332.62 506.02 334.7 503 334.14C502.89 333.97 502.18 333.99 502.14 333.65C502.09 333.2 502.88 332.59 503 332.14V332.15Z\" fill=\"#626E92\"/>\\n<path d=\"M882 173.15V118.15C884.4 117.88 885.55 118.17 886 120.65C887.29 135.18 884.29 152.54 885.95 166.7C886.07 167.71 886.41 170.15 887.5 170.15H911.5C912.98 170.15 912.98 173.15 911.5 173.15H882Z\" fill=\"#626E92\"/>\\n<path d=\"M903.91 332.48C908.632 332.48 912.46 328.652 912.46 323.93C912.46 319.208 908.632 315.38 903.91 315.38C899.188 315.38 895.36 319.208 895.36 323.93C895.36 328.652 899.188 332.48 903.91 332.48Z\" fill=\"#626E92\"/>\\n<path d=\"M982 173.15C981.28 173.02 978 173.35 978 173.15V119.65C978 117.93 982 117.93 982 119.65V173.15Z\" fill=\"#626E92\"/>\\n<path d=\"M770 280.15H754C754.54 275.59 751.82 270.79 757.45 270.1C767.28 268.89 771.77 269.02 770 280.15Z\" fill=\"#626E92\"/>\\n<path d=\"M388.96 144.7C387.46 69.7 365.97 -4.68004 274.75 5.40996C197.48 13.96 190.63 117.88 195.01 177.65C199.6 240.29 223.3 303.59 297.49 300.15C380.78 296.29 390.27 210.35 388.96 144.7ZM322.51 249.16C304.78 268.84 271.05 264.79 256.58 243.06C237.71 214.73 238.45 138.23 243.12 104.77C246.35 81.68 255.03 47.15 282.75 43.4C327.24 37.38 338.49 77.94 341.97 113.66C345.33 148.06 346.45 222.57 322.5 249.15L322.51 249.16Z\" fill=\"#626E92\"/>\\n<path d=\"M32 255.15C26.99 256.15 21.66 255.21 16.02 252.33C9.81 250.91 5.14 248.19 2 244.15C3.1 244.93 3.77 245.79 4 246.73V282.46L2 283.65C4.52 282.16 12.92 285.98 11 289.15C7.2 287.8 3.33 287.23 0 284.15V243.15C5.58 242.26 9.76 246.49 14.31 248.34C20.16 250.71 26.57 252.04 32 255.15Z\" fill=\"#626E92\"/>\\n<path d=\"M116 253.15C142.85 236.35 146.51 200.96 131 175.15C149.91 198.13 143.37 238.97 116 253.15Z\" fill=\"#626E92\"/>\\n<path d=\"M751.71 209.35C760.7 206.64 759.8 218.19 752.57 217.18C748.18 216.57 747.69 210.57 751.71 209.35Z\" fill=\"#626E92\"/>\\n<path d=\"M694.67 209.31C701.03 207.08 704.88 213.95 698.98 216.66C693.55 219.15 689.62 211.09 694.67 209.31Z\" fill=\"#626E92\"/>\\n<path d=\"M1035.71 209.35C1044.79 206.59 1043.68 218.32 1036.53 217.2C1032.86 216.63 1031.54 210.61 1035.71 209.35Z\" fill=\"#626E92\"/>\\n<path d=\"M1094.5 217.53C1096.91 217.53 1098.87 215.574 1098.87 213.16C1098.87 210.747 1096.91 208.79 1094.5 208.79C1092.09 208.79 1090.13 210.747 1090.13 213.16C1090.13 215.574 1092.09 217.53 1094.5 217.53Z\" fill=\"#626E92\"/>\\n<path d=\"M723.72 209.33C727.46 208.22 731.63 210.84 729.07 214.7C724.43 221.7 715.57 211.75 723.72 209.33Z\" fill=\"#626E92\"/>\\n<path d=\"M1063.64 209.29C1070.09 207.12 1073.85 213.97 1067.97 216.66C1062.09 219.35 1059.95 210.53 1063.64 209.29Z\" fill=\"#626E92\"/>\\n<path d=\"M810.56 217.46C812.951 217.46 814.89 215.521 814.89 213.13C814.89 210.739 812.951 208.8 810.56 208.8C808.169 208.8 806.23 210.739 806.23 213.13C806.23 215.521 808.169 217.46 810.56 217.46Z\" fill=\"#626E92\"/>\\n<path d=\"M1404.71 209.36C1414.08 206.52 1412.25 218.8 1405.72 217.01C1402.28 216.07 1400.23 210.72 1404.71 209.36Z\" fill=\"#626E92\"/>\\n<path d=\"M1378.44 217.47C1380.83 217.47 1382.77 215.531 1382.77 213.14C1382.77 210.749 1380.83 208.81 1378.44 208.81C1376.05 208.81 1374.11 210.749 1374.11 213.14C1374.11 215.531 1376.05 217.47 1378.44 217.47Z\" fill=\"#626E92\"/>\\n<path d=\"M668.37 217.46C670.745 217.46 672.67 215.535 672.67 213.16C672.67 210.785 670.745 208.86 668.37 208.86C665.995 208.86 664.07 210.785 664.07 213.16C664.07 215.535 665.995 217.46 668.37 217.46Z\" fill=\"#626E92\"/>\\n<path d=\"M1321.63 217.45C1324 217.45 1325.93 215.525 1325.93 213.15C1325.93 210.775 1324 208.85 1321.63 208.85C1319.26 208.85 1317.33 210.775 1317.33 213.15C1317.33 215.525 1319.26 217.45 1321.63 217.45Z\" fill=\"#626E92\"/>\\n<path d=\"M611.64 217.28C613.993 217.28 615.9 215.373 615.9 213.02C615.9 210.667 613.993 208.76 611.64 208.76C609.287 208.76 607.38 210.667 607.38 213.02C607.38 215.373 609.287 217.28 611.64 217.28Z\" fill=\"#626E92\"/>\\n<path d=\"M1264.64 217.28C1266.99 217.28 1268.9 215.373 1268.9 213.02C1268.9 210.667 1266.99 208.76 1264.64 208.76C1262.29 208.76 1260.38 210.667 1260.38 213.02C1260.38 215.373 1262.29 217.28 1264.64 217.28Z\" fill=\"#626E92\"/>\\n<path d=\"M1151.36 217.27C1153.71 217.27 1155.61 215.367 1155.61 213.02C1155.61 210.673 1153.71 208.77 1151.36 208.77C1149.01 208.77 1147.11 210.673 1147.11 213.02C1147.11 215.367 1149.01 217.27 1151.36 217.27Z\" fill=\"#626E92\"/>\\n<path d=\"M952.43 217.39C954.783 217.39 956.69 215.483 956.69 213.13C956.69 210.777 954.783 208.87 952.43 208.87C950.077 208.87 948.17 210.777 948.17 213.13C948.17 215.483 950.077 217.39 952.43 217.39Z\" fill=\"#626E92\"/>\\n<path d=\"M1293.29 217.27C1295.62 217.27 1297.51 215.381 1297.51 213.05C1297.51 210.719 1295.62 208.83 1293.29 208.83C1290.96 208.83 1289.07 210.719 1289.07 213.05C1289.07 215.381 1290.96 217.27 1293.29 217.27Z\" fill=\"#626E92\"/>\\n<path d=\"M924 217.13C926.342 217.13 928.24 215.232 928.24 212.89C928.24 210.548 926.342 208.65 924 208.65C921.658 208.65 919.76 210.548 919.76 212.89C919.76 215.232 921.658 217.13 924 217.13Z\" fill=\"#626E92\"/>\\n<path d=\"M866.94 217.17C869.298 217.17 871.21 215.258 871.21 212.9C871.21 210.542 869.298 208.63 866.94 208.63C864.582 208.63 862.67 210.542 862.67 212.9C862.67 215.258 864.582 217.17 866.94 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M640 217.13C642.342 217.13 644.24 215.232 644.24 212.89C644.24 210.548 642.342 208.65 640 208.65C637.658 208.65 635.76 210.548 635.76 212.89C635.76 215.232 637.658 217.13 640 217.13Z\" fill=\"#626E92\"/>\\n<path d=\"M580.15 209.3C585.53 205.9 591.63 214.91 584.29 217C578.9 218.53 578.16 210.56 580.15 209.3Z\" fill=\"#626E92\"/>\\n<path d=\"M980.65 217.2C982.964 217.2 984.84 215.324 984.84 213.01C984.84 210.696 982.964 208.82 980.65 208.82C978.336 208.82 976.46 210.696 976.46 213.01C976.46 215.324 978.336 217.2 980.65 217.2Z\" fill=\"#626E92\"/>\\n<path d=\"M895.77 217.22C898.09 217.22 899.97 215.34 899.97 213.02C899.97 210.7 898.09 208.82 895.77 208.82C893.45 208.82 891.57 210.7 891.57 213.02C891.57 215.34 893.45 217.22 895.77 217.22Z\" fill=\"#626E92\"/>\\n<path d=\"M1349.97 217.12C1352.31 217.12 1354.2 215.226 1354.2 212.89C1354.2 210.554 1352.31 208.66 1349.97 208.66C1347.63 208.66 1345.74 210.554 1345.74 212.89C1345.74 215.226 1347.63 217.12 1349.97 217.12Z\" fill=\"#626E92\"/>\\n<path d=\"M1208.14 217.17C1210.43 217.17 1212.28 215.316 1212.28 213.03C1212.28 210.743 1210.43 208.89 1208.14 208.89C1205.85 208.89 1204 210.743 1204 213.03C1204 215.316 1205.85 217.17 1208.14 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M1179.86 217.16C1182.15 217.16 1184.01 215.302 1184.01 213.01C1184.01 210.718 1182.15 208.86 1179.86 208.86C1177.57 208.86 1175.71 210.718 1175.71 213.01C1175.71 215.302 1177.57 217.16 1179.86 217.16Z\" fill=\"#626E92\"/>\\n<path d=\"M1123.02 217.09C1125.34 217.09 1127.22 215.21 1127.22 212.89C1127.22 210.57 1125.34 208.69 1123.02 208.69C1120.7 208.69 1118.82 210.57 1118.82 212.89C1118.82 215.21 1120.7 217.09 1123.02 217.09Z\" fill=\"#626E92\"/>\\n<path d=\"M1009.14 217.17C1011.43 217.17 1013.28 215.316 1013.28 213.03C1013.28 210.743 1011.43 208.89 1009.14 208.89C1006.85 208.89 1005 210.743 1005 213.03C1005 215.316 1006.85 217.17 1009.14 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M839.02 217.09C841.34 217.09 843.22 215.21 843.22 212.89C843.22 210.57 841.34 208.69 839.02 208.69C836.7 208.69 834.82 210.57 834.82 212.89C834.82 215.21 836.7 217.09 839.02 217.09Z\" fill=\"#626E92\"/>\\n<path d=\"M782.14 217.17C784.426 217.17 786.28 215.316 786.28 213.03C786.28 210.743 784.426 208.89 782.14 208.89C779.854 208.89 778 210.743 778 213.03C778 215.316 779.854 217.17 782.14 217.17Z\" fill=\"#626E92\"/>\\n<path d=\"M1236.28 216.91C1238.51 216.91 1240.31 215.106 1240.31 212.88C1240.31 210.654 1238.51 208.85 1236.28 208.85C1234.05 208.85 1232.25 210.654 1232.25 212.88C1232.25 215.106 1234.05 216.91 1236.28 216.91Z\" fill=\"#626E92\"/>\\n<path d=\"M622.41 280.24C618.57 275.25 608.61 270.15 602.5 270.15H578V332.15H600.5C625.79 332.15 636.34 298.35 622.41 280.24ZM594 318.15V284.15C618.17 278.71 617.59 322.57 594 318.15Z\" fill=\"#626E92\"/>\\n<path d=\"M986.5 70.1499C981.74 69.4999 974.61 70.1499 969.5 70.1499C967.56 70.1499 966.12 65.3799 969 63.6399C970.83 62.5299 977.7 63.3199 981.05 62.6999C991.19 60.8099 996.39 52.8799 994.95 42.6999C994.61 40.3099 991.29 37.3199 994.67 36.3199C998.93 35.0499 1001.86 37.9899 1001.01 30.1499C988.15 32.1499 969.06 23.8499 959.47 35.1199C954.35 41.1399 954.53 51.1399 959.45 57.2299C960.4 58.4099 962.97 59.0599 963.08 59.7299C963.64 63.2699 952.23 69.0499 961.99 75.6599C951.91 79.5399 947.49 91.2999 956.95 98.7099C965.58 105.46 993.16 103.51 998.78 92.4299C1004.16 81.8299 997.76 71.6799 986.5 70.1499ZM984.76 49.4299C984.56 50.4999 983.42 53.0399 982.68 53.8399C978.28 58.6399 967.52 56.5099 966.24 49.4299C962.86 30.7499 988.16 30.8099 984.76 49.4299ZM990.81 86.3999C989.54 101.23 950.09 95.7799 963.35 82.4999C968.46 77.3799 991.65 76.6299 990.81 86.3999Z\" fill=\"#626E92\"/>\\n<path d=\"M1170.04 41.61C1169.78 39.59 1167.03 34.83 1165.66 33.49C1158.09 26.1 1137.51 28.76 1128.03 32.2C1127.44 33.02 1131.37 42.31 1131.95 42.72C1134.94 44.81 1146.3 36.9 1151.47 42.18C1158.93 49.81 1143.08 47.85 1139.61 48.26C1129.15 49.5 1121.18 55.13 1122.09 66.52C1123.43 83.3 1145.47 85.48 1154.5 73.17C1156.42 74.52 1157.65 79.3 1159.66 79.99C1161.32 80.55 1168.61 80.58 1169.56 79.22C1170.63 77.68 1170.53 45.43 1170.04 41.61ZM1141.3 59.44C1143.57 56.63 1153.72 55.44 1154.05 59.66C1155.03 72.26 1133.05 69.61 1141.3 59.44Z\" fill=\"#626E92\"/>\\n<path d=\"M722.78 285.44C706.45 287.18 702.33 299.93 703.99 314.66C706.52 337.04 740.63 339.22 746.9 318.56C752.26 300.9 742.41 283.34 722.78 285.44ZM729.75 319.89C728.32 321.24 725.78 321.32 723.97 320.75C716.42 318.39 716.83 292.08 728.78 297.89C733.98 300.42 733.67 316.17 729.75 319.89Z\" fill=\"#626E92\"/>\\n<path d=\"M674.7 296.96C668.83 280.86 639.98 281.33 634.51 298.17C626.96 321.39 641.92 337.13 665.4 332.06C676.28 329.71 672.08 328 670.99 319.16C665.82 320.5 660.11 322.18 654.71 320.95C651.82 320.29 645.35 314.35 649.5 313.16C653.19 312.1 669.21 313.16 674.5 313.16C677.44 313.16 675.58 299.37 674.7 296.96ZM662 303.15C658.36 302.8 653.99 303.65 650.48 303.15C649.14 302.96 648.72 303.7 648.99 301.65C650.07 293.56 662.63 294.6 662 303.14V303.15Z\" fill=\"#626E92\"/>\\n<path d=\"M891 313.15C894.42 293.36 880.42 280.38 861.01 286.66C843.3 292.39 843.38 322.82 860 331.15C867.92 332.38 876.13 332.86 884 331.15C885.13 330.5 887.37 330.68 887.77 328.54C888.02 327.22 886.26 320.3 885.04 319.6C883.75 318.86 862.6 326.4 863.99 313.15H890.99H891ZM876.98 301.71C876.95 305.6 867.25 302.02 863.99 303.15C862.38 293.97 877.03 294.13 876.98 301.71Z\" fill=\"#626E92\"/>\\n<path d=\"M860 331.15C865.27 333.79 875.68 334.19 881.52 333.13C883.61 332.75 883.61 331.37 884 331.15C876.75 334.36 867.6 332.96 860 331.15Z\" fill=\"#626E92\"/>\\n<path d=\"M631.73 118.38C615 121.78 615 163.12 628.05 171.6C641.1 180.08 655.43 170.19 657.01 155.65C659.04 136.92 656.66 113.3 631.73 118.37V118.38ZM641.57 163.21C627.11 171.8 626.98 129.07 636.75 127.31C649.27 125.05 647.98 159.41 641.57 163.21Z\" fill=\"#626E92\"/>\\n<path d=\"M918.95 29.6001C897.41 33.4201 896.15 70.5401 914.76 78.8901C923.34 82.7401 936.01 81.6301 942.65 74.8001C946.17 71.1801 948.56 65.7601 949.05 60.6901C951.06 39.6801 941.59 25.5801 918.96 29.6001H918.95ZM929.29 71.9401C908.73 76.6801 908.19 40.8901 921.73 38.4001C926.73 37.4801 931.6 37.5801 935 41.6501C940.58 48.3201 939.75 69.5301 929.28 71.9401H929.29Z\" fill=\"#626E92\"/>\\n<path d=\"M841.74 29.3899C816.28 33.6699 817.4 84.5499 851.4 81.0399C864.85 79.6499 871.92 68.4999 872.08 55.6599C872.31 37.1499 860.3 26.2599 841.74 29.3799V29.3899ZM851.27 71.9199C830.98 76.0899 830.86 41.2999 843.7 38.3699C865.91 33.2899 865.68 68.9599 851.27 71.9199Z\" fill=\"#626E92\"/>\\n<path d=\"M662.89 47.7599C660.03 22.2999 624.3 23.1799 619.23 45.8899C614.36 67.7199 626.35 83.4899 649.22 80.8799C657.54 79.9299 661.42 79.1899 661 70.1699C655.37 70.1299 650.15 73.2499 644.51 73.2399C635.05 73.2199 628.89 66.4699 630 57.1699H661.5C663.61 57.1699 663.08 49.4899 662.89 47.7699V47.7599ZM652 50.1499H630C629.14 32.5199 654.19 32.5199 652 50.1499Z\" fill=\"#626E92\"/>\\n<path d=\"M817.02 144.65C827.08 141.35 829.49 126.64 820.53 121.12C819.73 120.63 811.98 118.15 811.5 118.15H792.5C792.39 118.15 791 119.54 791 119.65V173.15H814.5C818.63 173.15 825.53 167.51 826.57 163.22C828.86 153.76 825.95 147.91 817.02 144.65ZM795 122.15H812.5C812.85 122.15 817.29 124.21 817.96 124.69C824.72 129.54 822.77 139.11 815.19 141.85C812.19 142.93 794.99 144.56 794.99 141.65V122.15H795ZM816.06 168.71C813.39 169.57 795 171.65 795 168.65C795 164.33 794.12 150.5 795 147.65C795.84 144.93 811.39 146.77 814.28 147.37C825.96 149.83 825.7 165.62 816.06 168.7V168.71Z\" fill=\"#626E92\"/>\\n<path d=\"M1378.5 17.1599C1372.99 12.8699 1364.43 12.2699 1357.74 13.3999C1336.79 16.9499 1336.82 60.9799 1347.97 73.6899C1356.46 83.3699 1374.73 83.3899 1382.24 72.8999C1390.88 60.8399 1391.03 26.9199 1378.49 17.1599H1378.5ZM1367 66.6599C1362.53 68.8299 1361.47 66.2799 1360 63.1499C1357.16 57.1199 1356.54 33.3699 1360.51 28.1699C1363.67 24.0299 1368.17 26.5099 1369.73 30.9199C1371.69 36.4499 1372.53 63.9699 1367 66.6599Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12797\">\\n<rect width=\"1440\" height=\"335.19\" fill=\"white\" transform=\"translate(0 0.72998)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y038b0\",\"data-framer-name\":\"Award 3\",layoutDependency:layoutDependency,layoutId:\"TM_rysCCW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ubqkl7\",\"data-framer-name\":\"Laag_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:851,intrinsicWidth:523,layoutDependency:layoutDependency,layoutId:\"bM1VBRrJR\",svg:'<svg width=\"523\" height=\"851\" viewBox=\"0 0 523 851\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12775)\">\\n<path d=\"M125.08 266.73L125.22 686.02L127.07 687.73C133.13 634.89 181.56 595.14 234.08 594.73V755.23C234.08 780.11 210.87 814.06 191.56 828.71C180.41 837.17 152.38 850.73 138.58 850.73H109.08V681.23C106.04 678.43 100.85 680.12 96.7001 679.61C46.1701 673.37 4.49008 631.67 1.04008 580.27C-2.26992 530.91 3.64008 477.92 1.04008 428.18L2.67008 423.84C19.2401 424.71 35.0801 427.92 49.9701 435.35C83.3301 452.01 97.6201 476.25 107.4 510.93C107.69 511.97 107.64 513.95 109.09 513.73V266.73H125.09H125.08Z\" fill=\"#626E92\"/>\\n<path d=\"M231.08 0.72998V162.23C231.08 165.92 226.29 182.51 224.79 186.94C209.89 230.87 169.71 255.92 124.08 257.73V96.23C124.08 92.79 129.14 77.03 130.62 72.77C145.9 28.91 185.01 2.53998 231.08 0.72998Z\" fill=\"#626E92\"/>\\n<path d=\"M107.08 257.73C59.8301 255.99 18.2001 228.86 4.80008 182.51C3.81008 179.09 0.0800781 164.74 0.0800781 162.23V1.72998C31.0801 3.81998 60.6401 15.35 81.0501 39.26C91.1401 51.07 107.08 81.9 107.08 97.23V257.73Z\" fill=\"#626E92\"/>\\n<path d=\"M156.07 17.75C157.24 19.45 149.18 25.03 147.54 26.71C135.53 39.04 126.16 54.06 120.05 70.22L114.08 90.73C110.27 62.94 94.4601 36.98 73.0901 19.24C97.0301 -2.78001 130.74 -1.05001 156.06 17.76L156.07 17.75Z\" fill=\"#626E92\"/>\\n<path d=\"M287.05 470.74L295.58 514.73L304.28 471.93L311.6 471.09L312.9 472.37C316.57 484.77 317.51 499.01 321.03 511.29C321.42 512.65 321.15 514.39 323.07 514.74L329.26 473.42C330.06 471.38 337.28 469.78 338.65 471.71C340.66 474.55 327.94 532.14 327.15 540.31L317.97 540.16L308.1 494.74L300.04 540.69H290.13L277.07 471.25L287.06 470.75L287.05 470.74Z\" fill=\"#626E92\"/>\\n<path d=\"M254.58 309.73C257.27 310.06 262.46 311.97 264.59 313.72C273.04 320.63 272.42 338.9 260.69 341.66L260.08 343.71C275.58 346.65 275.72 369.47 263.43 376.58C262.37 377.19 255.27 379.73 254.58 379.73H234.08V309.73C240.58 310.31 248.25 308.94 254.58 309.73ZM244.08 320.23V337.23C244.08 340.54 260.23 339 260.12 328.21C260.1 326.19 257.88 321.1 256.08 320.23C254.28 319.36 244.85 317.76 244.08 320.23ZM244.08 369.73C266.52 374.49 267.24 345.84 245.74 347.89L244.08 349.23V369.73Z\" fill=\"#626E92\"/>\\n<path d=\"M403.08 540.73H393.07L392.19 472.23C392.78 470.85 393.31 471.32 394.16 471.19C400.98 470.12 413.74 470.41 419.97 473.33C429.16 477.63 431.01 491.2 427.81 499.97C426.08 504.71 421.98 505.89 420.12 510.19L430.07 540.73L419.21 540.6L409.96 511.86L403.07 511.74V540.74L403.08 540.73ZM403.08 502.73C410.9 502.83 417.28 503.63 418.12 494.28C419.22 482.08 414.72 479.7 403.08 480.73V502.73Z\" fill=\"#626E92\"/>\\n<path d=\"M439.08 540.73V470.73C448 472.33 456.11 469.33 464.89 472.42C469.48 474.03 472.37 476.71 474.12 481.19C477.08 488.76 477.33 523.09 474.27 530.43C472.16 535.49 466.19 540.73 460.57 540.73H439.07H439.08ZM449.08 482.23V530.23C449.08 532.91 461.46 532.27 464.29 526.44C466.95 520.96 466.59 501.98 466.13 495.19C465.36 483.96 463.4 479.04 450.74 480.9L449.08 482.24V482.23Z\" fill=\"#626E92\"/>\\n<path d=\"M369.91 471.9L383.08 540.72L373.18 540.62L370.2 526.3L355.02 526.16L352.04 540.68L342.08 540.73L356.04 471.2L369.91 471.91V471.9ZM363.07 484.73C361.06 485.12 361.44 486.84 361.09 488.23C359.02 496.42 358.93 506.33 356.47 514.67L357.61 516.69C359.77 514.74 367.39 517.68 368.02 515.12L363.07 484.73Z\" fill=\"#626E92\"/>\\n<path d=\"M276.08 540.72L265.13 540.68L262.15 526.16H247.01L243.98 540.63L234.08 540.73L247.68 471.63L260.47 470.96L261.88 472.42L276.08 540.73V540.72ZM260.08 515.73C259.16 506.68 257.62 497.44 255.75 488.54C255.51 487.39 255.61 484.56 254.09 484.73L249.01 515.11C249.66 517.37 258.28 515.36 260.09 515.73H260.08Z\" fill=\"#626E92\"/>\\n<path d=\"M332.08 309.73V363.23C332.08 363.53 334.17 368.2 334.61 368.7C338.52 373.18 348.08 369.81 348.08 365.23V309.73H358.08V367.23C358.08 368.98 354.07 375.15 352.42 376.57C344.74 383.21 330.08 381.6 324.86 372.44C324.24 371.35 322.07 365.99 322.07 365.23V309.73H332.07H332.08Z\" fill=\"#626E92\"/>\\n<path d=\"M290.08 390.73V445.23C290.08 445.52 292.56 449.72 293.11 450.19C297.46 453.92 306.08 449.99 306.08 445.23V390.73H316.08V447.23C316.08 447.67 313.49 453.2 312.92 454.07C306.71 463.57 288.48 463.26 282.65 453.66C282.26 453.01 280.08 447.58 280.08 447.23V390.73H290.08Z\" fill=\"#626E92\"/>\\n<path d=\"M521.08 487.73L511.09 489.73C510.8 476.2 492.24 476.69 495.28 490.03C497.45 499.53 519.35 505.73 521.83 520.47C526.35 547.41 483.21 549.62 482.49 522.69L492.07 519.73C491.34 533.87 512.9 537.77 511.14 522.21C509.84 510.74 483.53 505.14 483.99 486.24C484.53 464.24 520.22 465.14 521.07 487.73H521.08Z\" fill=\"#626E92\"/>\\n<path d=\"M398.08 459.73H388.08V390.73H412.58C413.71 390.73 419.85 394.24 420.98 395.33C429.06 403.17 427.61 424.68 416.79 429.94C410.38 433.06 403.57 430.02 398.08 433.23V459.73ZM398.08 401.23V421.23C402.01 424.51 412.41 422.26 414.32 417.47C418.91 405.95 411.98 397.26 399.74 399.89L398.08 401.23Z\" fill=\"#626E92\"/>\\n<path d=\"M401.08 309.73L400.96 318.11L399.58 319.5C399.17 319.53 398.83 318.73 398.58 318.73H381.58L380.08 320.23V338.73L395.07 337.73V347.73H380.08V369.73H399.58C401.94 371.88 401.94 377.58 399.58 379.73H370.08V309.73H401.08Z\" fill=\"#626E92\"/>\\n<path d=\"M338.08 390.73V450.73H359.08V459.73H327.08V390.73H338.08Z\" fill=\"#626E92\"/>\\n<path d=\"M271.08 390.73V399.74H258.08V459.74H248.08V401.24C246.33 398.06 235.02 400.69 234.07 399.75V390.74H271.08V390.73Z\" fill=\"#626E92\"/>\\n<path d=\"M292.08 309.73V369.73H314.08V379.73H282.08V309.73H292.08Z\" fill=\"#626E92\"/>\\n<path d=\"M379.08 390.73H369.08V459.73H379.08V390.73Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12775\">\\n<rect width=\"522.17\" height=\"850\" fill=\"white\" transform=\"translate(0 0.72998)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bgpw1u\",\"data-framer-name\":\"Award 4\",layoutDependency:layoutDependency,layoutId:\"XLwPbe_dA\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0v9ze\",\"data-framer-name\":\"Laag_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:174,intrinsicWidth:696,layoutDependency:layoutDependency,layoutId:\"cXkaWxy07\",svg:'<svg width=\"696\" height=\"174\" viewBox=\"0 0 696 174\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12703)\">\\n<path d=\"M581.31 73.49C595.16 71.14 603.92 79.52 605.47 92.86C607.5 110.39 604.42 137.54 580.32 133.01C559.36 129.07 558.35 77.39 581.32 73.49H581.31ZM581.87 77.56C576.17 82.41 576.52 118.58 579.81 125.52C581.54 129.17 584.87 130.23 588.59 128.76C589.26 128.42 589.62 127.79 590.03 127.2C593.89 121.6 593.93 84.13 589.61 78.71C587.75 76.38 584.28 75.49 581.86 77.55L581.87 77.56Z\" fill=\"#626E92\"/>\\n<path d=\"M215.44 74.38L231.06 123.26L246.67 74.35H253.48L268.59 124.25L284.67 74.35L290.57 74.26L270.41 133.08L264.05 132.28L249.06 85.25L232.09 132.27L225.53 132.79L207.59 75.72C207.22 72.86 213.57 74.59 215.44 74.38Z\" fill=\"#626E92\"/>\\n<path d=\"M33.7899 138.05C33.2799 126.89 36.5299 116.07 38.5799 105.26C41.2899 104.96 41.7399 108.2 43.5299 109.79C54.0699 119.14 67.0799 122.33 80.9799 121.16C83.6799 120.93 85.9499 118.18 87.5699 120.77C85.2499 124.27 86.7199 128.4 86.3499 130.64C85.8099 133.91 60.9599 145.03 56.6099 145.8C48.4499 147.24 40.6799 141.65 33.7799 138.05H33.7899Z\" fill=\"#626E92\"/>\\n<path d=\"M147.53 63.28C152.22 88.17 142.47 115.48 122.59 131.25C122.68 124.1 122.19 116.87 121.57 109.76C121.35 107.2 119.66 103.89 119.86 101.89C120.06 99.89 124.48 92.12 125.52 88.7C127.35 82.65 128.27 76.21 128.72 69.9L147.53 63.29V63.28Z\" fill=\"#626E92\"/>\\n<path d=\"M406.58 133.25V74.24C413.41 74.24 420.27 74.24 427.12 74.29C432.34 74.33 436.91 73.43 442.63 74.7C465.92 79.84 467.05 116.03 448.91 128.08C446.97 129.37 437.88 133.25 436.08 133.25H406.58ZM414.58 129.25C434.01 133.21 451.26 127.96 452.62 105.8C454.25 79.16 437.76 74.69 414.58 78.25V129.25Z\" fill=\"#626E92\"/>\\n<path d=\"M518.58 132.25C515.82 129.42 530.27 117.48 532.55 114.72C539.32 106.54 547.16 92.08 541.8 81.53C540.45 78.88 538.08 77.31 535.06 77.18C524.79 76.74 527.44 90.33 525.08 90.23L518.86 83.77C522.43 69.08 552.59 69.88 556.11 83.22C560.59 100.24 543.35 108.44 535.07 119.24C534.3 120.24 533.13 120.51 533.58 122.24L556.58 121.24V132.25H518.57H518.58Z\" fill=\"#626E92\"/>\\n<path d=\"M361.58 133.25H353.57V74.24C363.23 75.49 380.67 70.46 387.97 78.35C394.55 85.45 391 95.9 383.52 100.7C381.33 102.1 374.02 103.25 374.59 105.7L396.56 133.23L385.99 132.31L366.13 106.17L361.56 105.24V133.24L361.58 133.25ZM361.58 101.25C371.11 102.21 383.28 100.81 383.67 88.76C384.06 76.71 370.78 76.7 361.58 77.25V101.25Z\" fill=\"#626E92\"/>\\n<path d=\"M610.58 132.25C607.83 129.46 621 118.72 623.09 116.26C628.7 109.65 635.7 98.7 635.66 89.74C635.64 85.52 633.48 78.5 628.87 77.46C617.15 74.82 619.66 88.7 617.07 89.24L611 83.2C614.75 70.78 637.55 70.27 644.99 78.34C657.74 92.17 634.86 112.86 624.59 120.74C626.84 123.63 630.01 121.27 633.04 121.2C638.21 121.07 643.42 121.39 648.59 121.24V132.25H610.58Z\" fill=\"#626E92\"/>\\n<path d=\"M29.4801 78.35C29.1801 83.43 29.8301 87.08 31.5701 91.77C32.7501 94.95 32.9001 97.38 36.6101 97.78C33.5801 108.9 33.1901 120.42 31.6001 131.78C31.3901 133.26 31.6301 134.27 30.0801 135.24C28.9301 135.23 17.6901 124.37 16.8101 122.53C15.5501 119.9 14.9901 113.95 14.5901 110.75C13.1201 98.84 13.7501 86.26 13.5901 74.26L29.4801 78.35Z\" fill=\"#626E92\"/>\\n<path d=\"M681.58 101.24C690.83 102.46 696.15 106.81 695.62 116.72C694.72 133.72 666.62 139.15 656.75 126.76L662.09 119.26C664.43 119.04 663.58 122.48 664.7 124.63C668.34 131.63 677.21 130.91 680.77 123.95C685.59 114.54 680.57 101.45 668.57 104.25L668.63 100.32C681.8 102.48 685.06 81.15 675.29 77C667.25 73.58 665.09 87.26 664.08 87.24L658.69 81.62C665.44 66.25 700.03 71.94 692.36 91.55C690.06 97.43 685.69 97.49 681.58 101.25V101.24Z\" fill=\"#626E92\"/>\\n<path d=\"M60.57 32.24C49.49 35.46 38.07 43.89 34.48 55.15C32.32 57.04 21.75 49.49 18.65 49.16C16.48 46.16 33.37 19.01 38.22 16.41C40.26 16.02 61.42 31.16 60.57 32.25V32.24Z\" fill=\"#626E92\"/>\\n<path d=\"M344.58 133.24L335.06 132.27L326.62 110.71L304.48 110.87L296.45 133.11L290.59 133.24L318.09 72.27L344.59 133.24H344.58ZM324.58 106.25C323.34 98.89 318.17 92.63 316.57 85.25C315.27 84.24 307.33 104.3 306.58 106.25H324.58Z\" fill=\"#626E92\"/>\\n<path d=\"M207.57 133.25L198.69 133.14L189.59 110.74L167.68 110.38L160.08 132.28L153.57 133.26L181.07 72.29L207.56 133.26L207.57 133.25ZM188.58 106.25C187.78 104.5 179.82 84.33 178.59 85.25C176.65 92.49 172.01 98.97 170.58 106.25H188.58Z\" fill=\"#626E92\"/>\\n<path d=\"M121.58 33.25C109.87 33.62 97.8699 31.55 87.5599 25.78C86.4299 24.29 80.2299 22.77 80.6999 20.9C81.2999 18.49 91.8199 6.49002 94.0499 5.19002C97.6999 3.06002 112.8 10.43 115.61 13.74C117.3 15.74 122.54 32.31 121.59 33.26L121.58 33.25Z\" fill=\"#626E92\"/>\\n<path d=\"M500.56 84.25C497.58 82.54 497.89 78.53 494.32 77.01C483.99 72.59 474.91 81.79 479.32 92.01C483.04 100.63 505.15 98.84 505.66 114.75C506.24 132.84 483.98 139.43 470.52 130.74L471.58 122.26C474.17 123.64 474.74 126.27 477.22 128.11C491.41 138.66 507.21 119.74 493.07 109.26C486.07 104.08 473.24 103.66 471.67 92.67C469.33 76.19 485.34 68.27 499.13 74.2C504.84 76.66 501.17 79.55 500.56 84.26V84.25Z\" fill=\"#626E92\"/>\\n<path d=\"M169.59 46.25C170.96 46.55 170.67 45.21 171.06 44.26C172.35 41.16 176.82 24.98 177.63 24.31C178.27 23.77 181.19 24.17 182.09 25.25C184.26 27.85 187.08 42.16 188.59 46.26C193.19 42.02 192.88 30.84 195.77 25.95C196.64 24.48 198.64 23.34 199.58 24.27C200.69 25.37 190.25 49.98 189.86 54.02C189.64 56.2 186.05 55.6 185.06 54.29C183.69 52.46 180.24 34.29 178.08 34.29L170.48 55.16L165.72 55.14L157.58 24.28L164.11 25.25L169.6 46.27L169.59 46.25Z\" fill=\"#626E92\"/>\\n<path d=\"M59.44 2.34003C62.73 10.35 69.79 15.51 75.4 21.75C74.13 23.04 73.05 25.99 71.57 26.75C71.11 26.98 63.69 29.14 63.26 29.07C58.88 28.33 46.85 15.59 40.58 15.25C39.7 14.05 47.21 6.72003 48.62 5.81003C51.71 3.81003 55.89 3.15003 59.43 2.35003L59.44 2.34003Z\" fill=\"#626E92\"/>\\n<path d=\"M125.52 66.2L117.57 67.24C120.49 64.48 117.87 60.19 116.43 56.89C113.89 51.09 109.88 45.42 105.04 41.28C97.4899 34.81 84.3899 28.32 74.5799 30.25C73.9199 28.09 76.8399 24.2 78.8999 24.39C92.2699 33.46 106.47 37.04 122.63 36.69C126.1 46.11 125.66 56.35 125.52 66.2Z\" fill=\"#626E92\"/>\\n<path d=\"M146.47 61.16L128.58 65.26C129.98 55.77 127.04 47.21 125.97 38.27C125.85 37.23 125.28 36.54 126.53 35.72L135.08 34.22C138.1 34.45 143.53 47.47 144.59 50.74C145.65 54.01 147.27 57.49 146.47 61.16Z\" fill=\"#626E92\"/>\\n<path d=\"M118.57 107.26L120.41 133.59C118.62 136.06 104 144.64 102.58 143.26C103.38 140.92 100.75 137.2 100.91 135.74C101.02 134.72 103.84 132.98 104.37 130.55C104.9 128.12 104.11 125.27 104.77 122.96C105.29 121.15 109.15 118.6 110.55 116.74C111.38 115.64 117.15 105.57 118.57 107.27V107.26Z\" fill=\"#626E92\"/>\\n<path d=\"M437.29 34.57C437.89 35.06 438.41 37.22 439.08 37.23C455.54 24.78 452.07 44.45 448.65 54.82L442.58 55.25C442.73 51.75 449.73 35.9 443.25 36.41C436.22 39.29 437.25 48.87 435.47 55.15L429.58 55.25C428.7 54.42 434.58 40.21 432.67 37.71L430.25 36.4C420.4 39 427.51 57.17 416.58 55.24L420.62 34.3C423.07 34.35 427 33 426.59 36.23C427.05 36.58 432.21 30.4 437.28 34.56L437.29 34.57Z\" fill=\"#626E92\"/>\\n<path d=\"M279.58 21.25V36.25C281.91 36.69 282.45 33.99 284.29 33.44C287.34 32.53 293.58 34.46 293.58 37.75V55.25H287.58V39.75C287.58 36.77 283.1 36.26 281.08 38.26C280.82 38.99 279.58 40.31 279.58 40.75V55.25H273.58V21.25H279.58Z\" fill=\"#626E92\"/>\\n<path d=\"M100.45 145.13C97.8998 149.11 64.3598 150.61 58.5898 148.24L88.0998 134.29C90.8998 137.27 96.5098 136.56 98.5998 137.74C100.13 138.61 101.32 143.78 100.46 145.13H100.45Z\" fill=\"#626E92\"/>\\n<path d=\"M11.58 74.27C9.24995 87.94 11.65 102.54 13.57 116.25C11.23 116.8 10.36 113.53 9.40995 111.93C2.91995 100.94 -0.140047 86.73 -4.73266e-05 74.18L1.21995 73.4L11.58 74.26V74.27Z\" fill=\"#626E92\"/>\\n<path d=\"M86.0801 1.25001C87.5201 1.43001 90.9401 3.11001 92.5801 3.75001L78.0701 19.27C71.2801 15.42 66.3801 9.58001 62.0701 3.24001L63.0801 1.26001C70.3601 1.91001 79.0001 0.370012 86.0801 1.26001V1.25001Z\" fill=\"#626E92\"/>\\n<path d=\"M488.59 165.25C490.26 166.91 490.27 164.74 490.67 163.85C492.4 160.02 493.45 154.48 494.68 150.37L498.03 150.21C499.22 150.57 501.45 165.13 504.57 166.26L508.49 150.84L511.58 150.27L503.64 172.82L500.6 173.26L495.08 157.25C492.96 161.67 492.01 166.81 490.04 171.26C489.46 172.56 490.2 173.6 488.08 173.27C486.3 173.45 486.07 172.08 485.51 170.84C483 165.31 481.99 156.24 479.59 150.27L485.11 151.24L488.6 165.26L488.59 165.25Z\" fill=\"#626E92\"/>\\n<path d=\"M406.56 24.26L413.57 55.25L406.62 55.2L404.64 45.68C401.74 45.14 396.36 44.36 394.08 46.26C392.46 47.61 389.31 57.92 386.58 55.25C385.27 53.96 401.47 28.79 403.1 25.28L406.56 24.26ZM404.57 43.25L402.08 33.26L396.58 43.25H404.57Z\" fill=\"#626E92\"/>\\n<path d=\"M32.58 59.27C30.18 63.52 27.01 71.24 30.58 75.24L14.02 71.28C14.24 68.51 15.77 51.42 18.08 51.28L32.59 59.27H32.58Z\" fill=\"#626E92\"/>\\n<path d=\"M16.5699 47.26L7.63989 43.17C7.74989 36.68 29.6299 12.37 34.0599 13.26C34.7599 13.4 36.3699 15.38 35.0999 16.28C26.8599 24.85 19.7199 35.84 16.5699 47.27V47.26Z\" fill=\"#626E92\"/>\\n<path d=\"M11.5799 71.26C9.64993 71.25 1.06993 71.79 0.539932 69.59C-0.0200684 61.06 3.71993 53.3 5.58993 45.25L14.4799 49.92L11.5799 71.25V71.26Z\" fill=\"#626E92\"/>\\n<path d=\"M548.58 55.24C545.84 56.74 541.35 53.28 540.28 53.43C537.34 53.84 533.66 59.46 529.68 52.6C525.7 45.74 537.18 41.48 542.59 42.25L542.15 37.2C540.87 35.35 536.43 36.24 534.6 37.26C532.22 34.32 545.35 30.57 548.09 36.26C550.96 42.23 543.16 49.81 548.59 55.25L548.58 55.24ZM541.57 44.26C536.13 43.13 532.72 49.72 537.09 53.25C541.05 52.24 541.95 47.68 541.57 44.26Z\" fill=\"#626E92\"/>\\n<path d=\"M242.57 53.27L242 55.25C237.16 57.79 235.46 53.2 235.05 53.21C233.19 53.27 222.99 60.37 222.47 50.75C222 42.15 234.61 44.4 234.62 39.77C234.62 38.39 233.14 36.81 231.85 36.43C227.84 35.25 226.11 39.4 223.59 36.76C227.19 32.38 238.32 31.38 239.55 37.78C240.46 42.53 236.99 52.23 242.56 53.28L242.57 53.27ZM234.57 44.26C229.28 44.1 227.58 47.18 228.72 52.1L231.93 53.06L233.65 51.84L234.57 44.26Z\" fill=\"#626E92\"/>\\n<path d=\"M219.58 44.26L207.01 45.23C207.27 52.56 212.3 55.64 218.56 51.25L217.99 54.34C208.5 58.19 199.54 53.89 200.52 42.75C201.68 29.64 221.94 29.68 219.57 44.25L219.58 44.26ZM213.58 42.26L213.14 36.2L208.67 35.36L207.57 42.26H213.58Z\" fill=\"#626E92\"/>\\n<path d=\"M566.58 148.25H571.59V158.25C583.79 152.28 581.67 165.04 581.59 173.26H576.58C575.24 171.95 579.93 154.31 571.55 160.93L571.59 173.26L566.59 171.76V148.26L566.58 148.25Z\" fill=\"#626E92\"/>\\n<path d=\"M473.32 35.5C474.4 36.7 475.82 43.37 474.48 44.16L461.57 44.25L462.55 51.77C465.99 54.37 467.41 52.97 470.51 51.68C472.09 51.03 472.89 50.67 472.56 52.74C462.34 59.37 452.96 53.89 456 41.18C457.67 34.23 468.69 30.38 473.31 35.5H473.32ZM469.58 42.26C470.86 31.63 462.85 33.72 461.58 42.26H469.58Z\" fill=\"#626E92\"/>\\n<path d=\"M246.57 55.26C247.54 43.84 247.54 32.67 246.57 21.25C248.24 21.3 252.94 20.59 253.32 22.71V53.8L251.93 55.11L246.57 55.26Z\" fill=\"#626E92\"/>\\n<path d=\"M266.57 26.26V34.26L270.57 34.75C263.09 37.05 265.87 46.94 266.62 53.21C267.48 54.01 271.57 51.73 270.58 55.25C256.71 58.84 261.15 45.8 260.64 36.8L257.57 34.26L260.64 33.72C259.45 28.2 261.6 27.31 266.57 26.26Z\" fill=\"#626E92\"/>\\n<path d=\"M527.57 40.25C524.75 38.06 526.14 34.86 521.15 35.28C510.76 36.16 510.91 60.33 524.57 51.25L523.38 55.05C496.47 59.54 508 23.58 528.51 35.88L527.56 40.24L527.57 40.25Z\" fill=\"#626E92\"/>\\n<path d=\"M566.43 34.4L566.57 38.25C563.06 37.94 562.79 33.73 558.59 35.74C551.97 38.92 563.79 42.5 565.06 45.27C568.91 53.69 558.1 58.02 551.53 54.75L551.59 50.25L557.05 54.23C568.7 50.05 555.09 47.62 553.09 43.23C549.74 35.9 560.52 30.84 566.43 34.4Z\" fill=\"#626E92\"/>\\n<path d=\"M543.58 173.24C539.58 172.53 523.47 174.82 529.5 166.67C531.14 164.46 541.69 163.29 536.6 159.72C535.27 158.79 526.63 161.2 529.57 158.27C529.81 158.03 535.44 156.35 536.09 156.35C545.1 156.44 539.07 168.94 543.57 173.24H543.58Z\" fill=\"#626E92\"/>\\n<path d=\"M494.57 33.26L492.63 38.76C483.89 37.59 484.42 48.14 483.14 54.32L476.58 55.25L481.72 34.4L486.52 34.35L487.08 37.25C489.3 34.87 490.91 32.57 494.58 33.26H494.57Z\" fill=\"#626E92\"/>\\n<path d=\"M526.58 165.25H516.58L518.54 170.79L525.57 170.26C528.42 173.64 514.51 175.35 512.78 169.57C508.56 155.52 526.11 150.76 526.59 165.26L526.58 165.25Z\" fill=\"#626E92\"/>\\n<path d=\"M90.5801 118.24L102.07 112.25C106.53 107.39 113.57 103.65 113.58 96.25C121.24 102.78 107.28 113.48 103.58 119.82L90.5801 118.24Z\" fill=\"#626E92\"/>\\n<path d=\"M95.5099 134.51C99.144 134.51 102.09 131.564 102.09 127.93C102.09 124.296 99.144 121.35 95.5099 121.35C91.8759 121.35 88.9299 124.296 88.9299 127.93C88.9299 131.564 91.8759 134.51 95.5099 134.51Z\" fill=\"#626E92\"/>\\n<path d=\"M505.57 34.26L501.12 54.3L494.58 55.25L499.03 35.21L505.57 34.26Z\" fill=\"#626E92\"/>\\n<path d=\"M551.58 148.25H546.58V173.25H551.58V148.25Z\" fill=\"#626E92\"/>\\n<path d=\"M561.57 151.26L561.51 156.71L564.58 157.27C560.29 160.31 559.63 164.21 561.02 169.37C561.72 171.96 564.22 170.36 563.58 173.26C552.88 174.56 558.03 165.38 556.6 159.91C556.33 158.88 554.65 159.68 554.57 158.75L554.65 157.32C557.97 156.76 555.92 150.81 561.57 151.27V151.26Z\" fill=\"#626E92\"/>\\n<path d=\"M133.58 32.24L124.7 33.12L119.57 17.26C121.45 16.82 121.95 18.31 123.07 19.25C124.98 20.85 135.19 30.32 133.57 32.24H133.58Z\" fill=\"#626E92\"/>\\n<path d=\"M125.57 70.26C124.51 76.53 123.71 82.91 121.84 89.02C121.51 90.1 119.57 98.3 117.59 96.26C115.35 91.56 118.23 90.17 118.9 87.08C120.02 81.99 121.85 76.37 119.57 71.27L125.57 70.27V70.26Z\" fill=\"#626E92\"/>\\n<path d=\"M503.94 28.76C505.79 28.76 507.29 27.2602 507.29 25.41C507.29 23.5598 505.79 22.06 503.94 22.06C502.09 22.06 500.59 23.5598 500.59 25.41C500.59 27.2602 502.09 28.76 503.94 28.76Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12703\">\\n<rect width=\"695.66\" height=\"172.4\" fill=\"white\" transform=\"translate(0 0.970001)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hl3o2k\",\"data-framer-name\":\"Award 5\",layoutDependency:layoutDependency,layoutId:\"iVMwpYRxd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ko3w7e\",\"data-framer-name\":\"Laag_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:126,intrinsicWidth:635,layoutDependency:layoutDependency,layoutId:\"wiKU18850\",svg:'<svg width=\"635\" height=\"126\" viewBox=\"0 0 635 126\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_642_12676)\">\\n<path d=\"M549.19 49.34V59.15L548.47 59.87H533.84V64.66H547.27V74.72H533.84V80.47H549.19V91H520.41V59.87H510.34V91H497.39V59.87H486.6L485.88 59.15V49.34H549.19Z\" fill=\"#626E92\"/>\\n<path d=\"M546.79 4.79L559.6 24.78L560.7 25.39V4.79H574.13V46.46H560.22L546.31 25.87V46.46H532.88V4.79H546.79Z\" fill=\"#626E92\"/>\\n<path d=\"M605.79 49.34V64.18H618.74V49.34H631.69V91H618.74V74.72H605.79V91H592.36V49.34H605.79Z\" fill=\"#626E92\"/>\\n<path d=\"M591.4 65.14H577.25C576.85 65.14 575.04 61.15 570.94 60.86C559.82 60.08 560.24 82.62 573.19 78.81C576 77.98 576.72 74.72 577.01 74.72H590.68C591.14 75.09 591.24 75.12 591.22 75.71C591.04 81.48 584.27 88.12 579.06 89.94C560.62 96.37 545.09 81.65 550.49 62.84C556.19 42.94 587.89 44.48 591.4 65.14Z\" fill=\"#626E92\"/>\\n<path d=\"M499.79 122.14V119.75C489.77 127.25 482.23 118.49 484.08 107.65C485.29 100.52 494.8 97.61 499.79 102.98V100.58H518.02L519.7 113.03L522.61 100.55L532.35 100.63L535.77 112.54L537.21 100.57H545.84L540.29 122.15L530.06 122.08L527.38 110.63L524.72 122.11L514.25 122.07L508.91 102.02V122.14H499.8H499.79ZM495.34 107.85C491.78 108.59 492.14 115.85 497.03 114.87C500.92 114.09 500.25 106.84 495.34 107.85Z\" fill=\"#626E92\"/>\\n<path d=\"M92.0901 3.36V54.85C92.0901 56.59 94.4001 60.5 95.9501 61.53C98.5501 63.26 104.45 63.29 107.13 61.72C109.39 60.39 111.76 56.47 111.76 53.89V3.36H141.02L141.04 54.39C139.39 80.29 119.36 92.24 94.8001 89.99C78.9101 88.53 62.8401 74.34 62.8401 57.72V3.36H92.1001H92.0901ZM89.2101 5.75H65.9501L65.2101 7.4C67.8401 32.9 54.9301 76.25 88.3701 85.86C107.68 91.41 130.99 84.38 136.83 63.6C137.08 62.71 138.13 58.73 138.13 58.2V5.75H114.87L114.15 6.47V55.8C114.15 56.1 112.5 59.96 112.15 60.51C107.5 67.88 93.4601 67.28 90.4201 58.42C90.1301 57.57 89.2101 54.04 89.2101 53.4V5.75Z\" fill=\"#626E92\"/>\\n<path d=\"M59.48 3.36V26.83H29.26V34.49H55.64V56.52H29.26V66.1H59.48V89.57H0V3.36H59.48ZM56.6 5.75H3.12L2.4 6.47V86.7H56.6V68.5H26.86V54.13H53.24V36.89H26.86V23.96H56.6V5.75Z\" fill=\"#626E92\"/>\\n<path d=\"M448.94 3.36V26.83H418.72V34.49H445.1V56.52H418.72V66.1H448.94V89.57H389.46V3.36H448.94ZM446.07 5.75H392.59L391.87 6.47V86.7H446.07V68.5H416.33V54.13H442.71V36.89H416.33V23.96H446.07V5.75Z\" fill=\"#626E92\"/>\\n<path d=\"M193.06 3.36C198.28 3.82 206.34 6.69 210.53 9.87C227.19 22.51 223.65 50.28 203.37 56.77L222.08 89.57H189.46L175.55 64.19V89.57H146.29V3.36H193.05H193.06ZM148.69 6.47V86.7H173.15V53.65L190.9 86.7H217.28L199.53 55.34C214.86 51.6 222.61 36 216.26 21.39C206.18 -1.79 170.22 7.83 150.35 5.73L148.7 6.47H148.69Z\" fill=\"#626E92\"/>\\n<path d=\"M516.09 4.79V15.33H499.31V21.08H511.3V30.66H499.31V46.46H485.88V4.79H516.09Z\" fill=\"#626E92\"/>\\n<path d=\"M612.02 93.88V122.14H602.43V120.22C594.06 126.46 585.6 119.15 587.08 109.68C585.15 109.31 579.88 109.59 579.88 112.32V122.14H570.77V100.59H579.88L580.12 103.94C582.16 101.73 584.67 100.7 587.55 100.11V105.85L590.2 102.5C593.98 99.32 598.6 99.41 602.43 102.5V93.88H612.02ZM598.47 107.85C594.91 108.59 595.27 115.85 600.16 114.87C604.05 114.09 603.38 106.84 598.47 107.85Z\" fill=\"#626E92\"/>\\n<path d=\"M311.2 46.01C311.2 70.8 291.07 90.9 266.24 90.9C241.41 90.9 221.28 70.8 221.28 46.01C221.28 21.22 241.42 1.12 266.24 1.12C291.06 1.12 311.2 21.22 311.2 46.01ZM308.57 46.03C308.57 22.69 289.62 3.77 266.25 3.77C242.88 3.77 223.93 22.69 223.93 46.03C223.93 69.37 242.88 88.29 266.25 88.29C289.62 88.29 308.57 69.37 308.57 46.03Z\" fill=\"#626E92\"/>\\n<path d=\"M344.38 62.75V89.57H315.12V3.36H359.97C376.33 3.36 388.08 18.86 387.57 34.28C387.1 48.3 374.45 62.75 359.97 62.75H344.38ZM341.98 60.35H357.57C377.72 60.35 390.61 39.45 382.5 21.08C372.66 -1.22 338.36 7.57 319.17 5.72L317.52 6.46V86.69H341.98V60.35Z\" fill=\"#626E92\"/>\\n<path d=\"M377.96 103.94C378.97 101.63 379.54 98.82 381.61 96.81C388.94 89.68 403.42 94.04 404.1 104.91C404.55 96.08 411.49 92.13 419.81 93.52C426.97 94.72 428.98 102.76 425.54 108.59C424.31 110.67 421.93 111.95 420.64 114H427.35V111.61H435.02V103.95H427.83C426.72 93.9 437.28 90.08 445.43 93.8C450.9 96.3 452.17 103.66 447.5 107.54C456.59 117.53 445.73 126.02 434.63 122.78C430.47 121.57 429.64 119.69 427.35 116.4V122.63H404.32V115.21C404.32 114.5 414.31 107.99 414.87 105.87H403.84C406.68 118.09 394.71 127.91 383.55 121.1C376.9 117.04 378.33 110.48 377.94 103.96C377.34 105.33 376.91 107.39 375.94 108.91C374.73 110.82 372.4 112.06 371.22 114.02H377.93V122.64H354.91V115.22C354.91 114.51 364.9 108 365.46 105.88H354.91C354.31 99.63 358.39 94.12 364.74 93.42C372.99 92.51 377.43 95.66 377.93 103.96L377.96 103.94ZM429.76 102.02H436.47C436.65 102.02 436.22 99.78 438.67 99.64C441.69 99.47 442.09 102.5 440.79 104.66L437.43 105.37L437.4 109.86C446.14 110.61 440.68 119.46 436.95 115.65C436.39 115.08 436.52 113.85 435.69 113.56L429.28 113.73C429.63 124.26 450.27 123.69 448.84 113.39C448.23 109 443.94 109.35 443.64 107.52C443.77 106.27 445.8 106.31 446.78 105.37C447.65 104.54 448.36 102.49 448.36 101.29C448.36 92.21 429.8 92.04 429.74 102.01L429.76 102.02ZM356.85 103.46H363.56C363.69 103.46 363.79 101.7 364.72 101.03C366.4 99.82 368.03 100.76 368.53 102.61C369.35 105.61 365.35 109.29 363.33 111.14C362.32 112.07 357.33 115.49 357.09 115.92C356.44 117.1 357.04 119.33 356.85 120.71H376.04V115.92H368.13C367.58 115.92 367.1 114.2 367.5 113.6C377.35 109.31 380.01 94.12 365.74 95.33C360.89 95.74 357.83 98.78 356.86 103.46H356.85ZM406.26 103.46H412.97C413.1 103.46 413.2 101.7 414.13 101.03C415.81 99.82 417.44 100.76 417.94 102.61C418.76 105.61 414.76 109.29 412.74 111.14C411.73 112.07 406.74 115.49 406.5 115.92C405.85 117.1 406.45 119.33 406.26 120.71H425.45V115.92H417.54C416.99 115.92 416.51 114.2 416.91 113.6C426.76 109.31 429.42 94.12 415.15 95.33C410.3 95.74 407.24 98.78 406.27 103.46H406.26ZM382.92 98.36C378.11 103.53 378.55 117.4 385.97 120.13C393.63 122.94 401.21 119.45 401.96 110.91C402.55 104.2 401.06 96.51 393.09 95.79C389.64 95.48 385.41 95.7 382.93 98.37L382.92 98.36Z\" fill=\"#626E92\"/>\\n<path d=\"M531.92 4.79H518.49V46.46H531.92V4.79Z\" fill=\"#626E92\"/>\\n<path d=\"M560.22 122.14V119.75C550.2 127.39 542.3 118.13 544.6 107.27C546.06 100.38 555.3 97.73 560.21 102.99V100.6H569.33V122.15H560.22V122.14ZM555.78 107.85C552.22 108.59 552.58 115.85 557.47 114.87C561.36 114.09 560.69 106.84 555.78 107.85Z\" fill=\"#626E92\"/>\\n<path d=\"M633.61 108.25H624.98C624.84 108.25 625 106.59 623.28 106.32C622.2 106.15 621.01 106.44 621.15 107.76C625.08 109.28 631.71 108.81 633.52 113.38C638.06 124.86 613.06 125.85 613 114.48H621.63C621.87 114.48 622.45 117.58 625.46 116.39L624.97 114.73C620.48 113.48 612.82 113.34 612.95 107.06C613.15 97.14 633.07 98.23 633.61 108.26V108.25Z\" fill=\"#626E92\"/>\\n<path d=\"M470.05 0H468.13V125.97H470.05V0Z\" fill=\"#626E92\"/>\\n<path d=\"M585.16 4.31H633.12V41.67H585.16V4.31ZM632.17 5.27H586.12V41.19H632.17V5.27Z\" fill=\"#626E92\"/>\\n<path d=\"M173.15 42.15V25.39H187.78C187.98 25.39 190.02 26.36 190.4 26.61C195.47 29.91 195.16 38.94 189.33 41.3C188.96 41.45 186.51 42.15 186.35 42.15H173.16H173.15ZM175.55 39.28H187.3C191.04 39.28 192.56 32.63 190.15 29.73C189.78 29.28 187.23 27.79 186.82 27.79H175.55V39.29V39.28Z\" fill=\"#626E92\"/>\\n<path d=\"M264.66 26.01C291.24 24.07 292.14 69.5 262.16 65.58C243.83 63.18 242.31 27.64 264.66 26.01ZM263.21 28.86C247.14 31.05 246.81 58.5 260.92 62.51C271.09 65.4 280.36 60.29 281.49 49.51C282.82 36.89 277.09 26.96 263.21 28.86Z\" fill=\"#626E92\"/>\\n<path d=\"M341.98 42.15V24.43H354.21C354.41 24.43 356.45 25.4 356.83 25.65C361.42 28.63 361.64 37.62 357.01 40.64C356.59 40.91 353.94 42.15 353.73 42.15H341.98ZM344.38 39.76H352.29C357.78 39.76 359.99 30.79 355.1 27.86C354.78 27.67 352.9 26.83 352.77 26.83H344.38V39.76Z\" fill=\"#626E92\"/>\\n<path d=\"M389.82 101.64C397.02 100.07 397.04 114.24 391.59 114.95C384.91 115.81 385.2 102.65 389.82 101.64ZM390.28 103.52C387.97 104.18 387.54 113.14 391.12 113.06C394.3 112.76 394.23 102.4 390.28 103.52Z\" fill=\"#626E92\"/>\\n<path d=\"M613.94 10.54L609.38 16.77H601.47V20.6L606.26 20.83C605.47 21.35 603.7 24.56 603.28 24.8C602.74 25.11 601.63 24.75 601.48 24.9C601.39 24.98 601.55 26.46 601.22 27.27C600.92 27.99 596.27 33.79 595.38 34.82C595.08 35.17 595.4 35.72 594.28 35.43V10.54H613.95H613.94Z\" fill=\"#626E92\"/>\\n<path d=\"M617.3 35.92H610.1V26.11L617.3 17.24V35.92Z\" fill=\"#626E92\"/>\\n<path d=\"M624.01 10.54V16.77H617.78C618.48 15.49 622.54 9.13 624.01 10.55V10.54Z\" fill=\"#626E92\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_642_12676\">\\n<rect width=\"634.05\" height=\"125.97\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})],speed:26,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({CkKLSDkBO:{gap:40}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CpQiC.framer-r3p6hf, .framer-CpQiC .framer-r3p6hf { display: block; }\",\".framer-CpQiC.framer-h8zmpg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 2381px; }\",\".framer-CpQiC .framer-1utarvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 140px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-CpQiC .framer-tucy30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 90px 0px; position: relative; width: 1120px; }\",\".framer-CpQiC .framer-wes318 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-CpQiC .framer-rnj294 { flex: none; height: 61px; overflow: visible; position: relative; width: 288px; }\",\".framer-CpQiC .framer-1fxn4ar { bottom: 0px; flex: none; height: 61px; left: 0px; position: absolute; width: 61px; }\",\".framer-CpQiC .framer-lq7p0a { bottom: 0px; flex: none; height: 61px; left: 57px; position: absolute; width: 60px; }\",\".framer-CpQiC .framer-ufwmht { bottom: 0px; flex: none; height: 61px; left: calc(50.00000000000002% - 61.35211267605635px / 2); position: absolute; width: 61px; }\",\".framer-CpQiC .framer-1l44kfj { bottom: 0px; flex: none; height: 61px; position: absolute; right: 56px; width: 61px; }\",\".framer-CpQiC .framer-2udw1v { bottom: 0px; flex: none; height: 61px; position: absolute; right: 0px; width: 61px; }\",\".framer-CpQiC .framer-urur5s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CpQiC .framer-1xmvn0r, .framer-CpQiC .framer-1p273sb, .framer-CpQiC .framer-eyczqy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-CpQiC .framer-ozk453 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CpQiC .framer-1dd5l16-container, .framer-CpQiC .framer-tkbtga-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-CpQiC .framer-1tp1fr7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 10px 40px 10px; position: relative; width: 100%; }\",\".framer-CpQiC .framer-173cu8w-container, .framer-CpQiC .framer-1mqulmi-container { flex: none; height: 35px; position: relative; width: 100%; }\",\".framer-CpQiC .framer-1bgpw1u, .framer-CpQiC .framer-1hl3o2k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 108px; }\",\".framer-CpQiC .framer-1e0v9ze { flex: none; height: 26px; position: relative; width: 108px; }\",\".framer-CpQiC .framer-y038b0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 25px; }\",\".framer-CpQiC .framer-ubqkl7 { flex: none; height: 35px; position: relative; width: 21px; }\",\".framer-CpQiC .framer-cx0s3e { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 0px 6px 0px; position: relative; width: min-content; }\",\".framer-CpQiC .framer-b3nily { flex: none; height: 28px; position: relative; width: 119px; }\",\".framer-CpQiC .framer-nrd1k7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CpQiC .framer-dnbp14 { aspect-ratio: 2.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 100px; }\",\".framer-CpQiC .framer-1qp116p { flex: none; height: 33px; left: calc(50.00000000000002% - 94px / 2); position: absolute; top: calc(47.50000000000002% - 33px / 2); width: 94px; }\",\".framer-CpQiC .framer-i7yacw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 546px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CpQiC .framer-2tzre0-container { flex: none; height: 455px; position: relative; width: 546px; }\",\".framer-CpQiC .framer-zexnyv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 660px; justify-content: space-between; min-height: 448px; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-CpQiC .framer-9k3mu7-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-CpQiC .framer-1y0xvtt-container { flex: none; height: 400px; position: relative; width: 600px; }\",\".framer-CpQiC .framer-1eqtdso, .framer-CpQiC .framer-op5yu1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 448px; overflow: visible; padding: 32px; position: relative; width: 426px; }\",\".framer-CpQiC .framer-6wd9oz-container, .framer-CpQiC .framer-fife84-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CpQiC .framer-1w2wxze { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 455px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CpQiC .framer-19kzhvj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 10px 40px 10px; position: relative; width: 1120px; }\",\".framer-CpQiC .framer-1ko3w7e { flex: none; height: 21px; position: relative; width: 109px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CpQiC.framer-h8zmpg, .framer-CpQiC .framer-1utarvn, .framer-CpQiC .framer-wes318, .framer-CpQiC .framer-urur5s, .framer-CpQiC .framer-ozk453, .framer-CpQiC .framer-1tp1fr7, .framer-CpQiC .framer-1bgpw1u, .framer-CpQiC .framer-y038b0, .framer-CpQiC .framer-cx0s3e, .framer-CpQiC .framer-nrd1k7, .framer-CpQiC .framer-i7yacw, .framer-CpQiC .framer-1eqtdso, .framer-CpQiC .framer-op5yu1, .framer-CpQiC .framer-1w2wxze, .framer-CpQiC .framer-19kzhvj, .framer-CpQiC .framer-1hl3o2k { gap: 0px; } .framer-CpQiC.framer-h8zmpg > *, .framer-CpQiC .framer-1utarvn > *, .framer-CpQiC .framer-1eqtdso > *, .framer-CpQiC .framer-op5yu1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CpQiC.framer-h8zmpg > :first-child, .framer-CpQiC .framer-1utarvn > :first-child, .framer-CpQiC .framer-wes318 > :first-child, .framer-CpQiC .framer-urur5s > :first-child, .framer-CpQiC .framer-1tp1fr7 > :first-child, .framer-CpQiC .framer-1eqtdso > :first-child, .framer-CpQiC .framer-op5yu1 > :first-child, .framer-CpQiC .framer-1w2wxze > :first-child, .framer-CpQiC .framer-19kzhvj > :first-child { margin-top: 0px; } .framer-CpQiC.framer-h8zmpg > :last-child, .framer-CpQiC .framer-1utarvn > :last-child, .framer-CpQiC .framer-wes318 > :last-child, .framer-CpQiC .framer-urur5s > :last-child, .framer-CpQiC .framer-1tp1fr7 > :last-child, .framer-CpQiC .framer-1eqtdso > :last-child, .framer-CpQiC .framer-op5yu1 > :last-child, .framer-CpQiC .framer-1w2wxze > :last-child, .framer-CpQiC .framer-19kzhvj > :last-child { margin-bottom: 0px; } .framer-CpQiC .framer-wes318 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CpQiC .framer-urur5s > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-CpQiC .framer-ozk453 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-CpQiC .framer-ozk453 > :first-child, .framer-CpQiC .framer-1bgpw1u > :first-child, .framer-CpQiC .framer-y038b0 > :first-child, .framer-CpQiC .framer-cx0s3e > :first-child, .framer-CpQiC .framer-nrd1k7 > :first-child, .framer-CpQiC .framer-i7yacw > :first-child, .framer-CpQiC .framer-1hl3o2k > :first-child { margin-left: 0px; } .framer-CpQiC .framer-ozk453 > :last-child, .framer-CpQiC .framer-1bgpw1u > :last-child, .framer-CpQiC .framer-y038b0 > :last-child, .framer-CpQiC .framer-cx0s3e > :last-child, .framer-CpQiC .framer-nrd1k7 > :last-child, .framer-CpQiC .framer-i7yacw > :last-child, .framer-CpQiC .framer-1hl3o2k > :last-child { margin-right: 0px; } .framer-CpQiC .framer-1tp1fr7 > *, .framer-CpQiC .framer-19kzhvj > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-CpQiC .framer-1bgpw1u > *, .framer-CpQiC .framer-y038b0 > *, .framer-CpQiC .framer-cx0s3e > *, .framer-CpQiC .framer-nrd1k7 > *, .framer-CpQiC .framer-1hl3o2k > * { margin: 0px; margin-left: calc(7.996076583862305px / 2); margin-right: calc(7.996076583862305px / 2); } .framer-CpQiC .framer-i7yacw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CpQiC .framer-1w2wxze > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-CpQiC.framer-v-6f4zde.framer-h8zmpg { width: 1200px; }\",\".framer-CpQiC.framer-v-r264xk.framer-h8zmpg { width: 810px; }\",\".framer-CpQiC.framer-v-r264xk .framer-1utarvn, .framer-CpQiC.framer-v-12errrc .framer-1utarvn { max-width: 100%; padding: 0px; width: 100%; }\",\".framer-CpQiC.framer-v-r264xk .framer-tucy30, .framer-CpQiC.framer-v-12errrc .framer-tucy30 { flex-direction: column; gap: 60px; justify-content: flex-start; padding: 120px 24px 90px 24px; width: 100%; }\",\".framer-CpQiC.framer-v-r264xk .framer-wes318, .framer-CpQiC.framer-v-r264xk .framer-1xmvn0r, .framer-CpQiC.framer-v-r264xk .framer-1p273sb, .framer-CpQiC.framer-v-r264xk .framer-i7yacw, .framer-CpQiC.framer-v-r264xk .framer-19kzhvj, .framer-CpQiC.framer-v-12errrc .framer-wes318, .framer-CpQiC.framer-v-12errrc .framer-1xmvn0r, .framer-CpQiC.framer-v-12errrc .framer-1p273sb, .framer-CpQiC.framer-v-12errrc .framer-i7yacw, .framer-CpQiC.framer-v-12errrc .framer-19kzhvj { width: 100%; }\",\".framer-CpQiC.framer-v-r264xk .framer-2tzre0-container, .framer-CpQiC.framer-v-12errrc .framer-2tzre0-container { aspect-ratio: 1.2 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 167px); width: 1px; }\",\".framer-CpQiC.framer-v-r264xk .framer-1w2wxze { aspect-ratio: 1.280672268907563 / 1; height: var(--framer-aspect-ratio-supported, 156px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CpQiC.framer-v-r264xk .framer-tucy30 { gap: 0px; } .framer-CpQiC.framer-v-r264xk .framer-tucy30 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-CpQiC.framer-v-r264xk .framer-tucy30 > :first-child { margin-top: 0px; } .framer-CpQiC.framer-v-r264xk .framer-tucy30 > :last-child { margin-bottom: 0px; } }\",\".framer-CpQiC.framer-v-12errrc.framer-h8zmpg { width: 510px; }\",\".framer-CpQiC.framer-v-12errrc .framer-zexnyv { flex: none; height: 800px; width: 100%; }\",\".framer-CpQiC.framer-v-12errrc .framer-1w2wxze { aspect-ratio: unset; height: 335px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CpQiC.framer-v-12errrc .framer-tucy30 { gap: 0px; } .framer-CpQiC.framer-v-12errrc .framer-tucy30 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-CpQiC.framer-v-12errrc .framer-tucy30 > :first-child { margin-top: 0px; } .framer-CpQiC.framer-v-12errrc .framer-tucy30 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-CpQiC[data-border=\"true\"]::after, .framer-CpQiC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 2381\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uxCAwbtvl\":{\"layout\":[\"fixed\",\"auto\"]},\"elkQxU5ds\":{\"layout\":[\"fixed\",\"auto\"]},\"CkKLSDkBO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"I1IQ8h920\":\"title\",\"Ege0LJA8p\":\"text\",\"NrZZoXDoV\":\"video\",\"BttyN5iIK\":\"image\",\"y7pc0iEWb\":\"image1\",\"AGSfBEHEN\":\"videoFile\",\"GHbKHYPft\":\"contact\",\"dEc4aUqTr\":\"visibleLogoS\",\"nOtTaxq6T\":\"videoLoop\",\"yltTujlrz\":\"cTAText\",\"aA8EucAIH\":\"cTALink\",\"QryifnSYG\":\"_2NdCTAText\",\"v8YtQ8FeY\":\"_2NdCTALink\",\"H12oF0ydM\":\"_2NdCTA\",\"HymJZQKQ3\":\"background\",\"fLru66aqu\":\"border\",\"Jejb6qKsa\":\"title1\",\"tXlgaWeoL\":\"subtext\",\"f7U186GZ3\":\"cTA\",\"UT0codFEK\":\"click2\",\"rUqsSGnJ3\":\"portalID\",\"vvqoYeomz\":\"formID\",\"QgPI3WKqG\":\"logoSLeft\",\"YIOcFyTPl\":\"avatars\",\"n0_b9K1LS\":\"buttonWrapper\",\"I3WgZZcBy\":\"embed\",\"m3WKrHS8f\":\"_2NdText\",\"pZbecZTER\":\"fitVideo\",\"mtezlGCX6\":\"embedST\",\"G_vw5ZYYl\":\"controls\",\"lTJTB26uL\":\"text2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh_NJdonIk=withCSS(Component,css,\"framer-CpQiC\");export default Framerh_NJdonIk;Framerh_NJdonIk.displayName=\"Header_V1\";Framerh_NJdonIk.defaultProps={height:800,width:2381};addPropertyControls(Framerh_NJdonIk,{variant:{options:[\"HPyxQfrYv\",\"uxCAwbtvl\",\"elkQxU5ds\",\"CkKLSDkBO\"],optionTitles:[\"Dekstop large\",\"Dekstop small\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},I1IQ8h920:{defaultValue:\"Building solid bonds.\",displayTextArea:false,title:\"Title\",type:ControlType.String},Ege0LJA8p:{defaultValue:\"We provide a suite of white-label InvestTech solutions to help financial institutions accelerate their digital wealth transformation and deliver engaging investment experiences to their customers.\",displayTextArea:false,title:\"Text\",type:ControlType.String},NrZZoXDoV:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},BttyN5iIK:{defaultValue:true,title:\"Image\",type:ControlType.Boolean},y7pc0iEWb:{title:\"Image\",type:ControlType.ResponsiveImage},AGSfBEHEN:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,KON1HtMLb30yAZk6MEXFMVUekoY.mp4?originalFilename=Onboarding+-+do+it+yourself_2.mp4\",description:undefined,hidden:undefined,title:\"Video file\"},GHbKHYPft:{defaultValue:false,title:\"Contact\",type:ControlType.Boolean},dEc4aUqTr:{defaultValue:true,title:\"Visible logo's\",type:ControlType.Boolean},nOtTaxq6T:{defaultValue:true,title:\"Video Loop\",type:ControlType.Boolean},yltTujlrz:{defaultValue:\"Request a demo\",displayTextArea:false,title:\"CTA text\",type:ControlType.String},aA8EucAIH:{title:\"CTA link\",type:ControlType.Link},QryifnSYG:{defaultValue:\"Request a demo\",displayTextArea:false,title:\"2nd CTA text\",type:ControlType.String},v8YtQ8FeY:{title:\"2nd CTA link\",type:ControlType.Link},H12oF0ydM:{defaultValue:false,title:\"2nd CTA\",type:ControlType.Boolean},HymJZQKQ3:{defaultValue:\"rgb(242, 247, 255)\",title:\"Background\",type:ControlType.Color},fLru66aqu:{defaultValue:{borderBottomWidth:0,borderColor:\"rgb(232, 238, 247)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},title:\"Border\",type:ControlType.Border},Jejb6qKsa:{defaultValue:'var(--token-f5df46e3-f85d-43c0-b6dd-3b9bbefeb349, rgb(30, 47, 94)) /* {\"name\":\"Primary 400\"} */',title:\"Title\",type:ControlType.Color},tXlgaWeoL:{defaultValue:'var(--token-49eb94dc-29dd-4e0d-98ba-05b9e91d174d, rgb(63, 75, 107)) /* {\"name\":\"Primary 200\"} */',title:\"Subtext\",type:ControlType.Color},f7U186GZ3:{defaultValue:true,title:\"CTA\",type:ControlType.Boolean},UT0codFEK:{title:\"Click 2\",type:ControlType.EventHandler},rUqsSGnJ3:{defaultValue:\"5641482\",title:\"Portal ID\",type:ControlType.String},vvqoYeomz:{defaultValue:\"b098cce1-d3ce-4199-bb76-c3a5dca351a3\",title:\"Form ID\",type:ControlType.String},QgPI3WKqG:{defaultValue:false,title:\"Logo's left\",type:ControlType.Boolean},YIOcFyTPl:{defaultValue:false,title:\"Avatars\",type:ControlType.Boolean},n0_b9K1LS:{defaultValue:true,title:\"Button wrapper\",type:ControlType.Boolean},I3WgZZcBy:{defaultValue:false,title:\"Embed\",type:ControlType.Boolean},m3WKrHS8f:{defaultValue:false,title:\"2nd text\",type:ControlType.Boolean},pZbecZTER:VideoControls?.[\"objectFit\"]&&{...VideoControls[\"objectFit\"],defaultValue:\"cover\",description:undefined,hidden:undefined,title:\"Fit video\"},mtezlGCX6:{defaultValue:false,title:\"Embed ST\",type:ControlType.Boolean},G_vw5ZYYl:{defaultValue:false,title:\"Controls\",type:ControlType.Boolean},lTJTB26uL:{defaultValue:\"<p>We strongly believe that cooperation between traditional financial institutions and fintechs generates mutual benefit. Both have advantages and aspirations that are complementary, making it worthwhile to form partnerships.</p>\",title:\"Text 2\",type:ControlType.RichText}});addFonts(Framerh_NJdonIk,[{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\"}]},...PrimaryButtonFonts,...SecondaryButtonFonts,...TickerFonts,...VideoFonts,...HubSpotFormFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"eb0TtgoXW\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"eb0TtgoXW\"]):[],...componentPresets.fonts?.[\"BgUyhB3Yw\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"BgUyhB3Yw\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh_NJdonIk\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uxCAwbtvl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"elkQxU5ds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CkKLSDkBO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"I1IQ8h920\\\":\\\"title\\\",\\\"Ege0LJA8p\\\":\\\"text\\\",\\\"NrZZoXDoV\\\":\\\"video\\\",\\\"BttyN5iIK\\\":\\\"image\\\",\\\"y7pc0iEWb\\\":\\\"image1\\\",\\\"AGSfBEHEN\\\":\\\"videoFile\\\",\\\"GHbKHYPft\\\":\\\"contact\\\",\\\"dEc4aUqTr\\\":\\\"visibleLogoS\\\",\\\"nOtTaxq6T\\\":\\\"videoLoop\\\",\\\"yltTujlrz\\\":\\\"cTAText\\\",\\\"aA8EucAIH\\\":\\\"cTALink\\\",\\\"QryifnSYG\\\":\\\"_2NdCTAText\\\",\\\"v8YtQ8FeY\\\":\\\"_2NdCTALink\\\",\\\"H12oF0ydM\\\":\\\"_2NdCTA\\\",\\\"HymJZQKQ3\\\":\\\"background\\\",\\\"fLru66aqu\\\":\\\"border\\\",\\\"Jejb6qKsa\\\":\\\"title1\\\",\\\"tXlgaWeoL\\\":\\\"subtext\\\",\\\"f7U186GZ3\\\":\\\"cTA\\\",\\\"UT0codFEK\\\":\\\"click2\\\",\\\"rUqsSGnJ3\\\":\\\"portalID\\\",\\\"vvqoYeomz\\\":\\\"formID\\\",\\\"QgPI3WKqG\\\":\\\"logoSLeft\\\",\\\"YIOcFyTPl\\\":\\\"avatars\\\",\\\"n0_b9K1LS\\\":\\\"buttonWrapper\\\",\\\"I3WgZZcBy\\\":\\\"embed\\\",\\\"m3WKrHS8f\\\":\\\"_2NdText\\\",\\\"pZbecZTER\\\":\\\"fitVideo\\\",\\\"mtezlGCX6\\\":\\\"embedST\\\",\\\"G_vw5ZYYl\\\":\\\"controls\\\",\\\"lTJTB26uL\\\":\\\"text2\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"2381\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ResponsiveContainer", "props", "withResponsiveContainer", "C", "re", "DataObserverContext", "p", "Embed", "type", "url", "html", "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", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "PrimaryButtonFonts", "getFonts", "tzzjXYQuN_default", "SecondaryButtonFonts", "ut8gnGZ45_default", "TickerFonts", "Ticker", "VideoFonts", "Video", "HubSpotFormFonts", "HubSpot_Form", "EmbedFonts", "Embed", "MotionDivWithResponsiveContainerzexnyv", "withCodeBoundaryForOverrides", "motion", "withResponsiveContainer", "MotionDivWithResponsiveContainer1eqtdso", "MotionDivWithResponsiveContainerop5yu1", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "_2NdCTA", "_2NdCTALink", "_2NdCTAText", "_2NdText", "avatars", "background", "border", "buttonWrapper", "click2", "contact", "controls", "cTA", "cTALink", "cTAText", "embed", "embedST", "fitVideo", "formID", "height", "id", "image", "image1", "logoSLeft", "portalID", "subtext", "text", "text2", "title", "title1", "video", "videoFile", "videoLoop", "visibleLogoS", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "I1IQ8h920", "Ege0LJA8p", "NrZZoXDoV", "BttyN5iIK", "y7pc0iEWb", "AGSfBEHEN", "GHbKHYPft", "dEc4aUqTr", "nOtTaxq6T", "yltTujlrz", "aA8EucAIH", "QryifnSYG", "v8YtQ8FeY", "H12oF0ydM", "HymJZQKQ3", "fLru66aqu", "Jejb6qKsa", "tXlgaWeoL", "f7U186GZ3", "UT0codFEK", "rUqsSGnJ3", "vvqoYeomz", "QgPI3WKqG", "YIOcFyTPl", "n0_b9K1LS", "I3WgZZcBy", "m3WKrHS8f", "pZbecZTER", "mtezlGCX6", "G_vw5ZYYl", "lTJTB26uL", "vozfSL6cQ", "QVZ5nz7tZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "AARLeDmPR1gvwn5i", "args", "GgfVbloZg1wubtfy", "jqQkMLtjP1k1vmh6", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentPresetsProvider", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "Framerh_NJdonIk", "withCSS", "h_NJdonIk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
