{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/yHB9KRzlXSKPUj6ECF29/E5KlGHtTBQdo6rZfrBC1/LRnb1ktvN.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import CTA01Large from\"#framer/local/canvasComponent/a2Snv03tK/a2Snv03tK.js\";import Footer from\"#framer/local/canvasComponent/C11VAT1Cd/C11VAT1Cd.js\";import TopNav from\"#framer/local/canvasComponent/gHsoPBLuF/gHsoPBLuF.js\";import*as sharedStyle from\"#framer/local/css/cOETOwN6I/cOETOwN6I.js\";import*as sharedStyle2 from\"#framer/local/css/dUZg_UVXa/dUZg_UVXa.js\";import*as sharedStyle4 from\"#framer/local/css/tRR1463GM/tRR1463GM.js\";import*as sharedStyle3 from\"#framer/local/css/w7dbaqUIB/w7dbaqUIB.js\";import*as sharedStyle1 from\"#framer/local/css/wQDKLEqdU/wQDKLEqdU.js\";import metadataProvider from\"#framer/local/webPageMetadata/LRnb1ktvN/LRnb1ktvN.js\";const CTA01LargeFonts=getFonts(CTA01Large);const PhosphorFonts=getFonts(Phosphor);const ImageWithFX=withFX(Image);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const TopNavFonts=getFonts(TopNav);const ContainerWithFX=withFX(Container);const breakpoints={b_1YIMwOL:\"(min-width: 810px) and (max-width: 1199px)\",cG1ruWL90:\"(min-width: 1200px)\",TSKcH6woy:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-aUoAP\";const variantClassNames={b_1YIMwOL:\"framer-v-19t7jjz\",cG1ruWL90:\"framer-v-z8d4lj\",TSKcH6woy:\"framer-v-10y99ve\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"cG1ruWL90\",Phone:\"TSKcH6woy\",Tablet:\"b_1YIMwOL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cG1ruWL90\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"TSKcH6woy\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"TSKcH6woy\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cG1ruWL90\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-z8d4lj\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xclo99\",\"data-border\":true,\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7t9d0j\",\"data-framer-name\":\"Hero Background\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0),pixelHeight:2076,pixelWidth:1909,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0),pixelHeight:2076,pixelWidth:1909,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1600px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"},className:\"framer-1hf36l9\",\"data-framer-name\":\"Hero Module\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-4e9tmn\",\"data-styles-preset\":\"cOETOwN6I\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Better research,\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"together.\"})]})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Better research, together.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-4e9tmn\",\"data-styles-preset\":\"cOETOwN6I\",style:{\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Better research, together.\"})}),className:\"framer-cqmft\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qkdvo1\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":VNNN7X45n\",webPageId:\"UDnqCXtkz\"},implicitPathVariables:undefined},{href:{hash:\":VNNN7X45n\",webPageId:\"UDnqCXtkz\"},implicitPathVariables:undefined},{href:{hash:\":VNNN7X45n\",webPageId:\"UDnqCXtkz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+0+120+0+40+191+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"276px\",y:(componentViewport?.y||0)+0+0+120+0+100+195+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bkhffv-container\",nodeId:\"eyZ1R0Edo\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"eyZ1R0Edo\",layoutId:\"eyZ1R0Edo\",MQmTaNBq7:\"Become a reviewer\",P9iJ84I_E:resolvedLinks[0],style:{width:\"100%\"},variant:\"QPPEWtf7h\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+0+120+0+40+191+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"276px\",y:(componentViewport?.y||0)+0+0+120+0+100+195+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14z3co1-container\",nodeId:\"WHwVjZFyc\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks1[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"WHwVjZFyc\",layoutId:\"WHwVjZFyc\",MQmTaNBq7:\"Submit a Marble\",P9iJ84I_E:resolvedLinks1[0],style:{width:\"100%\"},variant:\"QPPEWtf7h\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ouspw\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0goc1\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"We address the reproducibility crisis and the need for fair assessment reform, converting unpublishable results into recognized scientific contributions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",children:\"We address the reproducibility crisis and the need for fair assessment reform, converting unpublishable results into recognized scientific contributions\"})}),className:\"framer-8wygu3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ppbf6r\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9bphb\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e42h0q\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqwyer\",\"data-framer-name\":\"Title + Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122la61\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-afizuv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VJL6Skg9u\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightbulb\",id:\"VJL6Skg9u\",layoutId:\"VJL6Skg9u\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"We are rethinking science\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"We are rethinking science\"})}),className:\"framer-1xijzky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gte7pk\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10mwrnn\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"The reproducibility crisis and outdated assessment systems hold science back. At Research Agora, we challenge the status quo by providing tools to validate and share findings, whether they confirm, refute, or build on existing work.\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"The reproducibility crisis and outdated assessment systems hold science back. At Research Agora, we challenge the status quo by providing tools to validate and share findings, whether they confirm, refute, or build on existing work.\"})}),className:\"framer-jqpf3n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yena4\",\"data-framer-name\":\"Feature 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1past3x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+40+0+0+0+338+0+-66.25),pixelHeight:1075,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png\",srcSet:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png?scale-down-to=1024 762w,https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png 800w\"}},TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+756+20+0+0+0+255.4+0+0+0),pixelHeight:1075,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1600px), 1px)`,src:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png\",srcSet:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png?scale-down-to=1024 762w,https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+20+0+20+0+338+0+0),pixelHeight:1075,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png\",srcSet:\"https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png?scale-down-to=1024 762w,https://framerusercontent.com/images/sXundreMNfyXE19ja0ihoolgTR0.png 800w\"},className:\"framer-ujkm9d\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17o4cbv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Get credit for all your research\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Get credit for all your research\"})}),className:\"framer-10sx9we\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Achieve a multi-faceted profile by sharing your unpublished research with Marbles, our innovative report format, and earning recognition for your peer review work.\"})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Achieve a multi-faceted profile by sharing your unpublished research with Marbles, our innovative report format, and earning recognition for your peer review work.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Achieve a multi-faceted profile by sharing your unpublished research with Marbles, our innovative report format, and earning recognition for your peer review work.\"})}),className:\"framer-j6jl66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1plfp35\",\"data-framer-name\":\"Feature 02\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wj4d86 hidden-z8d4lj hidden-19t7jjz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+756+20+0+0+0+630.4+0+0+0),pixelHeight:983,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1600px), 1px)`,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:983,pixelWidth:1500,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"},className:\"framer-1u09oox\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10gg9y1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Give research articles a new life\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Give research articles a new life\"})}),className:\"framer-1nln8lq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Contribute to science reproducibility and open science by sharing findings that replicate, dispute or build on already published data, and that are linked to the original research article.\"})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Contribute to science reproducibility and open science by sharing findings that replicate, dispute or build on already published data, and that are linked to the original research article.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"Contribute to science reproducibility and open science by sharing findings that replicate, dispute or build on already published data, and that are linked to the original research article.\"})}),className:\"framer-1sisp6s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w41zw0\",children:isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+40+0+0+0+665.5+0+-134.2),pixelHeight:983,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+20+0+20+0+798+0+0),pixelHeight:983,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png\",srcSet:\"https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QuUptirTZFB9rMcRLqaULnfc.png 1500w\"},className:\"framer-hdmjpf hidden-10y99ve\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-so5hhq\",\"data-framer-name\":\"Feature 03\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-221s0d\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+40+0+0+0+857.1+0+-134.2),pixelHeight:713,pixelWidth:1e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png\",srcSet:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png 1000w\"}},TSKcH6woy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+756+20+0+0+0+1025.4+0+0+0+0),pixelHeight:713,pixelWidth:1e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1600px)`,src:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png\",srcSet:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796+20+0+20+0+1258+0+0),pixelHeight:713,pixelWidth:1e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) / 2 - 10px, 1px)`,src:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png\",srcSet:\"https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/wtPzH3Bk6a1qhEl2F9HX21u1Y.png 1000w\"},className:\"framer-kgnuhb\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3srja\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Aligned with global initiatives for reform\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Aligned with global initiatives for reform\"})}),className:\"framer-177s6yn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We support global initiatives like CoARA, DORA, the Barcelona Declaration, and the Leiden Manifesto in advocating for fair, transparent, and quality-focused research assessment. That is why Marbles are open-access, and undergo a transparent peer-review process.\"})})},TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We support global initiatives like CoARA, DORA, the Barcelona Declaration, and the Leiden Manifesto in advocating for fair, transparent, and quality-focused research assessment. That is why Marbles are open-access, and undergo a transparent peer-review process.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"We support global initiatives like CoARA, DORA, the Barcelona Declaration, and the Leiden Manifesto in advocating for fair, transparent, and quality-focused research assessment. That is why Marbles are open-access, and undergo a transparent peer-review process.\"})}),className:\"framer-1c3h49h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jkbb8s\",\"data-framer-name\":\"Collaboration & Support\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xh8f1y\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Collaboration & support\"})}),className:\"framer-rp60cm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://opensciencelab.uc3m.es/\",motionChild:true,nodeId:\"iC4ailCAh\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xzmgbi framer-1u40m72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 270 46\" overflow=\"visible\"><path d=\"M 14.341 45.948 C 14.68 45.954 14.995 45.776 15.166 45.484 C 15.337 45.192 15.337 44.831 15.166 44.539 C 14.995 44.247 14.68 44.069 14.341 44.075 C 13.83 44.083 13.42 44.5 13.42 45.011 C 13.42 45.523 13.83 45.939 14.341 45.948 Z M 0.937 15.455 C 1.454 15.455 1.874 15.035 1.874 14.518 C 1.874 14.001 1.454 13.581 0.937 13.581 C 0.42 13.581 0 14.001 0 14.518 C 0 15.035 0.42 15.455 0.937 15.455 Z M 35.111 15.533 C 35.629 15.533 36.048 15.113 36.048 14.596 C 36.048 14.079 35.629 13.66 35.111 13.66 C 34.594 13.66 34.174 14.079 34.174 14.596 C 34.174 15.113 34.594 15.533 35.111 15.533 Z M 14.029 11.552 C 14.546 11.552 14.966 11.133 14.966 10.615 C 14.966 10.098 14.546 9.679 14.029 9.679 C 13.511 9.679 13.092 10.098 13.092 10.615 C 13.092 11.133 13.511 11.552 14.029 11.552 Z M 18.297 6.869 C 20.195 6.869 21.733 5.331 21.733 3.434 C 21.733 1.538 20.195 0 18.297 0 C 16.4 0 14.862 1.538 14.862 3.434 C 14.862 5.331 16.4 6.869 18.297 6.869 Z M 3.436 31.092 C 5.333 31.092 6.871 29.554 6.871 27.657 C 6.871 25.761 5.333 24.223 3.436 24.223 C 1.538 24.223 0 25.761 0 27.657 C 0 29.554 1.538 31.092 3.436 31.092 Z M 42.503 21.985 C 44.4 21.985 45.939 20.448 45.939 18.551 C 45.939 16.654 44.4 15.117 42.503 15.117 C 40.606 15.117 39.067 16.654 39.067 18.551 C 39.067 20.448 40.606 21.985 42.503 21.985 Z M 35.762 43.632 C 37.286 43.632 38.521 42.398 38.521 40.874 C 38.521 39.351 37.286 38.117 35.762 38.117 C 34.238 38.117 33.003 39.351 33.003 40.874 C 33.003 42.398 34.238 43.632 35.762 43.632 Z M 27.85 46 C 29.747 46 31.285 44.463 31.285 42.566 C 31.285 40.669 29.747 39.131 27.85 39.131 C 25.952 39.131 24.414 40.669 24.414 42.566 C 24.414 44.463 25.952 46 27.85 46 Z M 40.603 29.609 C 42.127 29.609 43.362 28.374 43.362 26.851 C 43.362 25.328 42.127 24.093 40.603 24.093 C 39.079 24.093 37.844 25.328 37.844 26.851 C 37.844 28.374 39.079 29.609 40.603 29.609 Z M 26.392 8.066 C 27.916 8.066 29.151 6.831 29.151 5.308 C 29.151 3.785 27.916 2.55 26.392 2.55 C 24.868 2.55 23.633 3.785 23.633 5.308 C 23.633 6.831 24.868 8.066 26.392 8.066 Z M 40.915 13.295 C 42.439 13.295 43.674 12.061 43.674 10.537 C 43.674 9.014 42.439 7.779 40.915 7.779 C 39.392 7.779 38.156 9.014 38.156 10.537 C 38.156 12.061 39.392 13.295 40.915 13.295 Z M 10.099 7.988 C 11.622 7.988 12.858 6.753 12.858 5.23 C 12.858 3.707 11.622 2.472 10.099 2.472 C 8.575 2.472 7.34 3.707 7.34 5.23 C 7.34 6.753 8.575 7.988 10.099 7.988 Z M 19.469 43.71 C 20.992 43.71 22.228 42.476 22.228 40.952 C 22.228 39.429 20.992 38.195 19.469 38.195 C 17.945 38.195 16.71 39.429 16.71 40.952 C 16.71 42.476 17.945 43.71 19.469 43.71 Z M 4.945 22.193 C 6.469 22.193 7.704 20.959 7.704 19.436 C 7.704 17.912 6.469 16.678 4.945 16.678 C 3.422 16.678 2.186 17.912 2.186 19.436 C 2.186 20.959 3.422 22.193 4.945 22.193 Z M 9.37 15.585 C 10.362 15.585 11.166 14.781 11.166 13.79 C 11.166 12.798 10.362 11.994 9.37 11.994 C 8.378 11.994 7.574 12.798 7.574 13.79 C 7.574 14.781 8.378 15.585 9.37 15.585 Z M 5.179 38.793 C 6.703 38.793 7.938 37.558 7.938 36.035 C 7.938 34.512 6.703 33.277 5.179 33.277 C 3.656 33.277 2.421 34.512 2.421 36.035 C 2.421 37.558 3.656 38.793 5.179 38.793 Z M 32.3 11.526 C 33.292 11.526 34.096 10.722 34.096 9.731 C 34.096 8.739 33.292 7.936 32.3 7.936 C 31.308 7.936 30.504 8.739 30.504 9.731 C 30.504 10.722 31.308 11.526 32.3 11.526 Z M 4.373 11.526 C 5.364 11.526 6.169 10.722 6.169 9.731 C 6.169 8.739 5.364 7.936 4.373 7.936 C 3.381 7.936 2.577 8.739 2.577 9.731 C 2.577 10.722 3.381 11.526 4.373 11.526 Z M 36.517 6.374 C 37.509 6.374 38.313 5.571 38.313 4.579 C 38.313 3.588 37.509 2.784 36.517 2.784 C 35.525 2.784 34.721 3.588 34.721 4.579 C 34.721 5.571 35.525 6.374 36.517 6.374 Z M 36.517 34.448 C 37.509 34.448 38.313 33.644 38.313 32.653 C 38.313 31.661 37.509 30.857 36.517 30.857 C 35.525 30.857 34.721 31.661 34.721 32.653 C 34.721 33.644 35.525 34.448 36.517 34.448 Z M 41.41 38.273 C 42.402 38.273 43.206 37.469 43.206 36.477 C 43.206 35.486 42.402 34.682 41.41 34.682 C 40.418 34.682 39.614 35.486 39.614 36.477 C 39.614 37.469 40.418 38.273 41.41 38.273 Z M 13.638 38.507 C 14.63 38.507 15.434 37.703 15.434 36.712 C 15.434 35.72 14.63 34.916 13.638 34.916 C 12.647 34.916 11.843 35.72 11.843 36.712 C 11.843 37.703 12.647 38.507 13.638 38.507 Z M 9.292 43.658 C 10.284 43.658 11.088 42.855 11.088 41.863 C 11.088 40.872 10.284 40.068 9.292 40.068 C 8.3 40.068 7.496 40.872 7.496 41.863 C 7.496 42.855 8.3 43.658 9.292 43.658 Z M 31.676 2.186 C 32.193 2.186 32.613 1.766 32.613 1.249 C 32.613 0.732 32.193 0.312 31.676 0.312 C 31.158 0.312 30.739 0.732 30.739 1.249 C 30.739 1.766 31.158 2.186 31.676 2.186 Z M 10.827 32.991 C 11.345 32.991 11.764 32.572 11.764 32.054 C 11.764 31.537 11.345 31.118 10.827 31.118 C 10.31 31.118 9.89 31.537 9.89 32.054 C 9.89 32.572 10.31 32.991 10.827 32.991 Z M 31.676 36.816 C 32.193 36.816 32.613 36.396 32.613 35.879 C 32.613 35.362 32.193 34.942 31.676 34.942 C 31.158 34.942 30.739 35.362 30.739 35.879 C 30.739 36.396 31.158 36.816 31.676 36.816 Z M 44.924 32.523 C 45.441 32.523 45.861 32.103 45.861 31.586 C 45.861 31.069 45.441 30.649 44.924 30.649 C 44.406 30.649 43.987 31.069 43.987 31.586 C 43.987 32.103 44.406 32.523 44.924 32.523 Z M 63.243 32.115 C 61.879 32.115 60.613 31.893 59.445 31.449 C 58.294 31.006 57.291 30.381 56.436 29.576 C 55.598 28.77 54.94 27.825 54.463 26.74 C 54.003 25.656 53.773 24.472 53.773 23.19 C 53.773 21.908 54.003 20.725 54.463 19.64 C 54.93 18.57 55.61 17.605 56.461 16.805 C 57.316 16 58.319 15.375 59.47 14.931 C 60.621 14.488 61.87 14.266 63.219 14.266 C 64.583 14.266 65.833 14.488 66.967 14.931 C 68.118 15.375 69.113 16 69.952 16.805 C 70.807 17.61 71.472 18.555 71.949 19.64 C 72.426 20.709 72.664 21.892 72.664 23.19 C 72.664 24.472 72.426 25.664 71.949 26.765 C 71.472 27.85 70.807 28.795 69.952 29.6 C 69.113 30.389 68.118 31.006 66.967 31.449 C 65.833 31.893 64.591 32.115 63.243 32.115 Z M 63.219 28.713 C 63.991 28.713 64.698 28.581 65.339 28.318 C 65.986 28.062 66.574 27.676 67.066 27.184 C 67.559 26.691 67.937 26.108 68.2 25.434 C 68.48 24.76 68.62 24.012 68.62 23.19 C 68.62 22.369 68.48 21.621 68.2 20.947 C 67.937 20.273 67.559 19.689 67.066 19.196 C 66.589 18.703 66.022 18.325 65.364 18.062 C 64.706 17.8 63.991 17.668 63.219 17.668 C 62.446 17.668 61.731 17.799 61.073 18.062 C 60.436 18.323 59.857 18.708 59.371 19.196 C 58.878 19.689 58.492 20.273 58.212 20.947 C 57.949 21.621 57.817 22.369 57.817 23.19 C 57.817 23.996 57.949 24.743 58.212 25.434 C 58.492 26.108 58.87 26.691 59.347 27.184 C 59.838 27.676 60.426 28.062 61.073 28.318 C 61.731 28.581 62.446 28.713 63.219 28.713 Z M 83.238 32.016 C 82.12 32.016 81.142 31.77 80.304 31.277 C 79.465 30.784 78.807 30.036 78.331 29.033 C 77.87 28.014 77.64 26.732 77.64 25.187 C 77.64 23.626 77.862 22.344 78.306 21.341 C 78.75 20.339 79.391 19.591 80.23 19.098 C 81.068 18.605 82.071 18.358 83.238 18.358 C 84.488 18.358 85.606 18.646 86.593 19.221 C 87.596 19.78 88.385 20.569 88.96 21.588 C 89.552 22.607 89.848 23.807 89.848 25.187 C 89.848 26.584 89.552 27.792 88.96 28.811 C 88.385 29.83 87.596 30.619 86.593 31.178 C 85.606 31.737 84.488 32.016 83.238 32.016 Z M 75.396 36.602 L 75.396 18.555 L 79.071 18.555 L 79.071 21.267 L 78.996 25.212 L 79.243 29.132 L 79.243 36.602 Z M 82.573 28.861 C 83.214 28.861 83.781 28.713 84.274 28.417 C 84.784 28.121 85.187 27.702 85.483 27.16 C 85.795 26.601 85.952 25.943 85.952 25.187 C 85.952 24.415 85.795 23.757 85.483 23.215 C 85.187 22.672 84.784 22.254 84.274 21.958 C 83.781 21.662 83.214 21.514 82.573 21.514 C 81.931 21.514 81.356 21.662 80.846 21.958 C 80.337 22.254 79.934 22.672 79.638 23.215 C 79.342 23.757 79.194 24.415 79.194 25.187 C 79.194 25.943 79.342 26.601 79.638 27.16 C 79.934 27.702 80.337 28.121 80.846 28.417 C 81.356 28.713 81.931 28.861 82.573 28.861 Z M 99.009 32.016 C 97.496 32.016 96.164 31.72 95.013 31.129 C 93.879 30.537 92.999 29.732 92.374 28.713 C 91.749 27.677 91.437 26.502 91.437 25.187 C 91.437 23.856 91.741 22.681 92.35 21.662 C 92.974 20.626 93.821 19.821 94.89 19.246 C 95.959 18.654 97.167 18.358 98.515 18.358 C 99.814 18.358 100.982 18.638 102.017 19.196 C 103.07 19.739 103.9 20.528 104.508 21.563 C 105.117 22.582 105.421 23.807 105.421 25.237 C 105.421 25.385 105.413 25.557 105.396 25.754 C 105.381 25.927 105.364 26.1 105.347 26.272 L 94.569 26.272 L 94.569 24.028 L 103.324 24.028 L 101.845 24.694 C 101.845 24.004 101.705 23.404 101.425 22.894 C 101.146 22.385 100.76 21.99 100.266 21.711 C 99.773 21.415 99.198 21.267 98.54 21.267 C 97.882 21.267 97.299 21.415 96.789 21.711 C 96.296 21.99 95.909 22.393 95.63 22.919 C 95.35 23.429 95.211 24.037 95.211 24.743 L 95.211 25.335 C 95.211 26.058 95.367 26.699 95.679 27.258 C 96.008 27.801 96.46 28.22 97.036 28.516 C 97.628 28.795 98.318 28.934 99.107 28.934 C 99.814 28.934 100.431 28.828 100.957 28.614 C 101.499 28.4 101.993 28.08 102.437 27.653 L 104.484 29.871 C 103.875 30.562 103.111 31.096 102.19 31.474 C 101.269 31.835 100.209 32.016 99.009 32.016 Z M 116.047 18.358 C 117.099 18.358 118.037 18.572 118.858 18.999 C 119.697 19.41 120.355 20.051 120.832 20.922 C 121.308 21.777 121.547 22.878 121.547 24.226 L 121.547 31.819 L 117.699 31.819 L 117.699 24.818 C 117.699 23.749 117.461 22.96 116.984 22.451 C 116.524 21.941 115.866 21.686 115.011 21.686 C 114.403 21.686 113.852 21.818 113.359 22.081 C 112.882 22.327 112.504 22.714 112.224 23.24 C 111.961 23.765 111.83 24.439 111.83 25.261 L 111.83 31.819 L 107.982 31.819 L 107.982 18.555 L 111.657 18.555 L 111.657 22.229 L 110.966 21.119 C 111.443 20.232 112.126 19.55 113.013 19.073 C 113.901 18.596 114.912 18.358 116.047 18.358 Z M 130.978 32.115 C 129.597 32.115 128.273 31.934 127.007 31.572 C 125.741 31.194 124.722 30.71 123.949 30.118 L 125.306 27.11 C 126.045 27.636 126.917 28.072 127.92 28.417 C 128.939 28.746 129.967 28.91 131.002 28.91 C 131.792 28.91 132.425 28.836 132.902 28.688 C 133.395 28.524 133.756 28.302 133.987 28.023 C 134.213 27.754 134.336 27.412 134.332 27.061 C 134.332 26.601 134.151 26.239 133.789 25.976 C 133.428 25.697 132.951 25.475 132.359 25.31 C 131.767 25.13 131.109 24.965 130.386 24.817 C 129.663 24.649 128.947 24.451 128.24 24.226 C 127.533 23.996 126.884 23.7 126.292 23.338 C 125.703 22.98 125.205 22.491 124.837 21.908 C 124.475 21.317 124.294 20.561 124.294 19.64 C 124.294 18.654 124.557 17.758 125.084 16.953 C 125.626 16.131 126.432 15.482 127.5 15.005 C 128.586 14.512 129.942 14.266 131.57 14.266 C 132.655 14.266 133.724 14.397 134.776 14.66 C 135.828 14.907 136.757 15.285 137.563 15.794 L 136.33 18.827 C 135.524 18.366 134.718 18.03 133.913 17.816 C 133.107 17.586 132.318 17.471 131.545 17.471 C 130.772 17.471 130.139 17.561 129.646 17.742 C 129.153 17.923 128.799 18.161 128.586 18.457 C 128.372 18.736 128.265 19.065 128.265 19.443 C 128.265 19.887 128.446 20.248 128.808 20.528 C 129.169 20.791 129.646 21.004 130.238 21.169 C 130.83 21.333 131.479 21.497 132.186 21.662 C 132.91 21.826 133.625 22.015 134.332 22.229 C 135.055 22.442 135.713 22.73 136.305 23.092 C 136.89 23.446 137.381 23.937 137.736 24.522 C 138.114 25.113 138.303 25.861 138.303 26.765 C 138.303 27.735 138.031 28.622 137.489 29.428 C 136.946 30.233 136.132 30.882 135.047 31.375 C 133.978 31.868 132.622 32.115 130.978 32.115 Z M 147.174 32.016 C 145.743 32.016 144.469 31.729 143.351 31.153 C 142.233 30.562 141.353 29.748 140.712 28.713 C 140.087 27.677 139.775 26.502 139.775 25.187 C 139.775 23.856 140.087 22.681 140.712 21.662 C 141.353 20.626 142.233 19.821 143.351 19.246 C 144.469 18.654 145.743 18.358 147.174 18.358 C 148.571 18.358 149.788 18.654 150.824 19.246 C 151.86 19.821 152.624 20.651 153.117 21.736 L 150.133 23.338 C 149.788 22.714 149.352 22.253 148.826 21.958 C 148.317 21.662 147.757 21.514 147.149 21.514 C 146.491 21.514 145.899 21.662 145.373 21.958 C 144.847 22.254 144.428 22.672 144.116 23.215 C 143.819 23.757 143.672 24.415 143.672 25.187 C 143.672 25.96 143.819 26.617 144.116 27.16 C 144.428 27.702 144.847 28.121 145.373 28.417 C 145.899 28.713 146.491 28.861 147.149 28.861 C 147.757 28.861 148.317 28.721 148.826 28.441 C 149.352 28.146 149.788 27.677 150.133 27.036 L 153.117 28.663 C 152.624 29.732 151.86 30.562 150.824 31.153 C 149.788 31.729 148.571 32.016 147.174 32.016 Z M 155.26 31.819 L 155.26 18.555 L 159.108 18.555 L 159.108 31.819 Z M 157.184 16.706 C 156.477 16.706 155.901 16.501 155.458 16.09 C 155.014 15.679 154.792 15.17 154.792 14.562 C 154.792 13.954 155.014 13.444 155.458 13.033 C 155.901 12.622 156.477 12.417 157.184 12.417 C 157.891 12.417 158.467 12.614 158.911 13.008 C 159.354 13.386 159.576 13.879 159.576 14.488 C 159.576 15.128 159.354 15.663 158.911 16.09 C 158.483 16.501 157.907 16.706 157.184 16.706 Z M 169.263 32.016 C 167.751 32.016 166.419 31.72 165.268 31.129 C 164.133 30.537 163.254 29.732 162.629 28.713 C 162.004 27.677 161.692 26.502 161.692 25.187 C 161.692 23.856 161.996 22.681 162.604 21.662 C 163.229 20.626 164.076 19.821 165.145 19.246 C 166.213 18.654 167.422 18.358 168.77 18.358 C 170.069 18.358 171.236 18.638 172.272 19.196 C 173.324 19.739 174.155 20.528 174.763 21.563 C 175.371 22.582 175.676 23.807 175.676 25.237 C 175.676 25.385 175.667 25.557 175.651 25.754 C 175.635 25.935 175.618 26.108 175.602 26.272 L 164.824 26.272 L 164.824 24.028 L 173.579 24.028 L 172.099 24.694 C 172.099 24.004 171.96 23.404 171.68 22.894 C 171.401 22.385 171.014 21.99 170.521 21.711 C 170.028 21.415 169.452 21.267 168.795 21.267 C 168.137 21.267 167.553 21.415 167.044 21.711 C 166.55 21.99 166.164 22.393 165.885 22.919 C 165.605 23.429 165.465 24.037 165.465 24.743 L 165.465 25.335 C 165.465 26.058 165.621 26.699 165.934 27.258 C 166.263 27.801 166.715 28.22 167.29 28.516 C 167.882 28.795 168.573 28.934 169.362 28.934 C 170.069 28.934 170.685 28.828 171.212 28.614 C 171.754 28.4 172.248 28.08 172.691 27.653 L 174.738 29.871 C 174.13 30.562 173.365 31.096 172.445 31.474 C 171.524 31.835 170.464 32.016 169.263 32.016 Z M 186.302 18.358 C 187.354 18.358 188.291 18.572 189.113 18.999 C 189.952 19.41 190.61 20.051 191.086 20.922 C 191.563 21.777 191.802 22.878 191.802 24.226 L 191.802 31.819 L 187.954 31.819 L 187.954 24.818 C 187.954 23.749 187.716 22.96 187.239 22.451 C 186.779 21.941 186.121 21.686 185.266 21.686 C 184.658 21.686 184.107 21.818 183.614 22.081 C 183.137 22.327 182.759 22.714 182.479 23.24 C 182.216 23.765 182.084 24.439 182.084 25.261 L 182.084 31.819 L 178.237 31.819 L 178.237 18.555 L 181.912 18.555 L 181.912 22.229 L 181.221 21.119 C 181.698 20.232 182.38 19.55 183.268 19.073 C 184.156 18.596 185.167 18.358 186.302 18.358 Z M 201.798 32.016 C 200.367 32.016 199.093 31.729 197.975 31.153 C 196.857 30.562 195.977 29.748 195.336 28.713 C 194.711 27.677 194.399 26.502 194.399 25.187 C 194.399 23.856 194.711 22.681 195.336 21.662 C 195.977 20.626 196.857 19.821 197.975 19.246 C 199.093 18.654 200.367 18.358 201.798 18.358 C 203.195 18.358 204.412 18.654 205.448 19.246 C 206.484 19.821 207.248 20.651 207.741 21.736 L 204.757 23.338 C 204.412 22.714 203.976 22.253 203.45 21.958 C 202.94 21.662 202.381 21.514 201.773 21.514 C 201.115 21.514 200.523 21.662 199.997 21.958 C 199.471 22.254 199.052 22.672 198.74 23.215 C 198.444 23.757 198.296 24.415 198.296 25.187 C 198.296 25.96 198.444 26.617 198.74 27.16 C 199.052 27.702 199.471 28.121 199.997 28.417 C 200.523 28.713 201.115 28.861 201.773 28.861 C 202.381 28.861 202.94 28.721 203.45 28.441 C 203.976 28.146 204.412 27.677 204.757 27.036 L 207.741 28.663 C 207.248 29.732 206.484 30.562 205.448 31.153 C 204.412 31.729 203.195 32.016 201.798 32.016 Z M 216.373 32.016 C 214.86 32.016 213.528 31.72 212.377 31.129 C 211.243 30.537 210.363 29.732 209.739 28.713 C 209.114 27.677 208.801 26.502 208.801 25.187 C 208.801 23.856 209.106 22.681 209.714 21.662 C 210.339 20.626 211.185 19.821 212.254 19.246 C 213.323 18.654 214.531 18.358 215.879 18.358 C 217.179 18.358 218.346 18.638 219.382 19.196 C 220.434 19.739 221.264 20.528 221.873 21.563 C 222.481 22.582 222.785 23.807 222.785 25.237 C 222.785 25.385 222.777 25.557 222.76 25.754 C 222.745 25.927 222.728 26.1 222.711 26.272 L 211.933 26.272 L 211.933 24.028 L 220.689 24.028 L 219.209 24.694 C 219.209 24.004 219.069 23.404 218.79 22.894 C 218.51 22.385 218.124 21.99 217.631 21.711 C 217.137 21.415 216.562 21.267 215.904 21.267 C 215.246 21.267 214.663 21.415 214.153 21.711 C 213.66 21.99 213.274 22.393 212.994 22.919 C 212.715 23.429 212.575 24.037 212.575 24.743 L 212.575 25.335 C 212.575 26.058 212.731 26.699 213.043 27.258 C 213.372 27.801 213.824 28.22 214.4 28.516 C 214.992 28.795 215.682 28.934 216.471 28.934 C 217.179 28.934 217.795 28.828 218.321 28.614 C 218.864 28.4 219.357 28.08 219.801 27.653 L 221.848 29.871 C 221.24 30.562 220.475 31.096 219.554 31.474 C 218.633 31.835 217.573 32.016 216.373 32.016 Z M 225.618 31.819 L 225.618 14.561 L 229.613 14.561 L 229.613 28.565 L 238.27 28.565 L 238.27 31.819 Z M 248.466 31.819 L 248.466 29.231 L 248.219 28.663 L 248.219 24.028 C 248.219 23.207 247.965 22.566 247.455 22.106 C 246.961 21.645 246.197 21.415 245.161 21.415 C 244.448 21.416 243.74 21.533 243.065 21.76 C 242.391 21.974 241.815 22.27 241.338 22.648 L 239.957 19.961 C 240.681 19.451 241.552 19.057 242.572 18.777 C 243.584 18.499 244.629 18.358 245.679 18.358 C 247.701 18.358 249.272 18.835 250.389 19.788 C 251.508 20.741 252.067 22.229 252.067 24.25 L 252.067 31.819 Z M 244.421 32.016 C 243.386 32.016 242.497 31.844 241.758 31.499 C 241.018 31.137 240.451 30.652 240.056 30.044 C 239.661 29.436 239.464 28.754 239.464 27.998 C 239.464 27.209 239.653 26.518 240.031 25.927 C 240.426 25.335 241.043 24.875 241.881 24.546 C 242.719 24.201 243.813 24.028 245.161 24.028 L 248.688 24.028 L 248.688 26.272 L 245.58 26.272 C 244.676 26.272 244.051 26.42 243.706 26.716 C 243.377 27.012 243.213 27.381 243.213 27.825 C 243.213 28.318 243.402 28.713 243.78 29.009 C 244.175 29.288 244.709 29.428 245.383 29.428 C 246.024 29.428 246.6 29.28 247.11 28.984 C 247.619 28.672 247.989 28.22 248.219 27.628 L 248.811 29.403 C 248.532 30.258 248.022 30.907 247.282 31.351 C 246.542 31.794 245.588 32.016 244.421 32.016 Z M 263.392 32.016 C 262.223 32.016 261.221 31.77 260.383 31.277 C 259.544 30.784 258.903 30.036 258.459 29.033 C 258.015 28.014 257.793 26.732 257.793 25.187 C 257.793 23.626 258.023 22.344 258.484 21.341 C 258.96 20.339 259.618 19.591 260.456 19.098 C 261.294 18.605 262.272 18.358 263.392 18.358 C 264.641 18.358 265.76 18.638 266.747 19.196 C 267.749 19.755 268.537 20.544 269.112 21.563 C 269.706 22.582 270 23.79 270 25.187 C 270 26.568 269.706 27.768 269.112 28.787 C 268.537 29.806 267.749 30.603 266.747 31.178 C 265.76 31.737 264.641 32.016 263.392 32.016 Z M 255.549 31.819 L 255.549 13.526 L 259.396 13.526 L 259.396 21.243 L 259.149 25.163 L 259.224 29.107 L 259.224 31.819 Z M 262.725 28.861 C 263.366 28.861 263.933 28.713 264.428 28.417 C 264.938 28.121 265.338 27.702 265.635 27.16 C 265.948 26.601 266.104 25.943 266.104 25.187 C 266.104 24.415 265.948 23.757 265.635 23.215 C 265.338 22.672 264.938 22.254 264.428 21.958 C 263.933 21.662 263.366 21.514 262.725 21.514 C 262.085 21.514 261.51 21.662 261 21.958 C 260.49 22.254 260.087 22.672 259.791 23.215 C 259.495 23.757 259.347 24.415 259.347 25.187 C 259.347 25.943 259.495 26.601 259.791 27.16 C 260.087 27.702 260.49 28.121 261 28.417 C 261.51 28.713 262.085 28.861 262.725 28.861 Z\" fill=\"rgb(23,23,150)\"></path></svg>'}},children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1mimwqe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 363.776 61.93\" overflow=\"visible\"><path d=\"M 19.322 61.86 C 19.778 61.868 20.203 61.629 20.433 61.236 C 20.663 60.843 20.663 60.356 20.433 59.963 C 20.203 59.569 19.778 59.331 19.323 59.338 C 18.634 59.35 18.081 59.911 18.081 60.599 C 18.081 61.287 18.633 61.848 19.322 61.86 Z M 1.262 20.807 C 1.96 20.807 2.525 20.242 2.525 19.546 C 2.525 18.849 1.96 18.285 1.262 18.285 C 0.565 18.285 0 18.849 0 19.546 C 0 20.242 0.565 20.807 1.262 20.807 Z M 47.306 20.912 C 48.003 20.912 48.568 20.347 48.568 19.651 C 48.568 18.954 48.003 18.39 47.306 18.39 C 46.609 18.39 46.044 18.954 46.044 19.651 C 46.044 20.347 46.609 20.912 47.306 20.912 Z M 18.901 15.553 C 19.599 15.553 20.164 14.988 20.164 14.292 C 20.164 13.595 19.599 13.031 18.901 13.031 C 18.204 13.031 17.639 13.595 17.639 14.292 C 17.639 14.988 18.204 15.553 18.901 15.553 Z M 24.652 9.247 C 27.209 9.247 29.281 7.177 29.281 4.624 C 29.281 2.07 27.209 0 24.652 0 C 22.096 0 20.024 2.07 20.024 4.624 C 20.024 7.177 22.096 9.247 24.652 9.247 Z M 4.629 41.859 C 7.185 41.859 9.258 39.789 9.258 37.235 C 9.258 34.681 7.185 32.611 4.629 32.611 C 2.072 32.611 0 34.681 0 37.235 C 0 39.789 2.072 41.859 4.629 41.859 Z M 57.265 29.599 C 59.822 29.599 61.894 27.529 61.894 24.975 C 61.894 22.422 59.822 20.351 57.265 20.351 C 54.709 20.351 52.636 22.422 52.636 24.975 C 52.636 27.529 54.709 29.599 57.265 29.599 Z M 48.183 58.742 C 50.236 58.742 51.9 57.08 51.9 55.029 C 51.9 52.979 50.236 51.316 48.183 51.316 C 46.13 51.316 44.466 52.979 44.466 55.029 C 44.466 57.08 46.13 58.742 48.183 58.742 Z M 37.522 61.93 C 40.079 61.93 42.151 59.86 42.151 57.306 C 42.151 54.753 40.079 52.682 37.522 52.682 C 34.966 52.682 32.893 54.753 32.893 57.306 C 32.893 59.86 34.966 61.93 37.522 61.93 Z M 54.705 39.862 C 56.758 39.862 58.422 38.2 58.422 36.149 C 58.422 34.099 56.758 32.436 54.705 32.436 C 52.652 32.436 50.988 34.099 50.988 36.149 C 50.988 38.2 52.652 39.862 54.705 39.862 Z M 35.558 10.859 C 37.611 10.859 39.276 9.197 39.276 7.146 C 39.276 5.095 37.611 3.433 35.558 3.433 C 33.506 3.433 31.841 5.095 31.841 7.146 C 31.841 9.197 33.506 10.859 35.558 10.859 Z M 55.126 17.899 C 57.179 17.899 58.843 16.237 58.843 14.186 C 58.843 12.136 57.179 10.473 55.126 10.473 C 53.073 10.473 51.409 12.136 51.409 14.186 C 51.409 16.237 53.073 17.899 55.126 17.899 Z M 13.606 10.754 C 15.659 10.754 17.323 9.091 17.323 7.041 C 17.323 4.99 15.659 3.328 13.606 3.328 C 11.553 3.328 9.889 4.99 9.889 7.041 C 9.889 9.091 11.553 10.754 13.606 10.754 Z M 26.23 58.847 C 28.283 58.847 29.948 57.185 29.948 55.134 C 29.948 53.084 28.283 51.421 26.23 51.421 C 24.178 51.421 22.513 53.084 22.513 55.134 C 22.513 57.185 24.178 58.847 26.23 58.847 Z M 6.663 29.879 C 8.716 29.879 10.38 28.217 10.38 26.166 C 10.38 24.116 8.716 22.453 6.663 22.453 C 4.61 22.453 2.946 24.116 2.946 26.166 C 2.946 28.217 4.61 29.879 6.663 29.879 Z M 12.624 20.982 C 13.961 20.982 15.044 19.9 15.044 18.565 C 15.044 17.23 13.961 16.148 12.624 16.148 C 11.288 16.148 10.205 17.23 10.205 18.565 C 10.205 19.9 11.288 20.982 12.624 20.982 Z M 6.978 52.227 C 9.031 52.227 10.696 50.565 10.696 48.514 C 10.696 46.464 9.031 44.801 6.978 44.801 C 4.926 44.801 3.261 46.464 3.261 48.514 C 3.261 50.565 4.926 52.227 6.978 52.227 Z M 43.519 15.518 C 44.855 15.518 45.938 14.435 45.938 13.101 C 45.938 11.766 44.855 10.684 43.519 10.684 C 42.182 10.684 41.099 11.766 41.099 13.101 C 41.099 14.435 42.182 15.518 43.519 15.518 Z M 5.891 15.518 C 7.228 15.518 8.311 14.435 8.311 13.101 C 8.311 11.766 7.228 10.684 5.891 10.684 C 4.555 10.684 3.472 11.766 3.472 13.101 C 3.472 14.435 4.555 15.518 5.891 15.518 Z M 49.2 8.582 C 50.536 8.582 51.619 7.5 51.619 6.165 C 51.619 4.83 50.536 3.748 49.2 3.748 C 47.863 3.748 46.78 4.83 46.78 6.165 C 46.78 7.5 47.863 8.582 49.2 8.582 Z M 49.2 46.377 C 50.536 46.377 51.619 45.295 51.619 43.96 C 51.619 42.626 50.536 41.544 49.2 41.544 C 47.863 41.544 46.78 42.626 46.78 43.96 C 46.78 45.295 47.863 46.377 49.2 46.377 Z M 55.792 51.527 C 57.129 51.527 58.212 50.444 58.212 49.11 C 58.212 47.775 57.129 46.693 55.792 46.693 C 54.456 46.693 53.373 47.775 53.373 49.11 C 53.373 50.444 54.456 51.527 55.792 51.527 Z M 18.375 51.842 C 19.712 51.842 20.795 50.76 20.795 49.425 C 20.795 48.09 19.712 47.008 18.375 47.008 C 17.039 47.008 15.956 48.09 15.956 49.425 C 15.956 50.76 17.039 51.842 18.375 51.842 Z M 12.519 58.777 C 13.855 58.777 14.939 57.695 14.939 56.36 C 14.939 55.026 13.855 53.944 12.519 53.944 C 11.183 53.944 10.099 55.026 10.099 56.36 C 10.099 57.695 11.183 58.777 12.519 58.777 Z M 42.677 2.942 C 43.374 2.942 43.94 2.378 43.94 1.681 C 43.94 0.985 43.374 0.42 42.677 0.42 C 41.98 0.42 41.415 0.985 41.415 1.681 C 41.415 2.378 41.98 2.942 42.677 2.942 Z M 14.588 44.416 C 15.285 44.416 15.85 43.851 15.85 43.155 C 15.85 42.458 15.285 41.894 14.588 41.894 C 13.891 41.894 13.326 42.458 13.326 43.155 C 13.326 43.851 13.891 44.416 14.588 44.416 Z M 42.677 49.565 C 43.374 49.565 43.94 49 43.94 48.304 C 43.94 47.608 43.374 47.043 42.677 47.043 C 41.98 47.043 41.415 47.608 41.415 48.304 C 41.415 49 41.98 49.565 42.677 49.565 Z M 60.526 43.785 C 61.224 43.785 61.789 43.221 61.789 42.524 C 61.789 41.828 61.224 41.263 60.526 41.263 C 59.829 41.263 59.264 41.828 59.264 42.524 C 59.264 43.221 59.829 43.785 60.526 43.785 Z M 85.209 43.236 C 83.37 43.236 81.664 42.938 80.092 42.34 C 78.541 41.743 77.19 40.902 76.038 39.818 C 74.908 38.734 74.022 37.461 73.379 36.001 C 72.759 34.54 72.449 32.947 72.449 31.221 C 72.449 29.495 72.759 27.902 73.379 26.442 C 74.008 25 74.924 23.702 76.071 22.625 C 77.223 21.54 78.574 20.7 80.125 20.102 C 81.676 19.505 83.359 19.206 85.176 19.206 C 87.014 19.206 88.698 19.505 90.226 20.102 C 91.777 20.7 93.117 21.54 94.247 22.625 C 95.399 23.709 96.296 24.981 96.938 26.442 C 97.581 27.88 97.902 29.473 97.902 31.221 C 97.902 32.947 97.581 34.552 96.938 36.034 C 96.296 37.494 95.399 38.767 94.247 39.851 C 93.117 40.913 91.777 41.743 90.226 42.34 C 88.698 42.938 87.025 43.236 85.209 43.236 Z M 85.176 38.656 C 86.217 38.656 87.169 38.479 88.033 38.125 C 88.905 37.78 89.696 37.261 90.359 36.598 C 91.024 35.934 91.533 35.149 91.888 34.242 C 92.264 33.334 92.453 32.328 92.453 31.221 C 92.453 30.115 92.264 29.108 91.888 28.201 C 91.533 27.294 91.024 26.508 90.359 25.844 C 89.717 25.18 88.952 24.671 88.066 24.317 C 87.18 23.964 86.217 23.786 85.176 23.786 C 84.134 23.786 83.171 23.963 82.285 24.317 C 81.426 24.668 80.646 25.187 79.992 25.844 C 79.327 26.508 78.807 27.294 78.43 28.201 C 78.076 29.108 77.898 30.115 77.898 31.221 C 77.898 32.306 78.076 33.312 78.43 34.242 C 78.807 35.149 79.316 35.934 79.959 36.598 C 80.621 37.261 81.413 37.78 82.285 38.125 C 83.171 38.479 84.134 38.656 85.176 38.656 Z M 112.148 43.104 C 110.642 43.104 109.324 42.772 108.195 42.108 C 107.065 41.444 106.179 40.437 105.536 39.088 C 104.916 37.716 104.606 35.99 104.606 33.91 C 104.606 31.807 104.905 30.082 105.503 28.732 C 106.101 27.382 106.965 26.375 108.095 25.711 C 109.225 25.048 110.576 24.716 112.148 24.716 C 113.832 24.716 115.339 25.103 116.668 25.877 C 118.019 26.63 119.082 27.692 119.858 29.064 C 120.655 30.436 121.054 32.051 121.054 33.91 C 121.054 35.79 120.655 37.417 119.858 38.789 C 119.082 40.161 118.019 41.223 116.668 41.975 C 115.339 42.727 113.832 43.104 112.148 43.104 Z M 101.582 49.277 L 101.582 24.981 L 106.533 24.981 L 106.533 28.632 L 106.433 33.943 L 106.766 39.22 L 106.766 49.277 Z M 111.251 38.855 C 112.116 38.855 112.88 38.656 113.544 38.258 C 114.231 37.86 114.774 37.295 115.172 36.565 C 115.593 35.813 115.804 34.928 115.804 33.91 C 115.804 32.869 115.593 31.985 115.172 31.255 C 114.774 30.524 114.231 29.96 113.544 29.562 C 112.88 29.163 112.116 28.964 111.251 28.964 C 110.387 28.964 109.612 29.163 108.925 29.562 C 108.239 29.96 107.696 30.524 107.297 31.254 C 106.899 31.985 106.699 32.87 106.699 33.909 C 106.699 34.928 106.899 35.813 107.297 36.565 C 107.696 37.295 108.239 37.86 108.925 38.258 C 109.612 38.656 110.387 38.855 111.251 38.855 Z M 133.396 43.104 C 131.358 43.104 129.564 42.705 128.013 41.909 C 126.484 41.112 125.299 40.028 124.458 38.656 C 123.616 37.262 123.195 35.68 123.195 33.91 C 123.195 32.117 123.605 30.535 124.424 29.163 C 125.266 27.769 126.407 26.685 127.847 25.91 C 129.287 25.114 130.915 24.716 132.731 24.716 C 134.481 24.716 136.054 25.092 137.45 25.844 C 138.867 26.575 139.986 27.637 140.806 29.03 C 141.625 30.402 142.035 32.051 142.035 33.976 C 142.035 34.175 142.024 34.407 142.002 34.673 C 141.981 34.906 141.959 35.138 141.935 35.37 L 127.415 35.37 L 127.415 32.35 L 139.211 32.35 L 137.217 33.246 C 137.217 32.316 137.029 31.509 136.652 30.823 C 136.276 30.137 135.755 29.606 135.091 29.23 C 134.426 28.831 133.651 28.632 132.765 28.632 C 131.878 28.632 131.092 28.831 130.405 29.23 C 129.741 29.606 129.22 30.148 128.844 30.856 C 128.467 31.542 128.279 32.361 128.279 33.312 L 128.279 34.109 C 128.279 35.083 128.489 35.945 128.91 36.698 C 129.353 37.428 129.962 37.992 130.738 38.391 C 131.535 38.767 132.466 38.955 133.529 38.955 C 134.481 38.955 135.312 38.811 136.021 38.523 C 136.752 38.235 137.416 37.804 138.015 37.229 L 140.773 40.216 C 139.953 41.145 138.923 41.864 137.682 42.373 C 136.442 42.86 135.013 43.104 133.396 43.104 Z M 156.352 24.716 C 157.77 24.716 159.033 25.004 160.14 25.579 C 161.27 26.132 162.156 26.995 162.798 28.167 C 163.441 29.318 163.762 30.801 163.762 32.615 L 163.762 42.838 L 158.578 42.838 L 158.578 33.412 C 158.578 31.973 158.257 30.911 157.615 30.226 C 156.994 29.539 156.108 29.196 154.956 29.196 C 154.137 29.196 153.395 29.374 152.73 29.727 C 152.088 30.059 151.578 30.579 151.202 31.288 C 150.847 31.996 150.67 32.903 150.67 34.009 L 150.67 42.838 L 145.486 42.838 L 145.486 24.981 L 150.437 24.981 L 150.437 29.927 L 149.507 28.433 C 150.149 27.238 151.069 26.32 152.265 25.678 C 153.461 25.036 154.823 24.716 156.352 24.716 Z M 176.469 43.236 C 174.608 43.236 172.825 42.993 171.119 42.506 C 169.413 41.997 168.04 41.345 166.999 40.548 L 168.826 36.499 C 169.823 37.207 170.997 37.793 172.348 38.258 C 173.722 38.7 175.106 38.922 176.502 38.922 C 177.565 38.922 178.418 38.822 179.061 38.623 C 179.725 38.401 180.212 38.103 180.523 37.727 C 180.828 37.365 180.993 36.905 180.988 36.432 C 180.988 35.813 180.744 35.326 180.257 34.972 C 179.769 34.596 179.127 34.297 178.33 34.075 C 177.532 33.832 176.646 33.611 175.671 33.412 C 174.697 33.185 173.733 32.919 172.78 32.615 C 171.828 32.306 170.953 31.907 170.155 31.42 C 169.362 30.938 168.691 30.279 168.195 29.495 C 167.708 28.699 167.464 27.681 167.464 26.442 C 167.464 25.114 167.818 23.908 168.527 22.824 C 169.258 21.718 170.344 20.843 171.783 20.201 C 173.245 19.538 175.073 19.206 177.266 19.206 C 178.728 19.206 180.168 19.383 181.586 19.737 C 183.004 20.069 184.255 20.578 185.341 21.264 L 183.679 25.346 C 182.594 24.726 181.508 24.273 180.423 23.986 C 179.337 23.676 178.274 23.521 177.233 23.521 C 176.192 23.521 175.339 23.643 174.674 23.886 C 174.01 24.129 173.534 24.45 173.245 24.848 C 172.958 25.225 172.813 25.667 172.813 26.176 C 172.813 26.773 173.057 27.26 173.545 27.637 C 174.032 27.99 174.674 28.278 175.472 28.499 C 176.269 28.721 177.144 28.942 178.097 29.163 C 179.072 29.384 180.035 29.639 180.988 29.927 C 181.963 30.214 182.849 30.602 183.646 31.088 C 184.434 31.566 185.095 32.226 185.573 33.013 C 186.083 33.81 186.338 34.817 186.338 36.034 C 186.338 37.339 185.972 38.534 185.241 39.619 C 184.51 40.703 183.414 41.577 181.951 42.241 C 180.511 42.904 178.684 43.236 176.469 43.236 Z M 198.29 43.104 C 196.362 43.104 194.646 42.716 193.139 41.942 C 191.633 41.145 190.448 40.05 189.584 38.656 C 188.742 37.262 188.321 35.68 188.321 33.91 C 188.321 32.117 188.742 30.535 189.584 29.163 C 190.448 27.769 191.633 26.685 193.139 25.91 C 194.646 25.114 196.362 24.716 198.29 24.716 C 200.173 24.716 201.812 25.114 203.207 25.91 C 204.603 26.685 205.633 27.803 206.298 29.263 L 202.277 31.42 C 201.812 30.58 201.225 29.96 200.516 29.562 C 199.829 29.163 199.076 28.964 198.256 28.964 C 197.37 28.964 196.573 29.163 195.864 29.562 C 195.155 29.96 194.59 30.524 194.169 31.254 C 193.77 31.985 193.571 32.87 193.571 33.909 C 193.571 34.95 193.77 35.835 194.169 36.565 C 194.59 37.295 195.155 37.86 195.864 38.258 C 196.573 38.656 197.37 38.855 198.256 38.855 C 199.076 38.855 199.829 38.667 200.516 38.291 C 201.225 37.893 201.812 37.262 202.277 36.399 L 206.298 38.59 C 205.633 40.028 204.603 41.145 203.207 41.942 C 201.812 42.716 200.173 43.104 198.29 43.104 Z M 209.185 42.838 L 209.185 24.981 L 214.369 24.981 L 214.369 42.838 Z M 211.777 22.492 C 210.824 22.492 210.049 22.215 209.451 21.662 C 208.853 21.109 208.553 20.423 208.553 19.604 C 208.553 18.786 208.853 18.099 209.451 17.546 C 210.049 16.993 210.824 16.717 211.777 16.717 C 212.729 16.717 213.505 16.982 214.103 17.513 C 214.701 18.022 215 18.686 215 19.505 C 215 20.368 214.701 21.087 214.103 21.662 C 213.527 22.215 212.751 22.492 211.777 22.492 Z M 228.051 43.104 C 226.013 43.104 224.219 42.705 222.668 41.909 C 221.14 41.112 219.955 40.028 219.113 38.656 C 218.271 37.262 217.85 35.68 217.85 33.91 C 217.85 32.117 218.26 30.535 219.08 29.163 C 219.922 27.769 221.062 26.685 222.502 25.91 C 223.942 25.114 225.57 24.716 227.387 24.716 C 229.137 24.716 230.71 25.092 232.105 25.844 C 233.523 26.575 234.641 27.637 235.461 29.03 C 236.281 30.402 236.691 32.051 236.691 33.976 C 236.691 34.175 236.68 34.407 236.657 34.673 C 236.635 34.917 236.613 35.149 236.591 35.37 L 222.07 35.37 L 222.07 32.35 L 233.866 32.35 L 231.873 33.246 C 231.873 32.316 231.684 31.509 231.308 30.823 C 230.931 30.137 230.411 29.606 229.746 29.23 C 229.082 28.831 228.306 28.632 227.42 28.632 C 226.534 28.632 225.747 28.831 225.061 29.23 C 224.396 29.606 223.876 30.148 223.499 30.856 C 223.123 31.542 222.934 32.361 222.934 33.312 L 222.934 34.109 C 222.934 35.083 223.145 35.945 223.565 36.698 C 224.009 37.428 224.618 37.992 225.393 38.391 C 226.191 38.767 227.121 38.955 228.184 38.955 C 229.137 38.955 229.967 38.811 230.676 38.523 C 231.408 38.235 232.072 37.804 232.67 37.229 L 235.428 40.216 C 234.609 41.145 233.578 41.864 232.338 42.373 C 231.097 42.86 229.669 43.104 228.051 43.104 Z M 251.007 24.716 C 252.425 24.716 253.688 25.004 254.795 25.579 C 255.925 26.132 256.811 26.995 257.454 28.167 C 258.096 29.318 258.418 30.801 258.418 32.615 L 258.418 42.838 L 253.234 42.838 L 253.234 33.412 C 253.234 31.973 252.913 30.911 252.27 30.226 C 251.65 29.539 250.764 29.196 249.612 29.196 C 248.792 29.196 248.05 29.374 247.386 29.727 C 246.743 30.059 246.234 30.579 245.857 31.288 C 245.503 31.996 245.325 32.903 245.325 34.009 L 245.325 42.838 L 240.142 42.838 L 240.142 24.981 L 245.093 24.981 L 245.093 29.927 L 244.162 28.433 C 244.805 27.238 245.724 26.32 246.92 25.678 C 248.117 25.036 249.479 24.716 251.007 24.716 Z M 271.885 43.104 C 269.958 43.104 268.241 42.716 266.735 41.942 C 265.229 41.145 264.043 40.05 263.179 38.656 C 262.338 37.262 261.917 35.68 261.917 33.91 C 261.917 32.117 262.338 30.535 263.179 29.163 C 264.043 27.769 265.229 26.685 266.735 25.91 C 268.241 25.114 269.958 24.716 271.885 24.716 C 273.768 24.716 275.407 25.114 276.803 25.91 C 278.199 26.685 279.229 27.803 279.893 29.263 L 275.873 31.42 C 275.407 30.58 274.82 29.96 274.112 29.562 C 273.425 29.163 272.672 28.964 271.852 28.964 C 270.966 28.964 270.169 29.163 269.46 29.562 C 268.751 29.96 268.186 30.524 267.765 31.254 C 267.366 31.985 267.167 32.87 267.167 33.909 C 267.167 34.95 267.366 35.835 267.765 36.565 C 268.186 37.295 268.751 37.86 269.46 38.258 C 270.169 38.656 270.966 38.855 271.852 38.855 C 272.672 38.855 273.425 38.667 274.112 38.291 C 274.82 37.893 275.407 37.262 275.873 36.399 L 279.893 38.59 C 279.229 40.028 278.199 41.145 276.803 41.942 C 275.407 42.716 273.768 43.104 271.885 43.104 Z M 291.523 43.104 C 289.485 43.104 287.69 42.705 286.14 41.909 C 284.611 41.112 283.426 40.028 282.584 38.656 C 281.743 37.262 281.321 35.68 281.321 33.91 C 281.321 32.117 281.731 30.535 282.551 29.163 C 283.393 27.769 284.534 26.685 285.974 25.91 C 287.413 25.114 289.042 24.716 290.858 24.716 C 292.608 24.716 294.181 25.092 295.577 25.844 C 296.995 26.575 298.113 27.637 298.933 29.03 C 299.752 30.402 300.162 32.051 300.162 33.976 C 300.162 34.175 300.151 34.407 300.129 34.673 C 300.108 34.906 300.086 35.138 300.063 35.37 L 285.541 35.37 L 285.541 32.35 L 297.338 32.35 L 295.344 33.246 C 295.344 32.316 295.156 31.509 294.779 30.823 C 294.403 30.137 293.882 29.606 293.217 29.23 C 292.553 28.831 291.778 28.632 290.891 28.632 C 290.005 28.632 289.219 28.831 288.532 29.23 C 287.868 29.606 287.347 30.148 286.97 30.856 C 286.594 31.542 286.406 32.361 286.406 33.312 L 286.406 34.109 C 286.406 35.083 286.616 35.945 287.037 36.698 C 287.48 37.428 288.089 37.992 288.864 38.391 C 289.662 38.767 290.592 38.955 291.655 38.955 C 292.608 38.955 293.439 38.811 294.148 38.523 C 294.879 38.235 295.543 37.804 296.141 37.229 L 298.899 40.216 C 298.08 41.145 297.05 41.864 295.809 42.373 C 294.569 42.86 293.14 43.104 291.523 43.104 Z M 303.979 42.838 L 303.979 19.604 L 309.362 19.604 L 309.362 38.457 L 321.025 38.457 L 321.025 42.838 Z M 334.762 42.838 L 334.762 39.353 L 334.43 38.59 L 334.43 32.35 C 334.43 31.243 334.087 30.38 333.4 29.761 C 332.735 29.141 331.705 28.831 330.31 28.831 C 329.349 28.833 328.395 28.99 327.485 29.296 C 326.577 29.583 325.802 29.982 325.159 30.491 L 323.299 26.873 C 324.273 26.187 325.447 25.656 326.821 25.28 C 328.185 24.905 329.593 24.715 331.007 24.716 C 333.732 24.716 335.848 25.357 337.354 26.641 C 338.86 27.924 339.614 29.926 339.614 32.648 L 339.614 42.838 Z M 329.313 43.104 C 327.917 43.104 326.721 42.871 325.724 42.407 C 324.727 41.92 323.963 41.267 323.432 40.448 C 322.9 39.63 322.634 38.711 322.634 37.694 C 322.634 36.631 322.889 35.702 323.398 34.905 C 323.93 34.109 324.761 33.489 325.89 33.047 C 327.02 32.582 328.493 32.35 330.31 32.35 L 335.061 32.35 L 335.061 35.37 L 330.875 35.37 C 329.656 35.37 328.814 35.569 328.349 35.967 C 327.906 36.366 327.685 36.864 327.685 37.461 C 327.685 38.125 327.939 38.656 328.449 39.054 C 328.981 39.431 329.701 39.619 330.609 39.619 C 331.473 39.619 332.248 39.419 332.935 39.021 C 333.621 38.601 334.12 37.992 334.43 37.195 L 335.228 39.585 C 334.851 40.736 334.164 41.61 333.167 42.208 C 332.17 42.805 330.886 43.104 329.313 43.104 Z M 354.872 43.104 C 353.297 43.104 351.947 42.772 350.818 42.108 C 349.688 41.444 348.824 40.437 348.226 39.088 C 347.628 37.716 347.329 35.99 347.329 33.91 C 347.329 31.807 347.639 30.082 348.259 28.732 C 348.902 27.382 349.788 26.375 350.916 25.711 C 352.045 25.048 353.364 24.716 354.872 24.716 C 356.555 24.716 358.063 25.092 359.392 25.844 C 360.742 26.597 361.805 27.659 362.58 29.03 C 363.379 30.402 363.776 32.029 363.776 33.91 C 363.776 35.768 363.379 37.384 362.58 38.756 C 361.805 40.128 360.742 41.201 359.392 41.975 C 358.063 42.727 356.555 43.104 354.872 43.104 Z M 344.305 42.838 L 344.305 18.21 L 349.489 18.21 L 349.489 28.599 L 349.156 33.877 L 349.256 39.187 L 349.256 42.838 Z M 353.974 38.855 C 354.837 38.855 355.601 38.656 356.268 38.258 C 356.955 37.86 357.495 37.295 357.895 36.565 C 358.316 35.813 358.526 34.928 358.526 33.91 C 358.526 32.869 358.316 31.985 357.895 31.255 C 357.495 30.524 356.955 29.96 356.268 29.562 C 355.601 29.163 354.837 28.964 353.974 28.964 C 353.112 28.964 352.337 29.163 351.649 29.562 C 350.962 29.96 350.419 30.524 350.02 31.254 C 349.622 31.985 349.422 32.87 349.422 33.909 C 349.422 34.928 349.622 35.813 350.02 36.565 C 350.419 37.295 350.962 37.86 351.649 38.258 C 352.337 38.656 353.112 38.855 353.974 38.855 Z\" fill=\"rgb(23,23,150)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.921 1.873 C 1.26 1.879 1.575 1.702 1.746 1.41 C 1.917 1.118 1.917 0.756 1.746 0.464 C 1.575 0.172 1.26 -0.005 0.922 0 C 0.41 0.009 0 0.425 0 0.937 C 0 1.448 0.41 1.865 0.921 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9xhxyn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.241 2.522 C 1.697 2.53 2.122 2.291 2.352 1.898 C 2.582 1.505 2.582 1.018 2.352 0.625 C 2.122 0.231 1.698 -0.007 1.242 0 C 0.553 0.012 0 0.573 0 1.261 C 0 1.949 0.552 2.51 1.241 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nxt4ed\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vb4v24\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cszroh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.871 6.869\" overflow=\"visible\"><path d=\"M 3.436 6.869 C 5.333 6.869 6.871 5.331 6.871 3.434 C 6.871 1.538 5.333 0 3.436 0 C 1.538 0 0 1.538 0 3.434 C 0 5.331 1.538 6.869 3.436 6.869 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y4ph8u\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.258 9.247\" overflow=\"visible\"><path d=\"M 4.629 9.247 C 7.185 9.247 9.258 7.177 9.258 4.624 C 9.258 2.07 7.185 0 4.629 0 C 2.072 0 0 2.07 0 4.624 C 0 7.177 2.072 9.247 4.629 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.871 6.869\" overflow=\"visible\"><path d=\"M 3.436 6.869 C 5.333 6.869 6.871 5.331 6.871 3.434 C 6.871 1.538 5.333 0 3.436 0 C 1.538 0 0 1.538 0 3.434 C 0 5.331 1.538 6.869 3.436 6.869 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qpvhwz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.258 9.247\" overflow=\"visible\"><path d=\"M 4.629 9.247 C 7.185 9.247 9.258 7.177 9.258 4.624 C 9.258 2.07 7.185 0 4.629 0 C 2.072 0 0 2.07 0 4.624 C 0 7.177 2.072 9.247 4.629 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.871 6.869\" overflow=\"visible\"><path d=\"M 3.436 6.869 C 5.333 6.869 6.871 5.331 6.871 3.434 C 6.871 1.538 5.333 0 3.436 0 C 1.538 0 0 1.538 0 3.434 C 0 5.331 1.538 6.869 3.436 6.869 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p7dis1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.258 9.247\" overflow=\"visible\"><path d=\"M 4.629 9.247 C 7.185 9.247 9.258 7.177 9.258 4.624 C 9.258 2.07 7.185 0 4.629 0 C 2.072 0 0 2.07 0 4.624 C 0 7.177 2.072 9.247 4.629 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mki9dv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.871 6.869\" overflow=\"visible\"><path d=\"M 3.436 6.869 C 5.333 6.869 6.871 5.331 6.871 3.434 C 6.871 1.538 5.333 0 3.436 0 C 1.538 0 0 1.538 0 3.434 C 0 5.331 1.538 6.869 3.436 6.869 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1csnagy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.258 9.247\" overflow=\"visible\"><path d=\"M 4.629 9.247 C 7.185 9.247 9.258 7.178 9.258 4.624 C 9.258 2.07 7.185 0 4.629 0 C 2.072 0 0 2.07 0 4.624 C 0 7.178 2.072 9.247 4.629 9.247 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dk8haa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-33dv8k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x240zx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17ilnzy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lxmb1b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ra2ocx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yipunn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.518 5.516\" overflow=\"visible\"><path d=\"M 2.759 5.516 C 4.283 5.516 5.518 4.281 5.518 2.758 C 5.518 1.235 4.283 0 2.759 0 C 1.235 0 0 1.235 0 2.758 C 0 4.281 1.235 5.516 2.759 5.516 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-79zhxb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.434 7.426\" overflow=\"visible\"><path d=\"M 3.717 7.426 C 5.77 7.426 7.434 5.764 7.434 3.713 C 7.434 1.662 5.77 0 3.717 0 C 1.664 0 0 1.662 0 3.713 C 0 5.764 1.664 7.426 3.717 7.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5k07u1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cujdcp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wxoa6r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9csn0e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wsmv4x\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qvfg3f\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.592 3.59\" overflow=\"visible\"><path d=\"M 1.796 3.59 C 2.788 3.59 3.592 2.787 3.592 1.795 C 3.592 0.804 2.788 0 1.796 0 C 0.804 0 0 0.804 0 1.795 C 0 2.787 0.804 3.59 1.796 3.59 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11ingyf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.839 4.834\" overflow=\"visible\"><path d=\"M 2.42 4.834 C 3.756 4.834 4.839 3.752 4.839 2.417 C 4.839 1.082 3.756 0 2.42 0 C 1.083 0 0 1.082 0 2.417 C 0 3.752 1.083 4.834 2.42 4.834 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e2ktiq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h17u2a\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5xdspe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.874 1.873\" overflow=\"visible\"><path d=\"M 0.937 1.873 C 1.454 1.873 1.874 1.454 1.874 0.937 C 1.874 0.419 1.454 0 0.937 0 C 0.42 0 0 0.419 0 0.937 C 0 1.454 0.42 1.873 0.937 1.873 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ls5ydc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.525 2.522\" overflow=\"visible\"><path d=\"M 1.262 2.522 C 1.96 2.522 2.525 1.957 2.525 1.261 C 2.525 0.565 1.96 0 1.262 0 C 0.565 0 0 0.565 0 1.261 C 0 1.957 0.565 2.522 1.262 2.522 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.892 17.849\" overflow=\"visible\"><path d=\"M 9.47 17.849 C 8.106 17.849 6.84 17.627 5.672 17.184 C 4.522 16.74 3.519 16.115 2.664 15.31 C 1.825 14.505 1.167 13.559 0.691 12.475 C 0.23 11.39 0 10.207 0 8.924 C 0 7.643 0.23 6.459 0.691 5.375 C 1.157 4.304 1.837 3.339 2.688 2.539 C 3.543 1.734 4.546 1.109 5.697 0.666 C 6.848 0.222 8.098 0 9.446 0 C 10.811 0 12.06 0.222 13.194 0.666 C 14.345 1.109 15.34 1.734 16.179 2.539 C 17.034 3.345 17.7 4.29 18.176 5.375 C 18.653 6.443 18.892 7.626 18.892 8.924 C 18.892 10.207 18.653 11.398 18.176 12.499 C 17.7 13.584 17.034 14.529 16.179 15.335 C 15.34 16.123 14.345 16.74 13.194 17.184 C 12.06 17.627 10.819 17.849 9.47 17.849 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-142obof\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25.453 24.03\" overflow=\"visible\"><path d=\"M 12.76 24.03 C 10.921 24.03 9.215 23.732 7.643 23.134 C 6.092 22.537 4.741 21.696 3.589 20.612 C 2.459 19.528 1.573 18.255 0.93 16.795 C 0.31 15.334 0 13.741 0 12.015 C 0 10.289 0.31 8.696 0.93 7.236 C 1.559 5.794 2.475 4.496 3.622 3.419 C 4.774 2.334 6.125 1.494 7.676 0.896 C 9.227 0.299 10.91 0 12.727 0 C 14.565 0 16.249 0.299 17.777 0.896 C 19.328 1.494 20.668 2.334 21.798 3.419 C 22.95 4.503 23.847 5.775 24.489 7.236 C 25.132 8.674 25.453 10.267 25.453 12.015 C 25.453 13.741 25.132 15.346 24.489 16.828 C 23.847 18.288 22.95 19.561 21.798 20.645 C 20.668 21.707 19.328 22.537 17.777 23.134 C 16.249 23.732 14.576 24.03 12.76 24.03 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.802 11.045\" overflow=\"visible\"><path d=\"M 5.401 11.045 C 6.174 11.045 6.881 10.913 7.522 10.651 C 8.169 10.394 8.757 10.008 9.248 9.516 C 9.742 9.023 10.12 8.44 10.383 7.766 C 10.662 7.092 10.802 6.344 10.802 5.522 C 10.802 4.701 10.662 3.953 10.383 3.279 C 10.12 2.605 9.742 2.022 9.248 1.529 C 8.772 1.036 8.204 0.657 7.547 0.394 C 6.889 0.132 6.174 0 5.401 0 C 4.628 0 3.913 0.131 3.256 0.394 C 2.618 0.655 2.039 1.041 1.554 1.529 C 1.06 2.022 0.674 2.605 0.395 3.279 C 0.131 3.953 0 4.701 0 5.522 C 0 6.328 0.131 7.076 0.395 7.766 C 0.674 8.44 1.052 9.023 1.529 9.516 C 2.021 10.008 2.609 10.394 3.256 10.651 C 3.913 10.913 4.628 11.045 5.401 11.045 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cw89nc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.554 14.87\" overflow=\"visible\"><path d=\"M 7.277 14.87 C 8.318 14.87 9.271 14.693 10.134 14.339 C 11.006 13.994 11.798 13.474 12.461 12.812 C 13.125 12.148 13.635 11.362 13.989 10.455 C 14.366 9.548 14.554 8.541 14.554 7.435 C 14.554 6.329 14.366 5.322 13.989 4.415 C 13.635 3.507 13.125 2.722 12.461 2.058 C 11.818 1.394 11.054 0.885 10.168 0.531 C 9.282 0.177 8.318 0 7.277 0 C 6.236 0 5.272 0.177 4.386 0.531 C 3.527 0.882 2.748 1.401 2.094 2.058 C 1.429 2.722 0.908 3.507 0.532 4.415 C 0.177 5.322 0 6.329 0 7.435 C 0 8.519 0.177 9.526 0.532 10.455 C 0.908 11.362 1.418 12.148 2.06 12.812 C 2.723 13.474 3.514 13.994 4.386 14.339 C 5.272 14.693 6.236 14.87 7.277 14.87 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.208 13.658\" overflow=\"visible\"><path d=\"M 5.598 13.658 C 4.48 13.658 3.502 13.412 2.664 12.919 C 1.825 12.425 1.167 11.678 0.691 10.675 C 0.23 9.656 0 8.374 0 6.829 C 0 5.268 0.222 3.986 0.666 2.983 C 1.11 1.98 1.751 1.233 2.589 0.74 C 3.428 0.247 4.431 0 5.598 0 C 6.848 0 7.966 0.288 8.952 0.863 C 9.956 1.422 10.745 2.211 11.32 3.23 C 11.912 4.249 12.208 5.448 12.208 6.829 C 12.208 8.226 11.912 9.434 11.32 10.453 C 10.745 11.472 9.956 12.261 8.952 12.82 C 7.966 13.379 6.848 13.658 5.598 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-24gqlu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.448 18.388\" overflow=\"visible\"><path d=\"M 7.543 18.388 C 6.037 18.388 4.718 18.056 3.589 17.392 C 2.459 16.728 1.573 15.722 0.93 14.372 C 0.31 13 0 11.274 0 9.194 C 0 7.092 0.299 5.366 0.897 4.016 C 1.495 2.666 2.359 1.66 3.489 0.996 C 4.619 0.332 5.97 0 7.543 0 C 9.226 0 10.733 0.387 12.062 1.162 C 13.413 1.914 14.477 2.976 15.252 4.348 C 16.049 5.72 16.448 7.335 16.448 9.194 C 16.448 11.075 16.049 12.701 15.252 14.073 C 14.477 15.445 13.413 16.507 12.062 17.259 C 10.733 18.012 9.226 18.388 7.543 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.847 18.047\" overflow=\"visible\"><path d=\"M 0 18.047 L 0 0 L 3.675 0 L 3.675 2.712 L 3.601 6.656 L 3.847 10.577 L 3.847 18.047 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-174yij8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.184 24.296\" overflow=\"visible\"><path d=\"M 0 24.296 L 0 0 L 4.951 0 L 4.951 3.651 L 4.851 8.962 L 5.184 14.239 L 5.184 24.296 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.758 7.347\" overflow=\"visible\"><path d=\"M 3.379 7.347 C 4.02 7.347 4.587 7.199 5.08 6.903 C 5.59 6.607 5.993 6.188 6.289 5.646 C 6.601 5.087 6.758 4.43 6.758 3.673 C 6.758 2.901 6.601 2.244 6.289 1.701 C 5.993 1.159 5.59 0.74 5.08 0.444 C 4.587 0.148 4.02 0 3.379 0 C 2.737 0 2.162 0.148 1.652 0.444 C 1.143 0.74 0.74 1.159 0.444 1.701 C 0.148 2.244 0 2.901 0 3.673 C 0 4.43 0.148 5.087 0.444 5.646 C 0.74 6.188 1.143 6.607 1.652 6.903 C 2.162 7.199 2.737 7.347 3.379 7.347 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mmp1ra\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.105 9.891\" overflow=\"visible\"><path d=\"M 4.552 9.891 C 5.416 9.891 6.18 9.692 6.845 9.294 C 7.531 8.895 8.074 8.331 8.473 7.601 C 8.894 6.848 9.105 5.964 9.105 4.946 C 9.105 3.905 8.894 3.02 8.473 2.29 C 8.074 1.56 7.531 0.996 6.845 0.598 C 6.18 0.199 5.416 0 4.552 0 C 3.688 0 2.913 0.199 2.226 0.598 C 1.539 0.996 0.997 1.56 0.598 2.29 C 0.199 3.02 0 3.906 0 4.945 C 0 5.964 0.199 6.848 0.598 7.601 C 0.997 8.331 1.539 8.895 2.226 9.294 C 2.913 9.692 3.688 9.891 4.552 9.891 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.984 13.658\" overflow=\"visible\"><path d=\"M 7.571 13.658 C 6.059 13.658 4.727 13.362 3.576 12.77 C 2.442 12.179 1.562 11.373 0.937 10.354 C 0.312 9.319 0 8.144 0 6.829 C 0 5.498 0.304 4.322 0.913 3.304 C 1.537 2.268 2.384 1.462 3.453 0.887 C 4.522 0.296 5.73 0 7.078 0 C 8.377 0 9.545 0.279 10.58 0.838 C 11.633 1.381 12.463 2.169 13.071 3.205 C 13.68 4.224 13.984 5.448 13.984 6.878 C 13.984 7.026 13.976 7.198 13.959 7.396 C 13.943 7.569 13.927 7.741 13.91 7.914 L 3.132 7.914 L 3.132 5.67 L 11.887 5.67 L 10.408 6.336 C 10.408 5.645 10.268 5.045 9.988 4.536 C 9.709 4.027 9.323 3.632 8.829 3.353 C 8.336 3.057 7.761 2.909 7.103 2.909 C 6.445 2.909 5.861 3.057 5.352 3.353 C 4.859 3.632 4.472 4.035 4.193 4.561 C 3.913 5.07 3.773 5.678 3.773 6.385 L 3.773 6.977 C 3.773 7.7 3.93 8.341 4.242 8.9 C 4.571 9.442 5.023 9.861 5.599 10.157 C 6.19 10.437 6.881 10.576 7.67 10.576 C 8.377 10.576 8.994 10.469 9.52 10.256 C 10.062 10.042 10.555 9.722 11 9.294 L 13.047 11.513 C 12.438 12.203 11.674 12.737 10.753 13.115 C 9.832 13.477 8.772 13.658 7.571 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-di6zqi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.841 18.388\" overflow=\"visible\"><path d=\"M 10.201 18.388 C 8.163 18.388 6.369 17.989 4.818 17.193 C 3.29 16.396 2.104 15.312 1.263 13.94 C 0.421 12.546 0 10.964 0 9.194 C 0 7.401 0.41 5.819 1.229 4.448 C 2.071 3.053 3.212 1.969 4.652 1.194 C 6.092 0.398 7.72 0 9.537 0 C 11.286 0 12.86 0.376 14.255 1.128 C 15.673 1.859 16.791 2.921 17.611 4.314 C 18.431 5.686 18.841 7.335 18.841 9.26 C 18.841 9.459 18.829 9.691 18.807 9.957 C 18.786 10.19 18.764 10.422 18.741 10.654 L 4.22 10.654 L 4.22 7.634 L 16.016 7.634 L 14.022 8.53 C 14.022 7.6 13.834 6.793 13.457 6.107 C 13.081 5.421 12.56 4.89 11.896 4.514 C 11.231 4.115 10.456 3.916 9.57 3.916 C 8.684 3.916 7.897 4.115 7.211 4.514 C 6.546 4.89 6.025 5.432 5.649 6.14 C 5.272 6.826 5.084 7.645 5.084 8.596 L 5.084 9.393 C 5.084 10.367 5.294 11.229 5.715 11.982 C 6.158 12.712 6.768 13.276 7.543 13.675 C 8.34 14.051 9.271 14.239 10.334 14.239 C 11.286 14.239 12.117 14.095 12.826 13.807 C 13.557 13.52 14.222 13.088 14.82 12.513 L 17.578 15.5 C 16.758 16.429 15.728 17.148 14.488 17.657 C 13.247 18.144 11.818 18.388 10.201 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.564 13.461\" overflow=\"visible\"><path d=\"M 8.065 0 C 9.117 0 10.054 0.214 10.876 0.641 C 11.715 1.052 12.372 1.693 12.849 2.564 C 13.326 3.419 13.564 4.52 13.564 5.868 L 13.564 13.461 L 9.717 13.461 L 9.717 6.46 C 9.717 5.391 9.479 4.602 9.002 4.093 C 8.541 3.583 7.884 3.328 7.029 3.328 C 6.42 3.328 5.87 3.46 5.377 3.723 C 4.9 3.969 4.522 4.355 4.242 4.882 C 3.979 5.407 3.847 6.081 3.847 6.903 L 3.847 13.461 L 0 13.461 L 0 0.197 L 3.675 0.197 L 3.675 3.871 L 2.984 2.761 C 3.461 1.874 4.143 1.192 5.031 0.715 C 5.919 0.238 6.93 0 8.065 0 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ebpakq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.275 18.123\" overflow=\"visible\"><path d=\"M 10.866 0 C 12.283 0 13.546 0.288 14.654 0.863 C 15.784 1.417 16.67 2.279 17.312 3.452 C 17.954 4.603 18.275 6.085 18.275 7.9 L 18.275 18.123 L 13.092 18.123 L 13.092 8.696 C 13.092 7.258 12.771 6.196 12.128 5.51 C 11.508 4.824 10.622 4.481 9.47 4.481 C 8.65 4.481 7.908 4.658 7.244 5.012 C 6.601 5.344 6.092 5.864 5.715 6.572 C 5.361 7.28 5.184 8.187 5.184 9.294 L 5.184 18.123 L 0 18.123 L 0 0.266 L 4.951 0.266 L 4.951 5.211 L 4.02 3.718 C 4.663 2.523 5.582 1.604 6.779 0.963 C 7.975 0.321 9.337 0 10.866 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.354 17.849\" overflow=\"visible\"><path d=\"M 7.029 17.849 C 5.648 17.849 4.324 17.668 3.058 17.307 C 1.792 16.929 0.773 16.444 0 15.852 L 1.357 12.845 C 2.096 13.37 2.968 13.806 3.971 14.151 C 4.99 14.48 6.018 14.644 7.053 14.644 C 7.843 14.644 8.476 14.57 8.953 14.422 C 9.446 14.258 9.807 14.036 10.038 13.757 C 10.264 13.488 10.387 13.147 10.383 12.795 C 10.383 12.335 10.202 11.974 9.841 11.71 C 9.479 11.431 9.002 11.209 8.41 11.045 C 7.818 10.864 7.16 10.7 6.437 10.552 C 5.714 10.383 4.998 10.186 4.291 9.96 C 3.584 9.73 2.935 9.434 2.343 9.073 C 1.754 8.714 1.256 8.225 0.888 7.643 C 0.526 7.051 0.345 6.295 0.345 5.375 C 0.345 4.388 0.609 3.493 1.135 2.687 C 1.677 1.865 2.483 1.216 3.551 0.739 C 4.637 0.246 5.993 0 7.621 0 C 8.706 0 9.775 0.131 10.827 0.394 C 11.879 0.641 12.808 1.019 13.614 1.529 L 12.381 4.561 C 11.575 4.1 10.769 3.764 9.964 3.55 C 9.158 3.32 8.369 3.205 7.596 3.205 C 6.823 3.205 6.19 3.295 5.697 3.476 C 5.204 3.657 4.851 3.895 4.637 4.191 C 4.423 4.47 4.316 4.799 4.316 5.177 C 4.316 5.621 4.497 5.983 4.859 6.262 C 5.22 6.525 5.697 6.739 6.289 6.903 C 6.881 7.067 7.53 7.232 8.237 7.396 C 8.961 7.56 9.676 7.749 10.383 7.963 C 11.107 8.177 11.764 8.464 12.356 8.826 C 12.941 9.181 13.432 9.671 13.787 10.256 C 14.165 10.847 14.354 11.595 14.354 12.499 C 14.354 13.469 14.082 14.357 13.54 15.162 C 12.997 15.967 12.184 16.616 11.098 17.11 C 10.029 17.603 8.673 17.849 7.029 17.849 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wikdnt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.339 24.03\" overflow=\"visible\"><path d=\"M 9.47 24.03 C 7.609 24.03 5.826 23.787 4.12 23.3 C 2.415 22.791 1.041 22.139 0 21.342 L 1.828 17.293 C 2.824 18.001 3.998 18.587 5.35 19.052 C 6.723 19.494 8.108 19.716 9.503 19.716 C 10.567 19.716 11.42 19.616 12.062 19.417 C 12.727 19.195 13.214 18.897 13.524 18.521 C 13.829 18.159 13.994 17.699 13.989 17.226 C 13.989 16.607 13.745 16.12 13.258 15.766 C 12.771 15.39 12.128 15.091 11.331 14.869 C 10.534 14.626 9.647 14.405 8.673 14.206 C 7.699 13.979 6.734 13.713 5.782 13.409 C 4.829 13.1 3.954 12.701 3.157 12.214 C 2.364 11.732 1.693 11.073 1.196 10.289 C 0.709 9.493 0.465 8.475 0.465 7.236 C 0.465 5.908 0.82 4.702 1.529 3.618 C 2.26 2.512 3.345 1.637 4.785 0.996 C 6.247 0.332 8.075 0 10.268 0 C 11.73 0 13.17 0.177 14.587 0.531 C 16.005 0.863 17.257 1.372 18.342 2.058 L 16.681 6.14 C 15.595 5.52 14.51 5.067 13.425 4.78 C 12.339 4.47 11.276 4.315 10.234 4.315 C 9.193 4.315 8.34 4.437 7.676 4.68 C 7.011 4.923 6.535 5.244 6.247 5.642 C 5.959 6.019 5.815 6.461 5.815 6.97 C 5.815 7.568 6.059 8.054 6.546 8.431 C 7.033 8.784 7.676 9.072 8.473 9.293 C 9.271 9.515 10.146 9.736 11.098 9.957 C 12.073 10.179 13.037 10.433 13.989 10.721 C 14.964 11.008 15.85 11.396 16.648 11.882 C 17.436 12.36 18.097 13.02 18.575 13.807 C 19.084 14.604 19.339 15.611 19.339 16.828 C 19.339 18.133 18.974 19.328 18.242 20.413 C 17.511 21.497 16.415 22.371 14.953 23.035 C 13.513 23.698 11.686 24.03 9.47 24.03 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.343 13.658\" overflow=\"visible\"><path d=\"M 7.399 13.658 C 5.968 13.658 4.694 13.37 3.576 12.795 C 2.458 12.203 1.579 11.39 0.937 10.354 C 0.313 9.319 0 8.144 0 6.829 C 0 5.498 0.313 4.322 0.937 3.304 C 1.579 2.268 2.458 1.462 3.576 0.887 C 4.694 0.296 5.968 0 7.399 0 C 8.797 0 10.013 0.296 11.049 0.887 C 12.085 1.463 12.849 2.293 13.343 3.377 L 10.358 4.98 C 10.013 4.355 9.577 3.895 9.051 3.599 C 8.542 3.303 7.983 3.155 7.374 3.155 C 6.717 3.155 6.125 3.304 5.599 3.599 C 5.073 3.895 4.653 4.314 4.341 4.857 C 4.045 5.399 3.897 6.056 3.897 6.829 C 3.897 7.601 4.045 8.259 4.341 8.801 C 4.653 9.344 5.073 9.763 5.599 10.059 C 6.125 10.354 6.717 10.502 7.374 10.502 C 7.983 10.502 8.542 10.362 9.051 10.083 C 9.577 9.787 10.013 9.319 10.358 8.678 L 13.343 10.305 C 12.849 11.373 12.085 12.203 11.049 12.795 C 10.013 13.37 8.797 13.658 7.399 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gjadt8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.977 18.388\" overflow=\"visible\"><path d=\"M 9.969 18.388 C 8.041 18.388 6.325 18 4.818 17.226 C 3.312 16.429 2.127 15.334 1.263 13.94 C 0.421 12.546 0 10.964 0 9.194 C 0 7.401 0.421 5.819 1.263 4.448 C 2.127 3.053 3.312 1.969 4.818 1.194 C 6.325 0.398 8.041 0 9.969 0 C 11.852 0 13.491 0.398 14.886 1.194 C 16.282 1.969 17.312 3.087 17.977 4.547 L 13.956 6.704 C 13.491 5.864 12.904 5.244 12.195 4.846 C 11.508 4.447 10.755 4.248 9.935 4.248 C 9.05 4.248 8.252 4.448 7.543 4.846 C 6.834 5.244 6.269 5.808 5.849 6.538 C 5.449 7.269 5.25 8.154 5.25 9.194 C 5.25 10.234 5.449 11.119 5.849 11.849 C 6.269 12.579 6.834 13.144 7.543 13.542 C 8.252 13.94 9.05 14.139 9.935 14.139 C 10.755 14.139 11.508 13.951 12.195 13.575 C 12.904 13.177 13.491 12.546 13.956 11.683 L 17.977 13.874 C 17.312 15.312 16.282 16.429 14.886 17.226 C 13.491 18 11.852 18.388 9.969 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.847 13.264\" overflow=\"visible\"><path d=\"M 0 13.264 L 0 0 L 3.847 0 L 3.847 13.264 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mmkgp1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.184 17.857\" overflow=\"visible\"><path d=\"M 0 17.857 L 0 0 L 5.184 0 L 5.184 17.857 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.785 4.29\" overflow=\"visible\"><path d=\"M 2.392 4.29 C 1.685 4.29 1.11 4.084 0.666 3.673 C 0.222 3.263 0 2.753 0 2.145 C 0 1.537 0.222 1.027 0.666 0.616 C 1.11 0.205 1.685 0 2.392 0 C 3.099 0 3.675 0.197 4.119 0.592 C 4.563 0.97 4.785 1.463 4.785 2.071 C 4.785 2.712 4.563 3.246 4.119 3.673 C 3.691 4.084 3.116 4.29 2.392 4.29 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fs8rn0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.446 5.775\" overflow=\"visible\"><path d=\"M 3.223 5.775 C 2.271 5.775 1.495 5.499 0.897 4.945 C 0.299 4.393 0 3.706 0 2.888 C 0 2.069 0.299 1.383 0.897 0.83 C 1.495 0.276 2.271 0 3.223 0 C 4.176 0 4.951 0.266 5.549 0.797 C 6.147 1.306 6.446 1.969 6.446 2.788 C 6.446 3.651 6.147 4.37 5.549 4.946 C 4.973 5.499 4.198 5.775 3.223 5.775 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.984 13.658\" overflow=\"visible\"><path d=\"M 7.571 13.658 C 6.059 13.658 4.727 13.362 3.576 12.77 C 2.442 12.179 1.562 11.373 0.937 10.354 C 0.312 9.319 0 8.144 0 6.829 C 0 5.498 0.304 4.322 0.913 3.304 C 1.537 2.268 2.384 1.462 3.453 0.887 C 4.522 0.296 5.73 0 7.078 0 C 8.377 0 9.545 0.279 10.58 0.838 C 11.633 1.381 12.463 2.169 13.071 3.205 C 13.68 4.224 13.984 5.448 13.984 6.878 C 13.984 7.026 13.976 7.198 13.959 7.396 C 13.943 7.577 13.926 7.749 13.91 7.914 L 3.132 7.914 L 3.132 5.67 L 11.887 5.67 L 10.408 6.336 C 10.408 5.645 10.268 5.045 9.988 4.536 C 9.709 4.027 9.323 3.632 8.829 3.353 C 8.336 3.057 7.761 2.909 7.103 2.909 C 6.445 2.909 5.861 3.057 5.352 3.353 C 4.859 3.632 4.472 4.035 4.193 4.561 C 3.913 5.07 3.773 5.678 3.773 6.385 L 3.773 6.977 C 3.773 7.7 3.93 8.341 4.242 8.9 C 4.571 9.442 5.023 9.861 5.599 10.157 C 6.19 10.437 6.881 10.576 7.67 10.576 C 8.377 10.576 8.994 10.469 9.52 10.256 C 10.063 10.042 10.556 9.722 11 9.294 L 13.047 11.513 C 12.438 12.203 11.674 12.737 10.753 13.115 C 9.832 13.477 8.772 13.658 7.571 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s6ow0q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.841 18.388\" overflow=\"visible\"><path d=\"M 10.201 18.388 C 8.163 18.388 6.369 17.989 4.818 17.193 C 3.29 16.396 2.104 15.312 1.263 13.94 C 0.421 12.546 0 10.964 0 9.194 C 0 7.401 0.41 5.819 1.229 4.448 C 2.071 3.053 3.212 1.969 4.652 1.194 C 6.092 0.398 7.72 0 9.537 0 C 11.287 0 12.86 0.376 14.255 1.128 C 15.673 1.859 16.791 2.921 17.611 4.314 C 18.431 5.686 18.841 7.335 18.841 9.26 C 18.841 9.459 18.829 9.691 18.807 9.957 C 18.785 10.201 18.763 10.433 18.741 10.654 L 4.22 10.654 L 4.22 7.634 L 16.016 7.634 L 14.022 8.53 C 14.022 7.6 13.834 6.793 13.457 6.107 C 13.081 5.421 12.56 4.89 11.896 4.514 C 11.231 4.115 10.456 3.916 9.57 3.916 C 8.684 3.916 7.897 4.115 7.211 4.514 C 6.546 4.89 6.026 5.432 5.649 6.14 C 5.272 6.826 5.084 7.645 5.084 8.596 L 5.084 9.393 C 5.084 10.367 5.294 11.229 5.715 11.982 C 6.159 12.712 6.768 13.276 7.543 13.675 C 8.34 14.051 9.271 14.239 10.334 14.239 C 11.287 14.239 12.117 14.095 12.826 13.807 C 13.557 13.52 14.222 13.088 14.82 12.513 L 17.578 15.5 C 16.758 16.429 15.728 17.148 14.488 17.657 C 13.247 18.144 11.818 18.388 10.201 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.565 13.461\" overflow=\"visible\"><path d=\"M 8.065 0 C 9.117 0 10.054 0.214 10.876 0.641 C 11.715 1.052 12.372 1.693 12.849 2.564 C 13.326 3.419 13.565 4.52 13.565 5.868 L 13.565 13.461 L 9.717 13.461 L 9.717 6.46 C 9.717 5.391 9.479 4.602 9.002 4.093 C 8.541 3.583 7.884 3.328 7.029 3.328 C 6.42 3.328 5.87 3.46 5.377 3.723 C 4.9 3.969 4.522 4.355 4.242 4.882 C 3.979 5.407 3.847 6.081 3.847 6.903 L 3.847 13.461 L 0 13.461 L 0 0.197 L 3.675 0.197 L 3.675 3.871 L 2.984 2.761 C 3.461 1.874 4.143 1.192 5.031 0.715 C 5.919 0.238 6.93 0 8.065 0 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9bz2pa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.276 18.123\" overflow=\"visible\"><path d=\"M 10.866 0 C 12.283 0 13.546 0.288 14.654 0.863 C 15.784 1.417 16.67 2.279 17.312 3.452 C 17.955 4.603 18.276 6.085 18.276 7.9 L 18.276 18.123 L 13.092 18.123 L 13.092 8.696 C 13.092 7.258 12.771 6.196 12.128 5.51 C 11.508 4.824 10.622 4.481 9.47 4.481 C 8.65 4.481 7.908 4.658 7.244 5.012 C 6.601 5.344 6.092 5.864 5.715 6.572 C 5.361 7.28 5.184 8.187 5.184 9.294 L 5.184 18.123 L 0 18.123 L 0 0.266 L 4.951 0.266 L 4.951 5.211 L 4.02 3.718 C 4.663 2.523 5.582 1.604 6.779 0.963 C 7.975 0.321 9.337 0 10.866 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.342 13.658\" overflow=\"visible\"><path d=\"M 7.399 13.658 C 5.968 13.658 4.694 13.37 3.576 12.795 C 2.458 12.203 1.578 11.39 0.937 10.354 C 0.312 9.319 0 8.144 0 6.829 C 0 5.498 0.312 4.322 0.937 3.304 C 1.578 2.268 2.458 1.462 3.576 0.887 C 4.694 0.296 5.968 0 7.399 0 C 8.796 0 10.013 0.296 11.049 0.887 C 12.085 1.463 12.849 2.293 13.342 3.377 L 10.358 4.98 C 10.013 4.355 9.577 3.895 9.051 3.599 C 8.541 3.303 7.982 3.155 7.374 3.155 C 6.716 3.155 6.125 3.304 5.598 3.599 C 5.072 3.895 4.653 4.314 4.341 4.857 C 4.045 5.399 3.897 6.056 3.897 6.829 C 3.897 7.601 4.045 8.259 4.341 8.801 C 4.653 9.344 5.072 9.763 5.598 10.059 C 6.125 10.354 6.716 10.502 7.374 10.502 C 7.982 10.502 8.541 10.362 9.051 10.083 C 9.577 9.787 10.013 9.319 10.358 8.678 L 13.342 10.305 C 12.849 11.373 12.085 12.203 11.049 12.795 C 10.013 13.37 8.796 13.658 7.399 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1om77jf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.976 18.388\" overflow=\"visible\"><path d=\"M 9.968 18.388 C 8.041 18.388 6.324 18 4.818 17.226 C 3.312 16.429 2.126 15.334 1.262 13.94 C 0.421 12.546 0 10.964 0 9.194 C 0 7.401 0.421 5.819 1.262 4.448 C 2.126 3.053 3.312 1.969 4.818 1.194 C 6.324 0.398 8.041 0 9.968 0 C 11.851 0 13.49 0.398 14.886 1.194 C 16.282 1.969 17.312 3.087 17.976 4.547 L 13.956 6.704 C 13.49 5.864 12.903 5.244 12.195 4.846 C 11.508 4.447 10.755 4.248 9.935 4.248 C 9.049 4.248 8.252 4.448 7.543 4.846 C 6.834 5.244 6.269 5.808 5.848 6.538 C 5.449 7.269 5.25 8.154 5.25 9.194 C 5.25 10.234 5.449 11.119 5.848 11.849 C 6.269 12.579 6.834 13.144 7.543 13.542 C 8.252 13.94 9.049 14.139 9.935 14.139 C 10.755 14.139 11.508 13.951 12.195 13.575 C 12.903 13.177 13.49 12.546 13.956 11.683 L 17.976 13.874 C 17.312 15.312 16.282 16.429 14.886 17.226 C 13.49 18 11.851 18.388 9.968 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.984 13.658\" overflow=\"visible\"><path d=\"M 7.571 13.658 C 6.059 13.658 4.727 13.362 3.576 12.77 C 2.442 12.179 1.562 11.373 0.937 10.354 C 0.313 9.319 0 8.144 0 6.829 C 0 5.498 0.304 4.322 0.913 3.304 C 1.537 2.268 2.384 1.462 3.453 0.887 C 4.522 0.296 5.73 0 7.078 0 C 8.377 0 9.545 0.279 10.58 0.838 C 11.633 1.381 12.463 2.169 13.071 3.205 C 13.68 4.224 13.984 5.448 13.984 6.878 C 13.984 7.026 13.976 7.198 13.959 7.396 C 13.944 7.569 13.927 7.741 13.91 7.914 L 3.132 7.914 L 3.132 5.67 L 11.888 5.67 L 10.408 6.336 C 10.408 5.645 10.268 5.045 9.989 4.536 C 9.709 4.027 9.323 3.632 8.829 3.353 C 8.336 3.057 7.761 2.909 7.103 2.909 C 6.445 2.909 5.862 3.057 5.352 3.353 C 4.859 3.632 4.472 4.035 4.193 4.561 C 3.913 5.07 3.773 5.678 3.773 6.385 L 3.773 6.977 C 3.773 7.7 3.93 8.341 4.242 8.9 C 4.571 9.442 5.023 9.861 5.599 10.157 C 6.19 10.437 6.881 10.576 7.67 10.576 C 8.377 10.576 8.994 10.469 9.52 10.256 C 10.063 10.042 10.556 9.722 11 9.294 L 13.047 11.513 C 12.438 12.203 11.674 12.737 10.753 13.115 C 9.832 13.477 8.772 13.658 7.571 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1swz758\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.841 18.388\" overflow=\"visible\"><path d=\"M 10.201 18.388 C 8.163 18.388 6.369 17.989 4.818 17.193 C 3.29 16.396 2.105 15.312 1.263 13.94 C 0.421 12.546 0 10.964 0 9.194 C 0 7.401 0.41 5.819 1.229 4.448 C 2.071 3.053 3.212 1.969 4.652 1.194 C 6.092 0.398 7.72 0 9.537 0 C 11.287 0 12.86 0.376 14.255 1.128 C 15.673 1.859 16.792 2.921 17.611 4.314 C 18.431 5.686 18.841 7.335 18.841 9.26 C 18.841 9.459 18.829 9.691 18.807 9.957 C 18.786 10.19 18.764 10.422 18.741 10.654 L 4.22 10.654 L 4.22 7.634 L 16.016 7.634 L 14.022 8.53 C 14.022 7.6 13.834 6.793 13.458 6.107 C 13.081 5.421 12.56 4.89 11.896 4.514 C 11.231 4.115 10.456 3.916 9.57 3.916 C 8.684 3.916 7.898 4.115 7.211 4.514 C 6.546 4.89 6.026 5.432 5.649 6.14 C 5.272 6.826 5.084 7.645 5.084 8.596 L 5.084 9.393 C 5.084 10.367 5.294 11.229 5.715 11.982 C 6.159 12.712 6.768 13.276 7.543 13.675 C 8.34 14.051 9.271 14.239 10.334 14.239 C 11.287 14.239 12.118 14.095 12.826 13.807 C 13.557 13.52 14.222 13.088 14.82 12.513 L 17.578 15.5 C 16.758 16.429 15.728 17.148 14.488 17.657 C 13.247 18.144 11.818 18.388 10.201 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.652 17.258\" overflow=\"visible\"><path d=\"M 0 17.258 L 0 0 L 3.995 0 L 3.995 14.003 L 12.652 14.003 L 12.652 17.258 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v4fjx2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.046 23.234\" overflow=\"visible\"><path d=\"M 0 23.234 L 0 0 L 5.383 0 L 5.383 18.853 L 17.046 18.853 L 17.046 23.234 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.109 13.461\" overflow=\"visible\"><path d=\"M 8.508 13.461 L 8.508 10.872 L 8.262 10.305 L 8.262 5.67 C 8.262 4.848 8.007 4.207 7.497 3.747 C 7.004 3.287 6.24 3.057 5.204 3.057 C 4.491 3.058 3.783 3.174 3.107 3.402 C 2.433 3.615 1.858 3.912 1.381 4.289 L 0 1.602 C 0.723 1.093 1.595 0.698 2.614 0.419 C 3.627 0.14 4.672 0 5.722 0 C 7.744 0 9.314 0.476 10.432 1.43 C 11.55 2.383 12.109 3.87 12.109 5.892 L 12.109 13.461 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1np805k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.315 18.122\" overflow=\"visible\"><path d=\"M 11.464 18.122 L 11.464 14.637 L 11.131 13.874 L 11.131 7.634 C 11.131 6.528 10.788 5.664 10.101 5.045 C 9.437 4.425 8.407 4.115 7.011 4.115 C 6.051 4.117 5.097 4.274 4.187 4.58 C 3.278 4.868 2.503 5.266 1.861 5.775 L 0 2.157 C 0.975 1.471 2.149 0.94 3.522 0.564 C 4.886 0.189 6.294 -0.001 7.709 0 C 10.434 0 12.549 0.641 14.055 1.925 C 15.562 3.208 16.315 5.21 16.315 7.932 L 16.315 18.122 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.347 7.988\" overflow=\"visible\"><path d=\"M 4.957 7.988 C 3.922 7.988 3.034 7.815 2.294 7.47 C 1.554 7.108 0.987 6.624 0.592 6.015 C 0.197 5.407 0 4.725 0 3.969 C 0 3.18 0.189 2.49 0.567 1.898 C 0.962 1.307 1.579 0.846 2.417 0.518 C 3.256 0.173 4.349 0 5.697 0 L 9.224 0 L 9.224 2.244 L 6.116 2.244 C 5.212 2.244 4.587 2.391 4.242 2.687 C 3.913 2.983 3.749 3.353 3.749 3.797 C 3.749 4.29 3.938 4.684 4.316 4.98 C 4.711 5.26 5.245 5.399 5.919 5.399 C 6.56 5.399 7.136 5.251 7.646 4.955 C 8.155 4.643 8.525 4.191 8.755 3.599 L 9.347 5.375 C 9.068 6.229 8.558 6.878 7.818 7.322 C 7.078 7.766 6.125 7.988 4.957 7.988 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6yakj4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.594 10.754\" overflow=\"visible\"><path d=\"M 6.679 10.754 C 5.284 10.754 4.087 10.522 3.09 10.057 C 2.094 9.57 1.329 8.917 0.798 8.099 C 0.266 7.28 0 6.362 0 5.344 C 0 4.282 0.255 3.352 0.764 2.556 C 1.296 1.759 2.127 1.139 3.256 0.697 C 4.386 0.232 5.859 0 7.676 0 L 12.428 0 L 12.428 3.02 L 8.241 3.02 C 7.022 3.02 6.181 3.219 5.715 3.618 C 5.272 4.016 5.051 4.514 5.051 5.111 C 5.051 5.775 5.306 6.306 5.815 6.705 C 6.347 7.081 7.067 7.269 7.975 7.269 C 8.839 7.269 9.614 7.07 10.301 6.671 C 10.988 6.251 11.486 5.643 11.796 4.846 L 12.594 7.236 C 12.217 8.386 11.531 9.26 10.534 9.858 C 9.537 10.455 8.252 10.754 6.679 10.754 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.207 13.658\" overflow=\"visible\"><path d=\"M 5.599 13.658 C 4.43 13.658 3.428 13.412 2.59 12.919 C 1.751 12.425 1.11 11.678 0.666 10.675 C 0.222 9.656 0 8.374 0 6.829 C 0 5.268 0.23 3.986 0.691 2.983 C 1.167 1.98 1.825 1.233 2.663 0.74 C 3.501 0.247 4.479 0 5.599 0 C 6.848 0 7.967 0.279 8.953 0.838 C 9.956 1.397 10.744 2.186 11.319 3.205 C 11.913 4.224 12.207 5.432 12.207 6.829 C 12.207 8.21 11.913 9.409 11.319 10.429 C 10.744 11.448 9.956 12.245 8.953 12.82 C 7.967 13.379 6.848 13.658 5.599 13.658 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5ba2g8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.447 18.388\" overflow=\"visible\"><path d=\"M 7.543 18.388 C 5.968 18.388 4.618 18.056 3.489 17.392 C 2.359 16.728 1.495 15.722 0.897 14.372 C 0.299 13 0 11.274 0 9.194 C 0 7.092 0.31 5.366 0.93 4.016 C 1.573 2.666 2.459 1.66 3.587 0.996 C 4.717 0.332 6.035 0 7.543 0 C 9.226 0 10.734 0.376 12.063 1.129 C 13.413 1.881 14.476 2.943 15.251 4.315 C 16.05 5.687 16.447 7.313 16.447 9.194 C 16.447 11.053 16.05 12.668 15.251 14.04 C 14.476 15.412 13.413 16.485 12.063 17.259 C 10.734 18.012 9.226 18.388 7.543 18.388 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.847 18.293\" overflow=\"visible\"><path d=\"M 0 18.293 L 0 0 L 3.847 0 L 3.847 7.717 L 3.601 11.637 L 3.675 15.581 L 3.675 18.293 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x58o8r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.184 24.628\" overflow=\"visible\"><path d=\"M 0 24.628 L 0 0 L 5.184 0 L 5.184 10.389 L 4.851 15.666 L 4.951 20.977 L 4.951 24.628 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.757 7.347\" overflow=\"visible\"><path d=\"M 3.379 7.347 C 4.019 7.347 4.586 7.199 5.081 6.903 C 5.591 6.607 5.992 6.188 6.289 5.646 C 6.601 5.087 6.757 4.43 6.757 3.673 C 6.757 2.901 6.601 2.244 6.289 1.701 C 5.992 1.159 5.591 0.74 5.081 0.444 C 4.586 0.148 4.019 0 3.379 0 C 2.738 0 2.163 0.148 1.653 0.444 C 1.143 0.74 0.74 1.159 0.444 1.701 C 0.148 2.244 0 2.901 0 3.673 C 0 4.43 0.148 5.087 0.444 5.646 C 0.74 6.188 1.143 6.607 1.653 6.903 C 2.163 7.199 2.738 7.347 3.379 7.347 Z\" fill=\"transparent\"></path></svg>'}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fke4u2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.104 9.891\" overflow=\"visible\"><path d=\"M 4.552 9.891 C 5.415 9.891 6.179 9.692 6.846 9.294 C 7.533 8.895 8.073 8.331 8.473 7.601 C 8.893 6.848 9.104 5.964 9.104 4.946 C 9.104 3.905 8.893 3.02 8.473 2.29 C 8.073 1.56 7.533 0.996 6.846 0.598 C 6.179 0.199 5.415 0 4.552 0 C 3.689 0 2.914 0.199 2.227 0.598 C 1.54 0.996 0.997 1.56 0.598 2.29 C 0.2 3.02 0 3.906 0 4.945 C 0 5.964 0.2 6.848 0.598 7.601 C 0.997 8.331 1.54 8.895 2.227 9.294 C 2.914 9.692 3.689 9.891 4.552 9.891 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})})]})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i1vhdr\",\"data-framer-name\":\"Bubble\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2080.7+-760),pixelHeight:2076,pixelWidth:1909,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 405px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"}},TSKcH6woy:{__framer__speed:85,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2352.4+-460),pixelHeight:2076,pixelWidth:1909,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 405px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:75,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2750+450-1449.02),pixelHeight:2076,pixelWidth:1909,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 405px)`,src:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png\",srcSet:\"https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=1024 941w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png?scale-down-to=2048 1883w,https://framerusercontent.com/images/cxg4FiQF4vUui0yjVKsCQIEo6q4.png 1909w\"},className:\"framer-5uk6w3\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7gdn9\",\"data-framer-name\":\"RR\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xy7uf8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gekboh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-193cyt2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vc4dSG4lC\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FileText\",id:\"vc4dSG4lC\",layoutId:\"vc4dSG4lC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"Marbles: A new research output\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"Marbles: A new research output\"})}),className:\"framer-18ss7d6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgy5da\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Marbles provide a standardized format to share currently unpublishable experiments in the shape of short peer reviewed reports.\"})}),fonts:[\"FS;Work Sans-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\"},children:\"Marbles provide a standardized format to share currently unpublishable experiments in the shape of short peer reviewed reports.\"})}),className:\"framer-8zwvgu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdy4ic\",\"data-framer-name\":\"RR Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15qs7vq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oFGy7oiZH\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"oFGy7oiZH\",isMixedBorderRadius:false,isRed:false,layoutId:\"oFGy7oiZH\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://youtu.be/vteh-1ITeXs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xyap02\",\"data-framer-name\":\"CTAs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PArJGzz5z\"},implicitPathVariables:undefined},{href:{webPageId:\"PArJGzz5z\"},implicitPathVariables:undefined},{href:{webPageId:\"PArJGzz5z\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+2580.7+40+0+0+628+0+0},TSKcH6woy:{y:(componentViewport?.y||0)+0+2752.4+20+0+0+595.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"275px\",y:(componentViewport?.y||0)+0+3200+80+0+0+668+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-65qjqp-container\",nodeId:\"MXbqLLZ0p\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks2[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"MXbqLLZ0p\",layoutId:\"MXbqLLZ0p\",MQmTaNBq7:\"Learn More\",P9iJ84I_E:resolvedLinks2[0],style:{width:\"100%\"},variant:\"arpQf7rbl\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tpm4kx\",\"data-framer-name\":\"How it works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xetw5s\",\"data-framer-name\":\"How\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mb34az\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m9e4mw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C6Q8Ry7HT\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gear\",id:\"C6Q8Ry7HT\",layoutId:\"C6Q8Ry7HT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TSKcH6woy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81))\"},children:\"How it works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3ghq6\",\"data-styles-preset\":\"wQDKLEqdU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120))\"},children:\"How it works\"})}),className:\"framer-1x1u9i8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mfdean\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpcigv\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d8k8o\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4pvwz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wSlvShhsa\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleRight\",id:\"wSlvShhsa\",layoutId:\"wSlvShhsa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Submit\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Follow our guidelines and submit your Marble in a streamlined process to minimize your workload: just your data and a clear description.\"})]})},TSKcH6woy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Submit\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Follow our guidelines and submit your Marble in a streamlined process to minimize your workload: just your data and a clear description.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Submit\"}),/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Follow our guidelines and submit your Marble in a streamlined process to minimize your workload: just your data and a clear description.\"})]}),className:\"framer-hpv845\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ecvi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bpbmb9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cVJOHufH6\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"cVJOHufH6\",layoutId:\"cVJOHufH6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Review\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Each Marble will be reviewed by at least three reviewers. Sign up as a reviewer and get discounted reporting fees.\"})]})},TSKcH6woy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Review\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Each Marble will be reviewed by at least three reviewers. Sign up as a reviewer and get discounted reporting fees.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Review\"}),/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Each Marble will be reviewed by at least three reviewers. Sign up as a reviewer and get discounted reporting fees.\"})]}),className:\"framer-vyjyzj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u377v9\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rym8fs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BqZ91NBUQ\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChartBar\",id:\"BqZ91NBUQ\",layoutId:\"BqZ91NBUQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Report\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"After your Marble is approved, pay the reporting fees and your findings will be shared in Open Access, along with its reviews.\"})]})},TSKcH6woy:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Report\"}),/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1z133k0\",\"data-styles-preset\":\"tRR1463GM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"After your Marble is approved, pay the reporting fees and your findings will be shared in Open Access, along with its reviews.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1b4e2xp\",\"data-styles-preset\":\"dUZg_UVXa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45742e46-2b91-4fba-af79-a4cd5ba4b60a, rgb(255, 255, 255))\"},children:\"Report\"}),/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-blmnkz\",\"data-styles-preset\":\"w7dbaqUIB\",style:{\"--framer-text-alignment\":\"center\"},children:\"After your Marble is approved, pay the reporting fees and your findings will be shared in Open Access, along with its reviews.\"})]}),className:\"framer-pko8ba\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a98qi7\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined},{href:{webPageId:\"Lqvrl4Fnn\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+3378.7+40+642.5+40},TSKcH6woy:{y:(componentViewport?.y||0)+0+3457.8+0+920.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"275px\",y:(componentViewport?.y||0)+0+4078+40+734.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13aniqj-container\",nodeId:\"ieAqX5A4o\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks3[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"ieAqX5A4o\",layoutId:\"ieAqX5A4o\",MQmTaNBq7:\"Submit a Marble\",P9iJ84I_E:resolvedLinks3[0],style:{width:\"100%\"},variant:\"obusgfYK0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B7qTBi0uP\"},implicitPathVariables:undefined},{href:{webPageId:\"B7qTBi0uP\"},implicitPathVariables:undefined},{href:{webPageId:\"B7qTBi0uP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+3378.7+40+642.5+40},TSKcH6woy:{y:(componentViewport?.y||0)+0+3457.8+0+920.8+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"275px\",y:(componentViewport?.y||0)+0+4078+40+734.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3txd7q-container\",nodeId:\"Kxnn8_R4j\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{P9iJ84I_E:resolvedLinks4[1]},TSKcH6woy:{P9iJ84I_E:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(CTA01Large,{height:\"100%\",id:\"Kxnn8_R4j\",layoutId:\"Kxnn8_R4j\",MQmTaNBq7:\"See Pricing\",P9iJ84I_E:resolvedLinks4[0],style:{width:\"100%\"},variant:\"arpQf7rbl\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{y:(componentViewport?.y||0)+0+4231.2},TSKcH6woy:{y:(componentViewport?.y||0)+0+4548.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:549,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4982.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bnjw0d-container\",nodeId:\"cTtEFIh4E\",scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{variant:\"XVHkS53zb\"},TSKcH6woy:{variant:\"rmqADdS9b\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cTtEFIh4E\",layoutId:\"cTtEFIh4E\",style:{width:\"100%\"},variant:\"ZakCo4neg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u1o43t-container\",layoutScroll:true,nodeId:\"u7vxrZp4q\",rendersWithMotion:true,scopeId:\"LRnb1ktvN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b_1YIMwOL:{variant:\"s_UFZVvYl\"},TSKcH6woy:{variant:\"e5aYPXAus\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"u7vxrZp4q\",layoutId:\"u7vxrZp4q\",style:{height:\"100%\",width:\"100%\"},variant:\"UgO6b0QaI\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aUoAP.framer-1u40m72, .framer-aUoAP .framer-1u40m72 { display: block; }\",\".framer-aUoAP.framer-z8d4lj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-aUoAP .framer-xclo99 { --border-bottom-width: 1px; --border-color: rgba(38, 0, 81, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 40px 40px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-7t9d0j { align-content: center; align-items: center; background: linear-gradient(173deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 11.475154842342342%, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212)) 87.41103603603604%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 500px; justify-content: center; left: 40px; padding: 100px; position: absolute; right: 40px; top: 120px; z-index: 1; }\",\".framer-aUoAP .framer-1hf36l9 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 500px; justify-content: center; max-width: 1600px; overflow: auto; padding: 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-cqmft { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aUoAP .framer-1qkdvo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 920px; }\",\".framer-aUoAP .framer-bkhffv-container, .framer-aUoAP .framer-14z3co1-container { flex: none; height: auto; position: relative; width: 30%; }\",\".framer-aUoAP .framer-4ouspw { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 40px; position: relative; width: 1120px; z-index: 1; }\",\".framer-aUoAP .framer-1j0goc1, .framer-aUoAP .framer-10mwrnn, .framer-aUoAP .framer-1xh8f1y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-8wygu3, .framer-aUoAP .framer-1xijzky, .framer-aUoAP .framer-jqpf3n, .framer-aUoAP .framer-rp60cm, .framer-aUoAP .framer-18ss7d6, .framer-aUoAP .framer-1x1u9i8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 850px; word-break: break-word; word-wrap: break-word; }\",\".framer-aUoAP .framer-1ppbf6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 80px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-1t9bphb { 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: 20px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-1e42h0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-1sqwyer { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-122la61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 40px 10px 40px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-afizuv-container, .framer-aUoAP .framer-193cyt2-container, .framer-aUoAP .framer-m9e4mw-container, .framer-aUoAP .framer-l4pvwz-container, .framer-aUoAP .framer-1bpbmb9-container, .framer-aUoAP .framer-rym8fs-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-aUoAP .framer-gte7pk { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 10px 40px 10px 40px; position: relative; width: 1120px; z-index: 1; }\",\".framer-aUoAP .framer-12yena4, .framer-aUoAP .framer-1plfp35, .framer-aUoAP .framer-so5hhq { align-content: center; align-items: center; aspect-ratio: 2.9473684210526314 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 380px); justify-content: center; max-width: 1600px; overflow: auto; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-1past3x { align-content: center; align-items: center; background: linear-gradient(123deg, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, #00bfd4) 62.726984797297305%, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81)) 65.49655123873875%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aUoAP .framer-ujkm9d { aspect-ratio: 1.4473684210526316 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 380px); overflow: visible; position: relative; width: 1px; }\",\".framer-aUoAP .framer-17o4cbv, .framer-aUoAP .framer-10gg9y1, .framer-aUoAP .framer-1j3srja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 50%; }\",\".framer-aUoAP .framer-10sx9we, .framer-aUoAP .framer-j6jl66, .framer-aUoAP .framer-1nln8lq, .framer-aUoAP .framer-1sisp6s, .framer-aUoAP .framer-177s6yn, .framer-aUoAP .framer-1c3h49h, .framer-aUoAP .framer-hpv845, .framer-aUoAP .framer-vyjyzj, .framer-aUoAP .framer-pko8ba { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aUoAP .framer-wj4d86 { align-content: center; align-items: center; background: linear-gradient(123deg, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, #00bfd4) 0%, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, rgb(38, 0, 81)) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 250px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aUoAP .framer-1u09oox { aspect-ratio: 1.4 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 143px); overflow: visible; position: relative; width: 1px; }\",\".framer-aUoAP .framer-1w41zw0 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aUoAP .framer-hdmjpf, .framer-aUoAP .framer-kgnuhb { aspect-ratio: 1.4473684210526316 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 380px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aUoAP .framer-221s0d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aUoAP .framer-1jkbb8s { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-xzmgbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-aUoAP .framer-1mimwqe { height: 62px; position: relative; width: 364px; }\",\".framer-aUoAP .framer-9xhxyn { height: 3px; left: 18px; position: absolute; top: 60px; width: 3px; }\",\".framer-aUoAP .framer-nxt4ed { height: 3px; left: 0px; position: absolute; top: 19px; width: 3px; }\",\".framer-aUoAP .framer-1vb4v24 { height: 3px; left: 46px; position: absolute; top: 19px; width: 3px; }\",\".framer-aUoAP .framer-1cszroh { height: 3px; left: 18px; position: absolute; top: 13px; width: 3px; }\",\".framer-aUoAP .framer-y4ph8u { height: 9px; left: 20px; position: absolute; top: 0px; width: 10px; }\",\".framer-aUoAP .framer-qpvhwz { height: 9px; left: 0px; position: absolute; top: 33px; width: 10px; }\",\".framer-aUoAP .framer-p7dis1 { height: 9px; left: 53px; position: absolute; top: 21px; width: 10px; }\",\".framer-aUoAP .framer-1mki9dv { height: 8px; left: 45px; position: absolute; top: 52px; width: 8px; }\",\".framer-aUoAP .framer-1csnagy { height: 9px; left: 33px; position: absolute; top: 53px; width: 10px; }\",\".framer-aUoAP .framer-dk8haa { height: 8px; left: 51px; position: absolute; top: 33px; width: 8px; }\",\".framer-aUoAP .framer-33dv8k { height: 8px; left: 32px; position: absolute; top: 4px; width: 8px; }\",\".framer-aUoAP .framer-1x240zx { height: 8px; left: 52px; position: absolute; top: 11px; width: 8px; }\",\".framer-aUoAP .framer-17ilnzy { height: 8px; left: 10px; position: absolute; top: 4px; width: 8px; }\",\".framer-aUoAP .framer-lxmb1b { height: 8px; left: 23px; position: absolute; top: 52px; width: 8px; }\",\".framer-aUoAP .framer-ra2ocx { height: 8px; left: 3px; position: absolute; top: 23px; width: 8px; }\",\".framer-aUoAP .framer-yipunn { height: 5px; left: 10px; position: absolute; top: 16px; width: 5px; }\",\".framer-aUoAP .framer-79zhxb { height: 8px; left: 4px; position: absolute; top: 45px; width: 8px; }\",\".framer-aUoAP .framer-5k07u1 { height: 5px; left: 41px; position: absolute; top: 11px; width: 5px; }\",\".framer-aUoAP .framer-cujdcp { height: 5px; left: 4px; position: absolute; top: 11px; width: 5px; }\",\".framer-aUoAP .framer-1wxoa6r { height: 5px; left: 47px; position: absolute; top: 4px; width: 5px; }\",\".framer-aUoAP .framer-9csn0e { height: 5px; left: 47px; position: absolute; top: 42px; width: 5px; }\",\".framer-aUoAP .framer-1wsmv4x { height: 5px; left: 54px; position: absolute; top: 47px; width: 5px; }\",\".framer-aUoAP .framer-qvfg3f { height: 5px; left: 16px; position: absolute; top: 47px; width: 5px; }\",\".framer-aUoAP .framer-11ingyf { height: 5px; left: 10px; position: absolute; top: 54px; width: 5px; }\",\".framer-aUoAP .framer-1e2ktiq { height: 3px; left: 42px; position: absolute; top: 1px; width: 3px; }\",\".framer-aUoAP .framer-h17u2a { height: 3px; left: 14px; position: absolute; top: 42px; width: 3px; }\",\".framer-aUoAP .framer-5xdspe { height: 3px; left: 42px; position: absolute; top: 47px; width: 3px; }\",\".framer-aUoAP .framer-ls5ydc { height: 3px; left: 60px; position: absolute; top: 42px; width: 3px; }\",\".framer-aUoAP .framer-142obof { height: 24px; left: 73px; position: absolute; top: 19px; width: 26px; }\",\".framer-aUoAP .framer-1cw89nc { height: 15px; left: 78px; position: absolute; top: 24px; width: 15px; }\",\".framer-aUoAP .framer-24gqlu { height: 19px; left: 105px; position: absolute; top: 25px; width: 17px; }\",\".framer-aUoAP .framer-174yij8 { height: 25px; left: 102px; position: absolute; top: 25px; width: 5px; }\",\".framer-aUoAP .framer-1mmp1ra { height: 10px; left: 107px; position: absolute; top: 29px; width: 9px; }\",\".framer-aUoAP .framer-di6zqi { height: 19px; left: 123px; position: absolute; top: 25px; width: 19px; }\",\".framer-aUoAP .framer-ebpakq { height: 18px; left: 146px; position: absolute; top: 25px; width: 19px; }\",\".framer-aUoAP .framer-wikdnt { height: 24px; left: 167px; position: absolute; top: 19px; width: 20px; }\",\".framer-aUoAP .framer-1gjadt8 { height: 19px; left: 189px; position: absolute; top: 25px; width: 18px; }\",\".framer-aUoAP .framer-1mmkgp1 { height: 18px; left: 209px; position: absolute; top: 25px; width: 5px; }\",\".framer-aUoAP .framer-fs8rn0 { height: 6px; left: 209px; position: absolute; top: 17px; width: 7px; }\",\".framer-aUoAP .framer-s6ow0q { height: 19px; left: 218px; position: absolute; top: 25px; width: 19px; }\",\".framer-aUoAP .framer-9bz2pa { height: 18px; left: 240px; position: absolute; top: 25px; width: 19px; }\",\".framer-aUoAP .framer-1om77jf { height: 19px; left: 262px; position: absolute; top: 25px; width: 18px; }\",\".framer-aUoAP .framer-1swz758 { height: 19px; left: 282px; position: absolute; top: 25px; width: 19px; }\",\".framer-aUoAP .framer-1v4fjx2 { height: 23px; left: 304px; position: absolute; top: 20px; width: 17px; }\",\".framer-aUoAP .framer-1np805k { height: 18px; left: 324px; position: absolute; top: 25px; width: 17px; }\",\".framer-aUoAP .framer-6yakj4 { height: 11px; left: 323px; position: absolute; top: 33px; width: 13px; }\",\".framer-aUoAP .framer-5ba2g8 { height: 19px; left: 348px; position: absolute; top: 25px; width: 17px; }\",\".framer-aUoAP .framer-x58o8r { height: 25px; left: 345px; position: absolute; top: 18px; width: 5px; }\",\".framer-aUoAP .framer-1fke4u2 { height: 10px; left: 350px; position: absolute; top: 29px; width: 9px; }\",\".framer-aUoAP .framer-1i1vhdr { align-content: center; align-items: center; background: linear-gradient(173deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 33%, var(--token-06fdfe91-09c9-4eb4-b1ef-d246ff1537a8, rgb(56, 0, 120)) 74%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 450px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-5uk6w3 { aspect-ratio: 1.3333333333333333 / 1; bottom: 245px; flex: none; height: var(--framer-aspect-ratio-supported, 1204px); left: -202px; overflow: hidden; position: absolute; right: -203px; z-index: 1; }\",\".framer-aUoAP .framer-1f7gdn9 { align-content: center; align-items: center; background-color: rgba(0, 191, 212, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 40px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-1xy7uf8 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-gekboh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-kgy5da { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-8zwvgu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aUoAP .framer-1mdy4ic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-15qs7vq-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 630px); position: relative; width: 100%; }\",\".framer-aUoAP .framer-xyap02 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-65qjqp-container, .framer-aUoAP .framer-13aniqj-container, .framer-aUoAP .framer-3txd7q-container { flex: none; height: auto; position: relative; width: 275px; }\",\".framer-aUoAP .framer-tpm4kx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 30px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-1xetw5s { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: auto; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-mb34az { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-1mfdean { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-dpcigv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 493px; justify-content: center; overflow: hidden; padding: 20px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-1d8k8o, .framer-aUoAP .framer-3ecvi, .framer-aUoAP .framer-1u377v9 { --border-bottom-width: 1px; --border-color: rgba(0, 191, 212, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 0%, rgb(0, 101, 156) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aUoAP .framer-1a98qi7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-aUoAP .framer-bnjw0d-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-aUoAP .framer-u1o43t-container { flex: none; height: 90px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-aUoAP[data-border=\"true\"]::after, .framer-aUoAP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-aUoAP.framer-z8d4lj { width: 810px; } .framer-aUoAP .framer-xclo99 { align-content: flex-start; align-items: flex-start; } .framer-aUoAP .framer-7t9d0j { max-height: 500px; } .framer-aUoAP .framer-1hf36l9 { max-height: 500px; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-aUoAP .framer-4ouspw, .framer-aUoAP .framer-gte7pk { width: 100%; } .framer-aUoAP .framer-8wygu3, .framer-aUoAP .framer-1xijzky, .framer-aUoAP .framer-jqpf3n, .framer-aUoAP .framer-18ss7d6, .framer-aUoAP .framer-1x1u9i8 { max-width: unset; width: 90%; } .framer-aUoAP .framer-1ppbf6r, .framer-aUoAP .framer-1f7gdn9, .framer-aUoAP .framer-tpm4kx { align-content: flex-start; align-items: flex-start; padding: 40px; } .framer-aUoAP .framer-1t9bphb { padding: 0px; } .framer-aUoAP .framer-1e42h0q { padding: 0px 0px 60px 0px; } .framer-aUoAP .framer-12yena4, .framer-aUoAP .framer-1plfp35, .framer-aUoAP .framer-so5hhq { aspect-ratio: unset; height: min-content; } .framer-aUoAP .framer-1past3x { height: 248px; } .framer-aUoAP .framer-ujkm9d, .framer-aUoAP .framer-hdmjpf { height: var(--framer-aspect-ratio-supported, 246px); } .framer-aUoAP .framer-17o4cbv, .framer-aUoAP .framer-10gg9y1, .framer-aUoAP .framer-1j3srja { height: min-content; padding: 20px; } .framer-aUoAP .framer-10sx9we, .framer-aUoAP .framer-j6jl66, .framer-aUoAP .framer-1nln8lq, .framer-aUoAP .framer-1sisp6s, .framer-aUoAP .framer-177s6yn, .framer-aUoAP .framer-1c3h49h, .framer-aUoAP .framer-hpv845, .framer-aUoAP .framer-vyjyzj, .framer-aUoAP .framer-pko8ba { max-width: unset; } .framer-aUoAP .framer-1w41zw0, .framer-aUoAP .framer-221s0d { align-self: stretch; height: auto; } .framer-aUoAP .framer-kgnuhb { height: var(--framer-aspect-ratio-supported, 245px); } .framer-aUoAP .framer-1i1vhdr { align-content: flex-start; align-items: flex-start; height: 500px; } .framer-aUoAP .framer-5uk6w3 { bottom: unset; height: var(--framer-aspect-ratio-supported, 912px); top: -760px; } .framer-aUoAP .framer-8zwvgu { width: 90%; } .framer-aUoAP .framer-1mdy4ic { padding: 20px 0px 20px 0px; } .framer-aUoAP .framer-15qs7vq-container { height: var(--framer-aspect-ratio-supported, 411px); } .framer-aUoAP .framer-xyap02 { flex-direction: column; } .framer-aUoAP .framer-1mfdean { max-height: 500px; padding: 10px; } .framer-aUoAP .framer-dpcigv { height: 381px; padding: 0px; } .framer-aUoAP .framer-1d8k8o, .framer-aUoAP .framer-3ecvi, .framer-aUoAP .framer-1u377v9 { padding: 20px; } .framer-aUoAP .framer-1a98qi7 { padding: 40px 0px 40px 0px; }}\",\"@media (max-width: 809px) { .framer-aUoAP.framer-z8d4lj { width: 390px; } .framer-aUoAP .framer-xclo99 { padding: 120px 20px 40px 20px; } .framer-aUoAP .framer-7t9d0j { left: 20px; right: 20px; } .framer-aUoAP .framer-1hf36l9 { gap: 40px; max-width: unset; padding: 40px; } .framer-aUoAP .framer-cqmft { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-aUoAP .framer-1qkdvo1 { flex-direction: column; width: 100%; } .framer-aUoAP .framer-bkhffv-container, .framer-aUoAP .framer-14z3co1-container { width: 100%; } .framer-aUoAP .framer-4ouspw { padding: 20px; width: 100%; } .framer-aUoAP .framer-8wygu3, .framer-aUoAP .framer-1xijzky, .framer-aUoAP .framer-jqpf3n, .framer-aUoAP .framer-18ss7d6, .framer-aUoAP .framer-1x1u9i8 { max-width: unset; width: 100%; } .framer-aUoAP .framer-1ppbf6r, .framer-aUoAP .framer-1f7gdn9 { padding: 20px 20px 40px 20px; } .framer-aUoAP .framer-1t9bphb { gap: 20px; padding: 0px; } .framer-aUoAP .framer-1e42h0q { gap: 40px; } .framer-aUoAP .framer-122la61 { padding: 30px 40px 0px 40px; } .framer-aUoAP .framer-gte7pk { padding: 0px; width: 100%; } .framer-aUoAP .framer-12yena4, .framer-aUoAP .framer-1plfp35, .framer-aUoAP .framer-so5hhq { aspect-ratio: unset; flex-direction: column; gap: 20px; height: min-content; } .framer-aUoAP .framer-1past3x { flex: none; height: 250px; width: 100%; } .framer-aUoAP .framer-ujkm9d { aspect-ratio: 1.4 / 1; height: var(--framer-aspect-ratio-supported, 250px); } .framer-aUoAP .framer-17o4cbv, .framer-aUoAP .framer-1j3srja { height: min-content; padding: 0px; width: 100%; } .framer-aUoAP .framer-10sx9we, .framer-aUoAP .framer-j6jl66, .framer-aUoAP .framer-1nln8lq, .framer-aUoAP .framer-1sisp6s, .framer-aUoAP .framer-177s6yn, .framer-aUoAP .framer-1c3h49h, .framer-aUoAP .framer-hpv845, .framer-aUoAP .framer-vyjyzj, .framer-aUoAP .framer-pko8ba { max-width: unset; } .framer-aUoAP .framer-wj4d86 { flex: none; order: 0; width: 100%; } .framer-aUoAP .framer-1u09oox { height: var(--framer-aspect-ratio-supported, 250px); } .framer-aUoAP .framer-10gg9y1 { height: min-content; order: 1; padding: 0px; width: 100%; } .framer-aUoAP .framer-1w41zw0 { height: 1px; order: 3; width: 100%; } .framer-aUoAP .framer-221s0d { flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-aUoAP .framer-kgnuhb { aspect-ratio: 1.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); width: 100%; } .framer-aUoAP .framer-rp60cm { flex: 1 0 0px; width: 1px; } .framer-aUoAP .framer-1mimwqe { height: 46px; width: 270px; } .framer-aUoAP .framer-9xhxyn { height: 2px; left: 14px; top: 44px; width: 2px; } .framer-aUoAP .framer-nxt4ed { height: 2px; top: 14px; width: 2px; } .framer-aUoAP .framer-1vb4v24 { height: 2px; left: 34px; top: 14px; width: 2px; } .framer-aUoAP .framer-1cszroh { height: 2px; left: 13px; top: 10px; width: 2px; } .framer-aUoAP .framer-y4ph8u { height: 7px; left: 15px; width: 7px; } .framer-aUoAP .framer-qpvhwz { height: 7px; top: 24px; width: 7px; } .framer-aUoAP .framer-p7dis1 { height: 7px; left: 39px; top: 15px; width: 7px; } .framer-aUoAP .framer-1mki9dv { height: 6px; left: 33px; top: 38px; width: 6px; } .framer-aUoAP .framer-1csnagy { height: 7px; left: 25px; top: 39px; width: 7px; } .framer-aUoAP .framer-dk8haa { height: 6px; left: 38px; top: 24px; width: 6px; } .framer-aUoAP .framer-33dv8k { height: 6px; left: 24px; top: 3px; width: 6px; } .framer-aUoAP .framer-1x240zx { height: 6px; left: 38px; top: 8px; width: 6px; } .framer-aUoAP .framer-17ilnzy { height: 6px; left: 8px; top: 3px; width: 6px; } .framer-aUoAP .framer-lxmb1b { height: 6px; left: 17px; top: 38px; width: 6px; } .framer-aUoAP .framer-ra2ocx { height: 6px; left: 2px; top: 17px; width: 6px; } .framer-aUoAP .framer-yipunn { height: 4px; left: 8px; top: 12px; width: 4px; } .framer-aUoAP .framer-79zhxb { height: 6px; left: 3px; top: 34px; width: 6px; } .framer-aUoAP .framer-5k07u1 { height: 4px; left: 31px; top: 8px; width: 4px; } .framer-aUoAP .framer-cujdcp { height: 4px; left: 3px; top: 8px; width: 4px; } .framer-aUoAP .framer-1wxoa6r { height: 4px; left: 35px; top: 3px; width: 4px; } .framer-aUoAP .framer-9csn0e { height: 4px; left: 35px; top: 31px; width: 4px; } .framer-aUoAP .framer-1wsmv4x { height: 4px; left: 40px; top: 35px; width: 4px; } .framer-aUoAP .framer-qvfg3f { height: 4px; left: 12px; top: 35px; width: 4px; } .framer-aUoAP .framer-11ingyf { height: 4px; left: 8px; top: 40px; width: 4px; } .framer-aUoAP .framer-1e2ktiq { height: 2px; left: 31px; width: 2px; } .framer-aUoAP .framer-h17u2a { height: 2px; left: 10px; top: 31px; width: 2px; } .framer-aUoAP .framer-5xdspe { height: 2px; left: 31px; top: 35px; width: 2px; } .framer-aUoAP .framer-ls5ydc { height: 2px; left: 44px; top: 31px; width: 2px; } .framer-aUoAP .framer-142obof { height: 18px; left: 54px; top: 15px; width: 19px; } .framer-aUoAP .framer-1cw89nc { height: 11px; left: 58px; top: 18px; width: 11px; } .framer-aUoAP .framer-24gqlu { height: 14px; left: 78px; top: 19px; width: 12px; } .framer-aUoAP .framer-174yij8 { height: 18px; left: 76px; top: 19px; width: 4px; } .framer-aUoAP .framer-1mmp1ra { height: 8px; left: 79px; top: 22px; width: 7px; } .framer-aUoAP .framer-di6zqi { height: 14px; left: 92px; top: 19px; width: 14px; } .framer-aUoAP .framer-ebpakq { height: 14px; left: 108px; top: 19px; width: 14px; } .framer-aUoAP .framer-wikdnt { height: 18px; left: 124px; top: 15px; width: 15px; } .framer-aUoAP .framer-1gjadt8 { height: 14px; left: 140px; top: 19px; width: 14px; } .framer-aUoAP .framer-1mmkgp1 { height: 14px; left: 156px; top: 19px; width: 4px; } .framer-aUoAP .framer-fs8rn0 { height: 5px; left: 155px; top: 13px; width: 5px; } .framer-aUoAP .framer-s6ow0q { height: 14px; left: 162px; top: 19px; width: 14px; } .framer-aUoAP .framer-9bz2pa { height: 14px; left: 178px; top: 19px; width: 14px; } .framer-aUoAP .framer-1om77jf { height: 14px; left: 195px; top: 19px; width: 14px; } .framer-aUoAP .framer-1swz758 { height: 14px; left: 209px; top: 19px; width: 14px; } .framer-aUoAP .framer-1v4fjx2 { height: 18px; left: 226px; top: 15px; width: 13px; } .framer-aUoAP .framer-1np805k { height: 14px; left: 240px; top: 19px; width: 12px; } .framer-aUoAP .framer-6yakj4 { height: 8px; left: 240px; top: 24px; width: 10px; } .framer-aUoAP .framer-5ba2g8 { height: 14px; left: 258px; top: 19px; width: 12px; } .framer-aUoAP .framer-x58o8r { height: 19px; left: 256px; top: 14px; width: 4px; } .framer-aUoAP .framer-1fke4u2 { height: 8px; left: 260px; top: 22px; width: 7px; } .framer-aUoAP .framer-1i1vhdr { height: 400px; } .framer-aUoAP .framer-5uk6w3 { bottom: unset; height: var(--framer-aspect-ratio-supported, 597px); top: -460px; } .framer-aUoAP .framer-1xy7uf8, .framer-aUoAP .framer-1mdy4ic { padding: 0px; } .framer-aUoAP .framer-gekboh { padding: 40px 40px 0px 40px; } .framer-aUoAP .framer-kgy5da { padding: 10px; } .framer-aUoAP .framer-15qs7vq-container { height: var(--framer-aspect-ratio-supported, 197px); } .framer-aUoAP .framer-xyap02 { flex-direction: column; } .framer-aUoAP .framer-tpm4kx { gap: 0px; padding: 0px; } .framer-aUoAP .framer-1xetw5s { padding: 20px 20px 0px 20px; } .framer-aUoAP .framer-1mfdean { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; padding: 0px 0px 20px 0px; } .framer-aUoAP .framer-dpcigv { flex-direction: column; height: min-content; padding: 20px; } .framer-aUoAP .framer-1d8k8o, .framer-aUoAP .framer-3ecvi { --border-color: rgba(255, 255, 255, 0.15); flex: none; height: min-content; padding: 20px; width: 100%; } .framer-aUoAP .framer-1u377v9 { --border-color: rgba(255, 255, 255, 0.15); background: linear-gradient(180deg, var(--token-52ee6131-16ce-42c2-883e-c2146bf81b0e, #260051) 0%, var(--token-a8ff1b88-8e58-431d-89d2-e0168a4a469a, rgb(0, 191, 212)) 100%); flex: none; height: min-content; padding: 20px; width: 100%; } .framer-aUoAP .framer-1a98qi7 { flex-direction: column; gap: 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6206\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"b_1YIMwOL\":{\"layout\":[\"fixed\",\"auto\"]},\"TSKcH6woy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerLRnb1ktvN=withCSS(Component,css,\"framer-aUoAP\");export default FramerLRnb1ktvN;FramerLRnb1ktvN.displayName=\"Home\";FramerLRnb1ktvN.defaultProps={height:6206,width:1200};addFonts(FramerLRnb1ktvN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MBOJEUZXMXZXHAW3KKWUFI6R7OIPIRYU/FBJ6H6I7LKZ2WGOVP25FDJOOUIMXMY2Z/THXRGVPNH45VMHCGWEEJATJ2RCOHTNBI.woff2\",weight:\"500\"}]},...CTA01LargeFonts,...PhosphorFonts,...YouTubeFonts,...FooterFonts,...TopNavFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLRnb1ktvN\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b_1YIMwOL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TSKcH6woy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6206\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "CTA01LargeFonts", "getFonts", "a2Snv03tK_default", "PhosphorFonts", "Icon", "ImageWithFX", "withFX", "Image2", "YouTubeFonts", "Youtube", "FooterFonts", "C11VAT1Cd_default", "TopNavFonts", "gHsoPBLuF_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "Link", "SVG", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerLRnb1ktvN", "withCSS", "LRnb1ktvN_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
