{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/leBiRGCUik3kKK8ihgpU/GAUe8pgb00Y4DYa3jGCj/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (114832d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Button from\"#framer/local/canvasComponent/N0xuQxx5g/N0xuQxx5g.js\";import FloatingNavigationNew from\"#framer/local/canvasComponent/NeMxBa4nS/NeMxBa4nS.js\";import Footer from\"#framer/local/canvasComponent/rgWGuGjkc/rgWGuGjkc.js\";import NavbarLogoLight from\"#framer/local/canvasComponent/xvqTV4smb/xvqTV4smb.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const FloatingNavigationNewFonts=getFonts(FloatingNavigationNew);const ContainerWithFX=withFX(Container);const NavbarLogoLightFonts=getFonts(NavbarLogoLight);const EmbedFonts=getFonts(Embed);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const breakpoints={Phfz6kImV:\"(min-width: 810px) and (max-width: 1199px)\",WOiPrc6Fs:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fs0Sh\";const variantClassNames={Phfz6kImV:\"framer-v-1n4rjmr\",WOiPrc6Fs:\"framer-v-xcdpq3\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"WOiPrc6Fs\",Tablet:\"Phfz6kImV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"vgtI03BX9\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Phfz6kImV\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Phfz6kImV\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"WOiPrc6Fs\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",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-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{__framer__targets:undefined},WOiPrc6Fs:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:10,ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hr4941-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{variant:\"eyN0MztwS\"}},children:/*#__PURE__*/_jsx(FloatingNavigationNew,{height:\"100%\",id:\"onRd90fCP\",layoutId:\"onRd90fCP\",style:{height:\"100%\",width:\"100%\"},variant:\"oATfSJAGN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{height:34.61,y:(componentViewport?.y||0)+0+0},WOiPrc6Fs:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-159uop3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{style:{height:\"100%\",width:\"100%\"},variant:\"jQVNKQwmr\"},WOiPrc6Fs:{style:{height:\"100%\",width:\"100%\"},variant:\"ADtP4V3OE\"}},children:/*#__PURE__*/_jsx(NavbarLogoLight,{height:\"100%\",id:\"FvDncYrpE\",layoutId:\"FvDncYrpE\",style:{width:\"100%\"},variant:\"CVa6KUguQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nlcd0y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1924,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+34.61+0),pixelHeight:1080,pixelWidth:1924,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg\",srcSet:\"https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg 1924w\"}},WOiPrc6Fs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1924,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+120+0),pixelHeight:1080,pixelWidth:1924,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg\",srcSet:\"https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg 1924w\"}}},children:/*#__PURE__*/_jsxs(\"header\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1924,pixelHeight:1080,pixelWidth:1924,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg\",srcSet:\"https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BDIMtqnEQoHlIldBYf38pffbJA.jpg 1924w\"},className:\"framer-1cku5y5\",\"data-framer-name\":\"Header Image\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ygaqxw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{html:'<script src=\"https://fast.wistia.com/player.js\" async></script><script src=\"https://fast.wistia.com/embed/gxmgng4cvj.js\" async type=\"module\"></script><style>wistia-player[media-id=\\'gxmgng4cvj\\']:not(:defined) { background: center / contain no-repeat url(\\'https://fast.wistia.com/embed/medias/gxmgng4cvj/swatch\\'); display: block; filter: blur(5px); padding-top:153.85%; }</style> <wistia-player media-id=\"gxmgng4cvj\"></wistia-player>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://fast.wistia.com/player.js\" async></script><script src=\"https://fast.wistia.com/embed/mk9cpdq2jy.js\" async type=\"module\"></script><style>wistia-player[media-id=\\'mk9cpdq2jy\\']:not(:defined) { background: center / contain no-repeat url(\\'https://fast.wistia.com/embed/medias/mk9cpdq2jy/swatch\\'); display: block; filter: blur(5px); padding-top:50.0%; }</style> <wistia-player media-id=\"mk9cpdq2jy\"></wistia-player>',id:\"VW1Lg6JGI\",layoutId:\"VW1Lg6JGI\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{transformTemplate:transformTemplate2},WOiPrc6Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"For\",/*#__PURE__*/_jsx(\"br\",{}),\"serious\",/*#__PURE__*/_jsx(\"br\",{}),\"daters\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", \"Museo Sans Rounded 900 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"For serious daters\"})}),className:\"framer-1jiwgur\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kia7vc hidden-72rtr7 hidden-xcdpq3\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12wgc8f\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-soq050\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxckft\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", \"Museo Sans Rounded 900 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Why we're here\"})}),className:\"framer-mbzev4\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Coffee Meets Bagel was founded by three sisters who believe everyone deserves a real chance at love and knew casual swiping apps just weren\u2019t going to cut it.\"})}),className:\"framer-iyojno\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1asm0h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{y:(componentViewport?.y||0)+0+634.61+60+0+0+0+0+0+121+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1327pro-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"Get to know us\",height:\"100%\",id:\"iPwSZZepY\",layoutId:\"iPwSZZepY\",style:{height:\"100%\"},variant:\"fWHghzeaJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1145,intrinsicWidth:1374,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+634.61+60+0+0+0+241),pixelHeight:1145,pixelWidth:1374,sizes:\"687px\",src:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg\",srcSet:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg 1374w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1145,intrinsicWidth:1374,pixelHeight:1145,pixelWidth:1374,sizes:\"687px\",src:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg\",srcSet:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg 1374w\"},className:\"framer-1nfl7ma\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t0trs2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5djor6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"How we do it\"})}),className:\"framer-hpcvvk\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"With over 91% of CMB Daters looking for a committed relationship, you won\u2019t be stuck wading through singles who aren\u2019t on the same page. Plus, we\u2019ve been named one of the best dating apps for relationships, with over 150 million matches and counting.\\xa0\"})}),className:\"framer-8b706w\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yw05wp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{y:(componentViewport?.y||0)+0+634.61+60+0+874+0+0+0+121+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o74d94-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"Tell me more\",height:\"100%\",id:\"FF3kmxiSS\",layoutId:\"FF3kmxiSS\",style:{height:\"100%\"},variant:\"fWHghzeaJ\",width:\"100%\"})})})})})]})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rrbt7f hidden-1n4rjmr\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6v1o3\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oqksr3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15sxflp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", \"Museo Sans Rounded 900 Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Why we're here\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", \"Museo Sans Rounded 900 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Why we're here\"})}),className:\"framer-nh1qj9\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Coffee Meets Bagel was founded by three sisters who believe everyone deserves a real chance at love and knew casual swiping apps just weren\u2019t going to cut it.\"})}),className:\"framer-1rxp724\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l1l3am\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{y:(componentViewport?.y||0)+0+720+60+0+0+0+0+0+113.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-106yf32-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"Get to know us\",height:\"100%\",id:\"T8zXSLACz\",layoutId:\"T8zXSLACz\",style:{height:\"100%\"},variant:\"fWHghzeaJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1145,intrinsicWidth:1374,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+720+60+0+0+0+233.8),pixelHeight:1145,pixelWidth:1374,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg\",srcSet:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg 1374w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1145,intrinsicWidth:1374,pixelHeight:1145,pixelWidth:1374,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg\",srcSet:\"https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/F4xYzpuNq8AarngN850ToiyL5VA.jpg 1374w\"},className:\"framer-1feduvw\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8eeskw\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1145,intrinsicWidth:1374,pixelHeight:1145,pixelWidth:1374,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/IKBkt4S1pgRaIX2xZRySlGb9g4.jpg\",srcSet:\"https://framerusercontent.com/images/IKBkt4S1pgRaIX2xZRySlGb9g4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IKBkt4S1pgRaIX2xZRySlGb9g4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IKBkt4S1pgRaIX2xZRySlGb9g4.jpg 1374w\"},className:\"framer-x9j6xb hidden-xcdpq3\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u8lk40\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"How we do it\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"How we do it\"})}),className:\"framer-yamgbb\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"With over 91% of CMB Daters looking for a committed relationship, you won\u2019t be stuck wading through singles who aren\u2019t on the same page. Plus, we\u2019ve been named one of the best dating apps for relationships, with over 150 million matches and counting.\\xa0\"})}),className:\"framer-14pmgre\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1537kqz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{y:(componentViewport?.y||0)+0+720+60+0+693.8+0+0+0+113.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1elbcnd-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"Tell me more\",height:\"100%\",id:\"qZ9NCy7oD\",layoutId:\"qZ9NCy7oD\",style:{height:\"100%\"},variant:\"fWHghzeaJ\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7vu7e-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"H0JJNsg1f\",intervalControl:6,itemAmount:1,layoutId:\"H0JJNsg1f\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ciolqh\",\"data-framer-name\":\"Testimonials 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wgo2m7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:684,intrinsicWidth:763,pixelHeight:684,pixelWidth:763,sizes:\"57px\",src:\"https://framerusercontent.com/images/wgl2eOI412YKoBRyLKhEco8q0XM.png\",srcSet:\"https://framerusercontent.com/images/wgl2eOI412YKoBRyLKhEco8q0XM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgl2eOI412YKoBRyLKhEco8q0XM.png 763w\"},className:\"framer-395p7j\",style:{rotate:12}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\\\"He was worried about boring me with 'nerdy' topics \u2013 but then I showed him my 'Lord of the Rings' tattoo, and we knew we were in the right company. After that, we saw each other every weekend. And now, we plan to spend the rest of our lives together.\\\"\"})}),className:\"framer-ge1ysk\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-39bp3j\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3447,intrinsicWidth:2751,pixelHeight:3447,pixelWidth:2751,sizes:\"169px\",src:\"https://framerusercontent.com/images/6mRD7XNMUkaDwiIPJ9SBvByqk.jpg\",srcSet:\"https://framerusercontent.com/images/6mRD7XNMUkaDwiIPJ9SBvByqk.jpg?scale-down-to=1024 817w,https://framerusercontent.com/images/6mRD7XNMUkaDwiIPJ9SBvByqk.jpg?scale-down-to=2048 1634w,https://framerusercontent.com/images/6mRD7XNMUkaDwiIPJ9SBvByqk.jpg 2751w\"},className:\"framer-1y2n0qn\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-htxjsu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"SARA & JEFFREY\"})}),className:\"framer-r6pbzn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r3booo\",\"data-framer-name\":\"Testimonials 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:785,intrinsicWidth:579,pixelHeight:785,pixelWidth:579,sizes:\"52px\",src:\"https://framerusercontent.com/images/14kU7QyR0nwucppp0lFM06UGlo.png\",srcSet:\"https://framerusercontent.com/images/14kU7QyR0nwucppp0lFM06UGlo.png 579w\"},className:\"framer-10t6xg4\",style:{rotate:12}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-147oly6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\\\"On our first date, we shared an XL popcorn and slushie, which led to our saying 'go big or go home.' After our first week together, we never looked back. Two years later, we bought our first house and I proposed, saying 'It\u2019s time to go big and go home.'\\\"\"})}),className:\"framer-16p15yi\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1djduc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2507,intrinsicWidth:1170,pixelHeight:2507,pixelWidth:1170,sizes:\"169px\",src:\"https://framerusercontent.com/images/8C27cYcG9L9MNZI9UaqiWkR0QJ0.jpg\",srcSet:\"https://framerusercontent.com/images/8C27cYcG9L9MNZI9UaqiWkR0QJ0.jpg?scale-down-to=2048 955w,https://framerusercontent.com/images/8C27cYcG9L9MNZI9UaqiWkR0QJ0.jpg 1170w\"},className:\"framer-1qerjpk\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1axthj1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"WENDY & KIET\"})}),className:\"framer-swzhq3\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yfr22r\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:520,intrinsicWidth:821,pixelHeight:520,pixelWidth:821,sizes:\"74px\",src:\"https://framerusercontent.com/images/7NtgHTd7hO7xQNOjAiBpTjtbZ4.png\",srcSet:\"https://framerusercontent.com/images/7NtgHTd7hO7xQNOjAiBpTjtbZ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/7NtgHTd7hO7xQNOjAiBpTjtbZ4.png 821w\"},className:\"framer-nhlwv9\",style:{rotate:-9}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19745p3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:'\"Kevin packed breakfast for our hiking date, then invited my mom to join us for lunch because she was visiting from China. Listening to Kevin try his best to impress my mom with his choppy Chinese skills was an entertaining and unique first date.\"'})}),className:\"framer-1anc1pu\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tojx8i\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2212,intrinsicWidth:3442,pixelHeight:2212,pixelWidth:3442,sizes:\"169px\",src:\"https://framerusercontent.com/images/8oyOU564msJzaZ1hS3IPhm2vKf8.jpg\",srcSet:\"https://framerusercontent.com/images/8oyOU564msJzaZ1hS3IPhm2vKf8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8oyOU564msJzaZ1hS3IPhm2vKf8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8oyOU564msJzaZ1hS3IPhm2vKf8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8oyOU564msJzaZ1hS3IPhm2vKf8.jpg 3442w\"},className:\"framer-lq1wli\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9zpo4w\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"KEVIN & WENLI\"})}),className:\"framer-z17yul\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1phxwsx hidden-72rtr7 hidden-xcdpq3\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-133pm0k\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-evg4av\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iir6v9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Working at CMB\"})}),className:\"framer-x6trsw\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Want to help daters find the relationship they\u2019re looking for? We\u2019d love to have you. \"})}),className:\"framer-192miqj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{y:(componentViewport?.y||0)+0+2362.61+60+0+0+0+0+0+0+104}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-181ypgj-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"Join the team\",height:\"100%\",id:\"ygj9p5yMn\",layoutId:\"ygj9p5yMn\",style:{height:\"100%\"},variant:\"gO8nc20HW\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ol9h4e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bva7yi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"CMB in the news\"})}),className:\"framer-1pgfnh1\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"See what people are saying, link up for a chat, or download our CMB Media Kit.\"})}),className:\"framer-1qtax5p\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{y:(componentViewport?.y||0)+0+2362.61+60+0+0+204+0+0+0+104}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xe6b6g-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"See our press page\",height:\"100%\",id:\"t2pR3eLOq\",layoutId:\"t2pR3eLOq\",style:{height:\"100%\"},variant:\"GvOvEKvzM\",width:\"100%\"})})})})]})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11l3u13 hidden-1n4rjmr\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3v2yhm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u7xaml\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2rw6y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Working at CMB\"})}),className:\"framer-1kyos7h\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Want to help daters find the serious relationship they\u2019re looking for? We\u2019d love to have you. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Want to help daters find the serious relationship they\u2019re looking for? We\u2019d love to have you. \"})}),className:\"framer-1h9xxjd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{y:(componentViewport?.y||0)+0+2352.6+60+0+0+0+0+0+102.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ha1d1g-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"Join the team\",height:\"100%\",id:\"xxCbnEJLS\",layoutId:\"xxCbnEJLS\",style:{height:\"100%\"},variant:\"gO8nc20HW\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ffhayp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ay3svs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO011c2VvIFNhbnMgUm91bmRlZCA5MDA=\",\"--framer-font-family\":'\"Museo Sans Rounded 900\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"CMB in the news\"})}),className:\"framer-2854co\",fonts:[\"CUSTOM;Museo Sans Rounded 900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Read what people are saying, link up for a chat, or download our CMB Media Kit.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Read what people are saying, link up for a chat, or download our CMB Media Kit.\"})}),className:\"framer-g9f1nw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WOiPrc6Fs:{y:(componentViewport?.y||0)+0+2352.6+60+0+202.6+0+0+0+102.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1txtpf5-container\",children:/*#__PURE__*/_jsx(Button,{EDAaQysg7:\"See our press page\",height:\"100%\",id:\"b1kqICd7s\",layoutId:\"b1kqICd7s\",style:{height:\"100%\"},variant:\"GvOvEKvzM\",width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{y:(componentViewport?.y||0)+0+2830.61},WOiPrc6Fs:{y:(componentViewport?.y||0)+0+2817.7999999999997}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rzoj50-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Phfz6kImV:{variant:\"LLR_i1SfF\"},WOiPrc6Fs:{variant:\"Ir0eBFSXp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"a7hcxm8iZ\",layoutId:\"a7hcxm8iZ\",style:{width:\"100%\"},variant:\"Dl6vVAHnv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fs0Sh.framer-lux5qc, .framer-fs0Sh .framer-lux5qc { display: block; }\",\".framer-fs0Sh.framer-72rtr7 { 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-fs0Sh .framer-1hr4941-container { flex: none; height: 120px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-fs0Sh .framer-159uop3-container, .framer-fs0Sh .framer-rzoj50-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-1nlcd0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-1cku5y5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 60px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-fs0Sh .framer-1ygaqxw-container { bottom: -450px; flex: none; height: 125vh; left: 0px; position: absolute; right: 0px; z-index: 0; }\",\".framer-fs0Sh .framer-1jiwgur { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; max-width: 100%; position: absolute; top: 46%; transform: translate(-50%, -50%); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-fs0Sh .framer-1kia7vc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 808px; }\",\".framer-fs0Sh .framer-12wgc8f, .framer-fs0Sh .framer-1j6v1o3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fs0Sh .framer-soq050 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-1pxckft, .framer-fs0Sh .framer-5djor6, .framer-fs0Sh .framer-1iir6v9, .framer-fs0Sh .framer-bva7yi, .framer-fs0Sh .framer-h2rw6y, .framer-fs0Sh .framer-1ay3svs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-mbzev4, .framer-fs0Sh .framer-hpcvvk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 689px; word-break: break-word; word-wrap: break-word; }\",\".framer-fs0Sh .framer-iyojno, .framer-fs0Sh .framer-8b706w, .framer-fs0Sh .framer-192miqj, .framer-fs0Sh .framer-1qtax5p { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fs0Sh .framer-1asm0h, .framer-fs0Sh .framer-1yw05wp, .framer-fs0Sh .framer-l1l3am, .framer-fs0Sh .framer-1537kqz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fs0Sh .framer-1327pro-container, .framer-fs0Sh .framer-1o74d94-container, .framer-fs0Sh .framer-106yf32-container, .framer-fs0Sh .framer-1elbcnd-container, .framer-fs0Sh .framer-181ypgj-container, .framer-fs0Sh .framer-xe6b6g-container, .framer-fs0Sh .framer-1ha1d1g-container, .framer-fs0Sh .framer-1txtpf5-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-fs0Sh .framer-1nfl7ma { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; 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: 20px; height: var(--framer-aspect-ratio-supported, 573px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 687px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fs0Sh .framer-t0trs2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-1rrbt7f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-oqksr3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-15sxflp, .framer-fs0Sh .framer-1u8lk40 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-fs0Sh .framer-nh1qj9, .framer-fs0Sh .framer-yamgbb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-fs0Sh .framer-1rxp724, .framer-fs0Sh .framer-14pmgre { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-fs0Sh .framer-1feduvw { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; 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: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fs0Sh .framer-8eeskw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-x9j6xb { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; 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: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fs0Sh .framer-o7vu7e-container { flex: none; height: 576px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-ciolqh { align-content: center; align-items: center; background-color: rgba(229, 245, 245, 0.75); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 40px 96px 40px; position: relative; width: 1200px; }\",\".framer-fs0Sh .framer-1wgo2m7, .framer-fs0Sh .framer-147oly6, .framer-fs0Sh .framer-19745p3 { 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: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-fs0Sh .framer-395p7j { flex: none; height: 50px; overflow: hidden; position: relative; width: 57px; }\",\".framer-fs0Sh .framer-ge1ysk, .framer-fs0Sh .framer-16p15yi, .framer-fs0Sh .framer-1anc1pu { flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fs0Sh .framer-39bp3j, .framer-fs0Sh .framer-1djduc, .framer-fs0Sh .framer-tojx8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fs0Sh .framer-1y2n0qn, .framer-fs0Sh .framer-1qerjpk, .framer-fs0Sh .framer-lq1wli { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: hidden; position: relative; width: 169px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fs0Sh .framer-htxjsu, .framer-fs0Sh .framer-1axthj1, .framer-fs0Sh .framer-9zpo4w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fs0Sh .framer-r6pbzn, .framer-fs0Sh .framer-swzhq3, .framer-fs0Sh .framer-z17yul, .framer-fs0Sh .framer-x6trsw, .framer-fs0Sh .framer-1pgfnh1, .framer-fs0Sh .framer-1kyos7h, .framer-fs0Sh .framer-2854co { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fs0Sh .framer-r3booo { align-content: center; align-items: center; background-color: rgba(229, 245, 245, 0.75); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 88px 40px 88px 40px; position: relative; width: 1200px; }\",\".framer-fs0Sh .framer-10t6xg4 { flex: none; height: 58px; overflow: hidden; position: relative; width: 52px; }\",\".framer-fs0Sh .framer-yfr22r { align-content: center; align-items: center; background-color: rgba(229, 245, 245, 0.75); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 97px 40px 97px 40px; position: relative; width: 1200px; }\",\".framer-fs0Sh .framer-nhlwv9 { flex: none; height: 46px; overflow: hidden; position: relative; width: 74px; }\",\".framer-fs0Sh .framer-1phxwsx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-133pm0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-evg4av, .framer-fs0Sh .framer-1ol9h4e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-11l3u13 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-3v2yhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fs0Sh .framer-1u7xaml, .framer-fs0Sh .framer-1ffhayp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fs0Sh .framer-1h9xxjd, .framer-fs0Sh .framer-g9f1nw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fs0Sh.framer-72rtr7, .framer-fs0Sh .framer-1nlcd0y, .framer-fs0Sh .framer-1cku5y5, .framer-fs0Sh .framer-1kia7vc, .framer-fs0Sh .framer-12wgc8f, .framer-fs0Sh .framer-soq050, .framer-fs0Sh .framer-1pxckft, .framer-fs0Sh .framer-1asm0h, .framer-fs0Sh .framer-1nfl7ma, .framer-fs0Sh .framer-t0trs2, .framer-fs0Sh .framer-5djor6, .framer-fs0Sh .framer-1yw05wp, .framer-fs0Sh .framer-1rrbt7f, .framer-fs0Sh .framer-1j6v1o3, .framer-fs0Sh .framer-oqksr3, .framer-fs0Sh .framer-15sxflp, .framer-fs0Sh .framer-l1l3am, .framer-fs0Sh .framer-1feduvw, .framer-fs0Sh .framer-8eeskw, .framer-fs0Sh .framer-x9j6xb, .framer-fs0Sh .framer-1u8lk40, .framer-fs0Sh .framer-1537kqz, .framer-fs0Sh .framer-ciolqh, .framer-fs0Sh .framer-1wgo2m7, .framer-fs0Sh .framer-39bp3j, .framer-fs0Sh .framer-htxjsu, .framer-fs0Sh .framer-r3booo, .framer-fs0Sh .framer-147oly6, .framer-fs0Sh .framer-1djduc, .framer-fs0Sh .framer-1axthj1, .framer-fs0Sh .framer-yfr22r, .framer-fs0Sh .framer-19745p3, .framer-fs0Sh .framer-tojx8i, .framer-fs0Sh .framer-9zpo4w, .framer-fs0Sh .framer-1phxwsx, .framer-fs0Sh .framer-133pm0k, .framer-fs0Sh .framer-evg4av, .framer-fs0Sh .framer-1iir6v9, .framer-fs0Sh .framer-1ol9h4e, .framer-fs0Sh .framer-bva7yi, .framer-fs0Sh .framer-11l3u13, .framer-fs0Sh .framer-3v2yhm, .framer-fs0Sh .framer-1u7xaml, .framer-fs0Sh .framer-h2rw6y, .framer-fs0Sh .framer-1ffhayp, .framer-fs0Sh .framer-1ay3svs { gap: 0px; } .framer-fs0Sh.framer-72rtr7 > *, .framer-fs0Sh .framer-ciolqh > *, .framer-fs0Sh .framer-htxjsu > *, .framer-fs0Sh .framer-1axthj1 > *, .framer-fs0Sh .framer-9zpo4w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fs0Sh.framer-72rtr7 > :first-child, .framer-fs0Sh .framer-1cku5y5 > :first-child, .framer-fs0Sh .framer-12wgc8f > :first-child, .framer-fs0Sh .framer-soq050 > :first-child, .framer-fs0Sh .framer-1pxckft > :first-child, .framer-fs0Sh .framer-1nfl7ma > :first-child, .framer-fs0Sh .framer-t0trs2 > :first-child, .framer-fs0Sh .framer-5djor6 > :first-child, .framer-fs0Sh .framer-1j6v1o3 > :first-child, .framer-fs0Sh .framer-15sxflp > :first-child, .framer-fs0Sh .framer-1feduvw > :first-child, .framer-fs0Sh .framer-x9j6xb > :first-child, .framer-fs0Sh .framer-1u8lk40 > :first-child, .framer-fs0Sh .framer-ciolqh > :first-child, .framer-fs0Sh .framer-1wgo2m7 > :first-child, .framer-fs0Sh .framer-htxjsu > :first-child, .framer-fs0Sh .framer-r3booo > :first-child, .framer-fs0Sh .framer-147oly6 > :first-child, .framer-fs0Sh .framer-1axthj1 > :first-child, .framer-fs0Sh .framer-yfr22r > :first-child, .framer-fs0Sh .framer-19745p3 > :first-child, .framer-fs0Sh .framer-9zpo4w > :first-child, .framer-fs0Sh .framer-1phxwsx > :first-child, .framer-fs0Sh .framer-133pm0k > :first-child, .framer-fs0Sh .framer-evg4av > :first-child, .framer-fs0Sh .framer-1iir6v9 > :first-child, .framer-fs0Sh .framer-1ol9h4e > :first-child, .framer-fs0Sh .framer-bva7yi > :first-child, .framer-fs0Sh .framer-11l3u13 > :first-child, .framer-fs0Sh .framer-1u7xaml > :first-child, .framer-fs0Sh .framer-h2rw6y > :first-child, .framer-fs0Sh .framer-1ffhayp > :first-child, .framer-fs0Sh .framer-1ay3svs > :first-child { margin-top: 0px; } .framer-fs0Sh.framer-72rtr7 > :last-child, .framer-fs0Sh .framer-1cku5y5 > :last-child, .framer-fs0Sh .framer-12wgc8f > :last-child, .framer-fs0Sh .framer-soq050 > :last-child, .framer-fs0Sh .framer-1pxckft > :last-child, .framer-fs0Sh .framer-1nfl7ma > :last-child, .framer-fs0Sh .framer-t0trs2 > :last-child, .framer-fs0Sh .framer-5djor6 > :last-child, .framer-fs0Sh .framer-1j6v1o3 > :last-child, .framer-fs0Sh .framer-15sxflp > :last-child, .framer-fs0Sh .framer-1feduvw > :last-child, .framer-fs0Sh .framer-x9j6xb > :last-child, .framer-fs0Sh .framer-1u8lk40 > :last-child, .framer-fs0Sh .framer-ciolqh > :last-child, .framer-fs0Sh .framer-1wgo2m7 > :last-child, .framer-fs0Sh .framer-htxjsu > :last-child, .framer-fs0Sh .framer-r3booo > :last-child, .framer-fs0Sh .framer-147oly6 > :last-child, .framer-fs0Sh .framer-1axthj1 > :last-child, .framer-fs0Sh .framer-yfr22r > :last-child, .framer-fs0Sh .framer-19745p3 > :last-child, .framer-fs0Sh .framer-9zpo4w > :last-child, .framer-fs0Sh .framer-1phxwsx > :last-child, .framer-fs0Sh .framer-133pm0k > :last-child, .framer-fs0Sh .framer-evg4av > :last-child, .framer-fs0Sh .framer-1iir6v9 > :last-child, .framer-fs0Sh .framer-1ol9h4e > :last-child, .framer-fs0Sh .framer-bva7yi > :last-child, .framer-fs0Sh .framer-11l3u13 > :last-child, .framer-fs0Sh .framer-1u7xaml > :last-child, .framer-fs0Sh .framer-h2rw6y > :last-child, .framer-fs0Sh .framer-1ffhayp > :last-child, .framer-fs0Sh .framer-1ay3svs > :last-child { margin-bottom: 0px; } .framer-fs0Sh .framer-1nlcd0y > *, .framer-fs0Sh .framer-1rrbt7f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fs0Sh .framer-1nlcd0y > :first-child, .framer-fs0Sh .framer-1kia7vc > :first-child, .framer-fs0Sh .framer-1asm0h > :first-child, .framer-fs0Sh .framer-1yw05wp > :first-child, .framer-fs0Sh .framer-1rrbt7f > :first-child, .framer-fs0Sh .framer-oqksr3 > :first-child, .framer-fs0Sh .framer-l1l3am > :first-child, .framer-fs0Sh .framer-8eeskw > :first-child, .framer-fs0Sh .framer-1537kqz > :first-child, .framer-fs0Sh .framer-39bp3j > :first-child, .framer-fs0Sh .framer-1djduc > :first-child, .framer-fs0Sh .framer-tojx8i > :first-child, .framer-fs0Sh .framer-3v2yhm > :first-child { margin-left: 0px; } .framer-fs0Sh .framer-1nlcd0y > :last-child, .framer-fs0Sh .framer-1kia7vc > :last-child, .framer-fs0Sh .framer-1asm0h > :last-child, .framer-fs0Sh .framer-1yw05wp > :last-child, .framer-fs0Sh .framer-1rrbt7f > :last-child, .framer-fs0Sh .framer-oqksr3 > :last-child, .framer-fs0Sh .framer-l1l3am > :last-child, .framer-fs0Sh .framer-8eeskw > :last-child, .framer-fs0Sh .framer-1537kqz > :last-child, .framer-fs0Sh .framer-39bp3j > :last-child, .framer-fs0Sh .framer-1djduc > :last-child, .framer-fs0Sh .framer-tojx8i > :last-child, .framer-fs0Sh .framer-3v2yhm > :last-child { margin-right: 0px; } .framer-fs0Sh .framer-1cku5y5 > *, .framer-fs0Sh .framer-1pxckft > *, .framer-fs0Sh .framer-1nfl7ma > *, .framer-fs0Sh .framer-5djor6 > *, .framer-fs0Sh .framer-15sxflp > *, .framer-fs0Sh .framer-1feduvw > *, .framer-fs0Sh .framer-x9j6xb > *, .framer-fs0Sh .framer-1u8lk40 > *, .framer-fs0Sh .framer-1wgo2m7 > *, .framer-fs0Sh .framer-147oly6 > *, .framer-fs0Sh .framer-yfr22r > *, .framer-fs0Sh .framer-19745p3 > *, .framer-fs0Sh .framer-1iir6v9 > *, .framer-fs0Sh .framer-bva7yi > *, .framer-fs0Sh .framer-h2rw6y > *, .framer-fs0Sh .framer-1ay3svs > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fs0Sh .framer-1kia7vc > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-fs0Sh .framer-12wgc8f > *, .framer-fs0Sh .framer-1j6v1o3 > *, .framer-fs0Sh .framer-1phxwsx > *, .framer-fs0Sh .framer-133pm0k > *, .framer-fs0Sh .framer-11l3u13 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fs0Sh .framer-soq050 > *, .framer-fs0Sh .framer-t0trs2 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-fs0Sh .framer-1asm0h > *, .framer-fs0Sh .framer-1yw05wp > *, .framer-fs0Sh .framer-l1l3am > *, .framer-fs0Sh .framer-1537kqz > *, .framer-fs0Sh .framer-39bp3j > *, .framer-fs0Sh .framer-1djduc > *, .framer-fs0Sh .framer-tojx8i > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-fs0Sh .framer-oqksr3 > *, .framer-fs0Sh .framer-8eeskw > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-fs0Sh .framer-r3booo > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-fs0Sh .framer-evg4av > *, .framer-fs0Sh .framer-1ol9h4e > *, .framer-fs0Sh .framer-1u7xaml > *, .framer-fs0Sh .framer-1ffhayp > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fs0Sh .framer-3v2yhm > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } }\",\"@media (max-width: 809px) { .framer-fs0Sh.framer-72rtr7 { height: 3506px; width: 390px; } .framer-fs0Sh .framer-159uop3-container { height: 3%; } .framer-fs0Sh .framer-1cku5y5 { padding: 0px; } .framer-fs0Sh .framer-1ygaqxw-container { bottom: unset; height: 100vh; left: unset; position: relative; right: unset; width: 100%; } .framer-fs0Sh .framer-1rrbt7f { gap: 20px; padding: 60px 20px 60px 20px; } .framer-fs0Sh .framer-oqksr3, .framer-fs0Sh .framer-8eeskw { flex-direction: column; } .framer-fs0Sh .framer-15sxflp, .framer-fs0Sh .framer-1u8lk40 { flex: none; order: 0; width: 100%; } .framer-fs0Sh .framer-nh1qj9, .framer-fs0Sh .framer-yamgbb { width: 350px; } .framer-fs0Sh .framer-1rxp724, .framer-fs0Sh .framer-14pmgre, .framer-fs0Sh .framer-1h9xxjd, .framer-fs0Sh .framer-g9f1nw { width: 100%; } .framer-fs0Sh .framer-1feduvw { flex: none; height: var(--framer-aspect-ratio-supported, 291px); order: 1; width: 100%; } .framer-fs0Sh .framer-o7vu7e-container { height: 665px; width: 100%; } .framer-fs0Sh .framer-11l3u13 { flex-direction: row; gap: 20px; padding: 60px 20px 60px 20px; } .framer-fs0Sh .framer-3v2yhm { flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-fs0Sh .framer-1u7xaml, .framer-fs0Sh .framer-1ffhayp { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fs0Sh .framer-1rrbt7f, .framer-fs0Sh .framer-oqksr3, .framer-fs0Sh .framer-8eeskw, .framer-fs0Sh .framer-11l3u13, .framer-fs0Sh .framer-3v2yhm { gap: 0px; } .framer-fs0Sh .framer-1rrbt7f > *, .framer-fs0Sh .framer-11l3u13 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-fs0Sh .framer-1rrbt7f > :first-child, .framer-fs0Sh .framer-11l3u13 > :first-child { margin-left: 0px; } .framer-fs0Sh .framer-1rrbt7f > :last-child, .framer-fs0Sh .framer-11l3u13 > :last-child { margin-right: 0px; } .framer-fs0Sh .framer-oqksr3 > *, .framer-fs0Sh .framer-8eeskw > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-fs0Sh .framer-oqksr3 > :first-child, .framer-fs0Sh .framer-8eeskw > :first-child, .framer-fs0Sh .framer-3v2yhm > :first-child { margin-top: 0px; } .framer-fs0Sh .framer-oqksr3 > :last-child, .framer-fs0Sh .framer-8eeskw > :last-child, .framer-fs0Sh .framer-3v2yhm > :last-child { margin-bottom: 0px; } .framer-fs0Sh .framer-3v2yhm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-fs0Sh.framer-72rtr7 { height: 3461px; width: 810px; } .framer-fs0Sh .framer-159uop3-container { height: 1%; } .framer-fs0Sh .framer-1ygaqxw-container { bottom: unset; height: 88.61111111111111vh; left: -136px; order: 1; right: -335px; top: -179px; } .framer-fs0Sh .framer-1jiwgur { bottom: 200px; order: 2; top: unset; transform: translateX(-50%); } .framer-fs0Sh .framer-1nfl7ma { height: var(--framer-aspect-ratio-supported, 572px); } .framer-fs0Sh .framer-o7vu7e-container { height: 573px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3023\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WOiPrc6Fs\":{\"layout\":[\"fixed\",\"fixed\"]},\"Phfz6kImV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vgtI03BX9\":{\"pattern\":\":vgtI03BX9\",\"name\":\"hero-video\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-fs0Sh\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3023,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Museo Sans Rounded 900\",source:\"custom\",url:\"https://framerusercontent.com/assets/HHVoBjfE79HmyTtROqQUvT4hsw.otf\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...FloatingNavigationNewFonts,...NavbarLogoLightFonts,...EmbedFonts,...ButtonFonts,...SlideshowFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"3023\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WOiPrc6Fs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Phfz6kImV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerScrollSections\":\"{\\\"vgtI03BX9\\\":{\\\"pattern\\\":\\\":vgtI03BX9\\\",\\\"name\\\":\\\"hero-video\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "+pBAQkB,SAARA,EAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,EAAK,MAAAC,EAAM,CAAC,CAAC,EAAE,CAAC,OAAGH,IAAO,OAAOC,EAAyBG,EAAKC,GAAS,CAAC,IAAIJ,EAAI,MAAME,CAAK,CAAC,EAAMH,IAAO,QAAQE,EAA0BE,EAAKE,GAAU,CAAC,KAAKJ,EAAK,MAAMC,CAAK,CAAC,EAAuBC,EAAKG,GAAa,CAAC,MAAMJ,CAAK,CAAC,CAAE,CAACK,GAAoBT,EAAM,CAAC,KAAK,CAAC,KAAKU,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,EAAY,OAAO,gBAAgB,GAAK,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,GAAa,CAAC,MAAAJ,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGS,GAAgB,SAAS,SAAS,GAAGT,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,EAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASR,GAAS,CAAC,IAAAJ,EAAI,MAAAE,CAAK,EAAE,CAAC,IAAMW,EAAc,CAACX,EAAM,OAC1/B,cAAc,KAAKF,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMc,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,EAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,EAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBtB,CAAG,CAAC,EAAE,GAAGsB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,CAAG,KAAK,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,CAAE,CAAC,CAAC,OAAAJ,EAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACpB,CAAG,CAAC,EAAKc,GAAUD,EAAe,OAAoBV,EAAKuB,EAAa,CAAC,QAAQ,yCAAyC,MAAMxB,CAAK,CAAC,EAAG,GAAG,CAACF,EAAI,WAAW,UAAU,EAAG,OAAoBG,EAAKuB,EAAa,CAAC,QAAQ,wBAAwB,MAAMxB,CAAK,CAAC,EAAG,GAAGc,IAAQ,OAAW,OAAoBb,EAAKwB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAoBb,EAAKuB,EAAa,CAAC,QAAQV,EAAM,QAAQ,MAAMd,CAAK,CAAC,EAAG,GAAGc,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,oBAAexB,CAAG,uCAAuC,OAAoBG,EAAKuB,EAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,CAAE,CAAC,OAAoBC,EAAK,SAAS,CAAC,IAAIH,EAAI,MAAM,CAAC,GAAG4B,GAAY,GAAG1B,CAAK,EAAE,QAAQ,OACvpC,cAAcY,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASzB,GAAU,CAAC,KAAAJ,EAAK,GAAGQ,CAAK,EAAE,CAA4C,GAA3BR,EAAK,SAAS,YAAW,EAAe,CAAC,IAAM8B,EAAgB9B,EAAK,SAAS,kBAAkB,EAAQ+B,EAAW/B,EAAK,SAAS,8BAA8B,EAAE,OAAG8B,GAAiBC,EAAgC7B,EAAK8B,GAAqB,CAAC,KAAKhC,EAAK,GAAGQ,CAAK,CAAC,EAAuBN,EAAK+B,GAAsB,CAAC,KAAKjC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,OAAoBN,EAAKgC,GAAwB,CAAC,KAAKlC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,SAASyB,GAAsB,CAAC,KAAAjC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAO,CAACC,EAAaC,CAAe,EAAErB,EAAS,CAAC,EAC/kCC,EAAU,IAAI,CAAC,IAAIqB,EAAa,IAAMC,GAAcD,EAAaJ,EAAI,WAAW,MAAMI,IAAe,OAAO,OAAOA,EAAa,cAAc,SAASE,EAAcC,EAAM,CAAC,GAAGA,EAAM,SAASF,EAAa,OAAO,IAAMG,EAAKD,EAAM,KAAK,GAAG,OAAOC,GAAO,UAAUA,IAAO,KAAK,OAAO,IAAMC,EAAOD,EAAK,YAAe,OAAOC,GAAS,UAAgBN,EAAgBM,CAAM,CAAE,CAAC,OAAAC,EAAO,iBAAiB,UAAUJ,CAAa,EAE7WD,GAAa,YAAY,iBAAiB,GAAG,EAAQ,IAAI,CAACK,EAAO,oBAAoB,UAAUJ,CAAa,CAAE,CAAE,EAAE,CAAC,CAAC,EAGtK,IAAMK,EAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAqCH9C,CAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6BN+C,EAAa,CAAC,GAAGpB,GAAY,GAAG1B,CAAK,EAAoC,MAAd,CAACA,EAAM,SAAyB8C,EAAa,OAAOV,EAAa,MAA0BnC,EAAK,SAAS,CAAC,IAAIiC,EAAI,MAAMY,EAAa,OAAOD,CAAM,CAAC,CAAE,CAAC,SAASd,GAAqB,CAAC,KAAAhC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAE,OAAAlB,EAAU,IAAI,CAAC,IAAM8B,EAAIb,EAAI,QAAQ,GAAIa,EAAW,OAAAA,EAAI,UAAUhD,EAAKiD,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAChD,CAAI,CAAC,EAAsBE,EAAK,MAAM,CAAC,IAAIiC,EAAI,MAAM,CAAC,GAAGe,GAAU,GAAGjD,CAAK,CAAC,CAAC,CAAE,CAAC,SAASiC,GAAwB,CAAC,KAAAlC,EAAK,MAAAC,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgD,GAAU,GAAGjD,CAAK,EAAE,wBAAwB,CAAC,OAAOD,CAAI,CAAC,CAAC,CAAE,CAAC,IAAMkD,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAEvvB,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,CAAE,KAAM,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAAS7B,IAAkB,CAAC,OAAoBxB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGsD,EAAgB,SAAS,QAAQ,EAAE,SAAsBtD,EAAK,MAAM,CAAC,MAAMS,EAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASc,EAAa,CAAC,QAAAF,EAAQ,MAAAtB,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGuD,EAAgB,SAAS,SAAS,GAAGvD,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,EAAgB,SAASY,CAAO,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMZ,EAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EACzjB,SAASF,GAAaR,EAAM,CAAmC,GAAd,CAACA,EAAM,OAAwB,MAAO,IAAI,CC1Fg8B,IAAMwD,GAA2BC,EAASC,CAAqB,EAAQC,GAAgBC,GAAOC,CAAS,EAAQC,GAAqBL,EAASM,CAAe,EAAQC,GAAWP,EAASQ,CAAK,EAAQC,GAAYT,EAASU,CAAM,EAAQC,GAAeX,EAASY,CAAS,EAAQC,GAAYb,EAASc,CAAM,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,EAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAE,IAAI,yBAAyB,CAAC,GAASC,GAAmB,CAACD,EAAE,IAAI,oBAAoB,CAAC,GAASE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEf,GAASI,CAAK,EAAQY,EAAU,IAAI,CAAC,IAAMC,EAASA,EAAiB,OAAUT,CAAY,EAAE,GAAGS,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,EAAmB,IAAI,CAAC,IAAMF,EAASA,EAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ5B,GAAY,EAAK,EAAQqC,EAAe,OAA+CC,EAAkBC,EAAGrC,GAAkB,GAAhD,CAAC,CAAuE,EAAQsC,GAAWC,EAAO,IAAI,EAAQC,EAAWD,EAAO,IAAI,EAAQE,GAAUC,EAAkB,WAAW,EAAQC,EAAY,IAAQ,CAAC5C,EAAU,GAAiBiC,IAAc,YAA6CY,EAAa,IAAS7C,EAAU,EAAiBiC,IAAc,YAAtB,GAAmEa,GAAa,IAAS9C,EAAU,EAAiBiC,IAAc,YAAtB,GAAmEc,GAAsBC,EAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlD,EAAiB,EAAE,SAAsBmD,EAAMC,EAAY,CAAC,GAAG5B,GAAUqB,GAAgB,SAAS,CAAcpC,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe6C,EAAME,EAAO,IAAI,CAAC,GAAG3B,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIL,GAAKmB,GAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAAcb,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMN,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBvC,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE,SAAsBtB,EAAKzB,GAAgB,CAAC,kBAAkB,CAAC,WAAWkB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAIsC,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,aAAa,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB9B,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAK1B,EAAsB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,MAAM,GAAGiB,GAAmB,GAAG,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,CAAC,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMN,GAAmB,OAAO,QAAQ,SAAsBvC,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKrB,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,GAA2BR,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBG,EAAM,SAAS,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAMH,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,GAAGR,GAAU,IAAID,EAAK,SAAS,CAAc9B,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,mbAAqb,CAAC,EAAE,SAAsBtB,EAAKnB,EAAM,CAAC,OAAO,OAAO,KAAK,kbAAob,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB1B,EAAkB,EAAE,UAAU,CAAC,SAAsBI,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,MAAmB1C,EAAK,KAAK,CAAC,CAAC,EAAE,UAAuBA,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,kBAAkBN,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuC,EAAY,GAAgBjC,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,iBAAiB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,qKAAgK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBvC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,+QAAgQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmD,EAAa,GAAgBlC,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,iBAAiB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1C,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,qKAAgK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,GAA2BR,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBvC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWX,GAAmB,OAAO,OAAO,kBAAkB,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACP,GAAa,GAAgBnC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWX,GAAmB,OAAO,OAAO,kBAAkB,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,8BAA8B,mBAAmB,OAAO,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1C,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,+QAAgQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,0BAA0B,SAAsBuB,EAAKf,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAK,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAce,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAsBF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAelD,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2DAA2D,qBAAqB,OAAO,sBAAsB,SAAS,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,mQAAgQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0C,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,iQAAiQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB5C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAeR,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc5C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2DAA2D,qBAAqB,OAAO,sBAAsB,SAAS,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,uQAAoQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0C,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB5C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAeR,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc5C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2DAA2D,qBAAqB,OAAO,sBAAsB,SAAS,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,yPAAyP,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0C,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB5C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAY,GAAgBjC,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,kGAAwF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gFAAgF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,QAAQ,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,0BAA0B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmD,EAAa,GAAgBlC,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,0GAAgG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,0GAAgG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uCAAuC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,iFAAiF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,iFAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,MAAM,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,GAAG,SAAsB7C,EAAKvB,EAAU,CAAC,UAAU,2BAA2B,SAAsBuB,EAAKjB,EAAO,CAAC,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGiB,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,kBAAkB,CAAC,EAAE,SAAsBvC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMN,GAAmB,OAAO,QAAQ,SAAsBvC,EAAKvB,EAAU,CAAC,UAAU,0BAA0B,SAAsBuB,EAAK8C,EAAkB,CAAC,WAAWxB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKb,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAea,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmD,GAAI,CAAC,kFAAkF,gFAAgF,kSAAkS,uIAAuI,iJAAiJ,uQAAuQ,oSAAoS,gJAAgJ,sUAAsU,0SAA0S,gWAAgW,ySAAyS,8ZAA8Z,mSAAmS,mRAAmR,gXAAgX,uYAAuY,ogBAAogB,8QAA8Q,wTAAwT,sSAAsS,uSAAuS,mSAAmS,wNAAwN,qgBAAqgB,2QAA2Q,ogBAAogB,yGAAyG,iUAAiU,kWAAkW,gHAAgH,uQAAuQ,mVAAmV,maAAma,0VAA0V,sYAAsY,kUAAkU,iHAAiH,kUAAkU,gHAAgH,4SAA4S,oSAAoS,+SAA+S,6SAA6S,gSAAgS,kTAAkT,uNAAuN,i8PAAi8P,w4EAAw4E,6iBAA6iB,EAW96gEC,EAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,yBAAyB,OAAO,SAAS,IAAI,qEAAqE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhF,GAA2B,GAAGM,GAAqB,GAAGE,GAAW,GAAGE,GAAY,GAAGE,GAAe,GAAGE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACn3E,IAAMsE,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,4BAA8B,OAAO,sBAAwB,OAAO,sBAAwB,IAAI,oCAAsC,8JAA4L,qBAAuB,6DAAuE,qBAAuB,OAAO,yBAA2B,OAAO,yBAA2B,QAAQ,6BAA+B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "FloatingNavigationNewFonts", "getFonts", "NeMxBa4nS_default", "ContainerWithFX", "withFX", "Container", "NavbarLogoLightFonts", "xvqTV4smb_default", "EmbedFonts", "Embed", "ButtonFonts", "N0xuQxx5g_default", "SlideshowFonts", "Slideshow", "FooterFonts", "rgWGuGjkc_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
