{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/L8bZ8RwLRjFDDCfqlyg4/zepDk2x2G0rExUi8rTGM/t_bAu4fz3.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 (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}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/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import NavigationCopy10 from\"#framer/local/canvasComponent/biBgYIlHP/biBgYIlHP.js\";import LayoutFooter from\"#framer/local/canvasComponent/XASE2wUZ6/XASE2wUZ6.js\";import*as sharedStyle from\"#framer/local/css/BDQQWjbso/BDQQWjbso.js\";import*as sharedStyle1 from\"#framer/local/css/OfABLaUVH/OfABLaUVH.js\";import metadataProvider from\"#framer/local/webPageMetadata/t_bAu4fz3/t_bAu4fz3.js\";const NavigationCopy10Fonts=getFonts(NavigationCopy10);const NavigationCopy10WithVariantAppearEffect=withVariantAppearEffect(NavigationCopy10);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ImageWithFX=withFX(Image);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const EmbedFonts=getFonts(Embed);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const SlideshowFonts=getFonts(Slideshow);const LayoutFooterFonts=getFonts(LayoutFooter);const breakpoints={cfWSbywLf:\"(min-width: 1024px) and (max-width: 1279px)\",IgnlpaxWC:\"(min-width: 1280px)\",Kprei9KZK:\"(min-width: 810px) and (max-width: 1023px)\",oPSA55ThX:\"(min-width: 648px) and (max-width: 809px)\",s61fuovOe:\"(max-width: 647px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dwauX\";const variantClassNames={cfWSbywLf:\"framer-v-1ibqyox\",IgnlpaxWC:\"framer-v-11q1a77\",Kprei9KZK:\"framer-v-1nzn5op\",oPSA55ThX:\"framer-v-1y8cwsy\",s61fuovOe:\"framer-v-piro3b\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:68,delay:0,mass:1,stiffness:101,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:47,delay:1,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:30,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition4={delay:0,duration:10,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:150,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:500,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:500,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"648\u5C3A\u5BF8\":\"oPSA55ThX\",\"desktop 2\":\"cfWSbywLf\",Desktop:\"IgnlpaxWC\",Phone:\"s61fuovOe\",Tablet:\"Kprei9KZK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IgnlpaxWC\"};};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=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"wLVcnyuh6\");const ref3=React.useRef(null);const elementId1=useRouteElementId(\"cz_IflA2k\");const elementId2=useRouteElementId(\"QKFnb6e5y\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"XcjJauyqP\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"s61fuovOe\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IgnlpaxWC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-11q1a77\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h2otp0-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kprei9KZK:{__framer__variantAppearEffectEnabled:undefined,variant:\"CYXABaX0H\"},oPSA55ThX:{__framer__variantAppearEffectEnabled:undefined,variant:\"CYXABaX0H\"},s61fuovOe:{__framer__variantAppearEffectEnabled:undefined,variant:\"CYXABaX0H\"}},children:/*#__PURE__*/_jsx(NavigationCopy10WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"wGmVEGuzx\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"SKmJ4w_aD\",layoutId:\"SKmJ4w_aD\",style:{width:\"100%\"},variant:\"hE5pw2T5y\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation,className:\"framer-18tc4n8\",\"data-framer-appear-id\":\"18tc4n8\",\"data-framer-name\":\"Hero Section\",id:elementId,initial:animation1,optimized:true,ref:ref3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kgcm2b\",id:elementId1,ref:ref2}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yiyd9x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfWSbywLf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14.5px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.3em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u958B\u555F\u7121\u9650\u4E4B\u65C5\"})})})},Kprei9KZK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.3em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u958B\u555F\u7121\u9650\u4E4B\u65C5\"})})})},oPSA55ThX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.3em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u958B\u555F\u7121\u9650\u4E4B\u65C5\"})})})},s61fuovOe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"0.36em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u958B\u555F\u7121\u9650\u4E4B\u65C5\"})})}),fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.3em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u958B\u555F\u7121\u9650\u4E4B\u65C5\"})})}),className:\"framer-1uqfcdk\",\"data-framer-appear-id\":\"1uqfcdk\",fonts:[\"GF;Roboto-300\",\"GF;Roboto-regular\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfWSbywLf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+229+0+23.5),pixelHeight:187,pixelWidth:1385,positionX:\"center\",positionY:\"center\",sizes:\"315px\",src:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png\",srcSet:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png 1385w\"}},Kprei9KZK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+128.75+0+27),pixelHeight:187,pixelWidth:1385,positionX:\"center\",positionY:\"center\",sizes:\"291px\",src:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png\",srcSet:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png 1385w\"}},oPSA55ThX:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+128.75+0+27),pixelHeight:187,pixelWidth:1385,positionX:\"center\",positionY:\"center\",sizes:\"291px\",src:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png\",srcSet:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png 1385w\"}},s61fuovOe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+.25+0+19),pixelHeight:187,pixelWidth:1385,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png\",srcSet:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png 1385w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+212.25+0+46),pixelHeight:187,pixelWidth:1385,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png\",srcSet:\"https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x0d6jrGJC0Fg69R0zEeqESViWTo.png 1385w\"},className:\"framer-14gsw8x\",\"data-framer-appear-id\":\"14gsw8x\",initial:animation5,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfWSbywLf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"11.5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u8D77\u63A2\u7D22\u7121\u9650\u53EF\u80FD\u6027\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u5275\u610F\u7684\u65C5\u7A0B\u3002\"})})},Kprei9KZK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u8D77\u63A2\u7D22\u7121\u9650\u53EF\u80FD\u6027\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u5275\u610F\u7684\u65C5\u7A0B\u3002\"})})},oPSA55ThX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u8D77\u63A2\u7D22\u7121\u9650\u53EF\u80FD\u6027\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u5275\u610F\u7684\u65C5\u7A0B\u3002\"})})},s61fuovOe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-letter-spacing\":\"0.08em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u8D77\u63A2\u7D22\u7121\u9650\u53EF\u80FD\u6027\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u5275\u610F\u7684\u65C5\u7A0B\u3002\"})}),fonts:[\"GF;Roboto-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14.5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u4E00\u8D77\u63A2\u7D22\u7121\u9650\u53EF\u80FD\u6027\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u5275\u610F\u7684\u65C5\u7A0B\u3002\"})}),className:\"framer-1bylwlw\",\"data-framer-appear-id\":\"1bylwlw\",fonts:[\"GF;Roboto-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mcvcbc\",id:elementId2,ref:ref4}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfWSbywLf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-141.2499999999999),pixelHeight:559,pixelWidth:1832,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png\"}},Kprei9KZK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-89),pixelHeight:559,pixelWidth:1832,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png\"}},oPSA55ThX:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-89),pixelHeight:559,pixelWidth:1832,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png\"}},s61fuovOe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-68),pixelHeight:559,pixelWidth:1832,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.5)`,src:\"https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png\",srcSet:\"https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png?scale-down-to=512 512w,https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png 1832w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-141.7760707635008),pixelHeight:559,pixelWidth:1832,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kXXZ21GG4TXM6HPu0ZI2MsXro.png\"},className:\"framer-28q12e\",\"data-framer-name\":\"\u52D5\u756B\u80CC\u666F\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fq8gv4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eo33m3-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:' <style>\\n        .custom-form {\\n            font-family: GenYoGothic, sans-serif;\\n            display: flex;\\n            justify-content: center;\\n            align-items: center;\\n           \\n            width: 100%;\\n            margin: 0;\\n            font-size: 14px;\\n        }\\n        .custom-form form {\\n            padding: 20px;\\n            max-width: 1000px;\\n            width: 100%;\\n            box-sizing: border-box; /* Ensure padding is included in width */\\n        }\\n        .custom-form .form-group {\\n            margin-bottom: 15px;\\n            display: flex;\\n            flex-direction: column;\\n        }\\n        .custom-form .form-row {\\n            display: flex;\\n            flex-wrap: wrap; /* Allow rows to wrap on small screens */\\n            gap: 20px; /* Space between columns */\\n        }\\n        .custom-form .form-row .form-group {\\n            flex: 1; /* Allow form groups to grow and shrink */\\n            min-width: 250px; /* Minimum width for form groups */\\n        }\\n        .custom-form label {\\n            display: block;\\n            margin-bottom: 5px;\\n            font-weight: bold;\\n        }\\n        .custom-form input, .custom-form select, .custom-form textarea {\\n            padding: 10px;\\n            margin-top: 5px;\\n            border: 1px solid #ddd;\\n            border-radius: 0px; /* Remove border radius */\\n            font-size: 14px;\\n            /* Full width of the container */\\n            box-sizing: border-box; /* Include padding and border in width calculation */\\n        }\\n        .custom-form textarea {\\n            height: 80px;\\n        }\\n        .custom-form button {\\n            width: auto;\\n            padding: 15px;\\n            background-color: #111111;\\n            color: #fff;\\n            border: none;\\n            border-radius: 0px; /* Remove border radius */\\n            font-size: 16px;\\n            cursor: pointer;\\n            margin-top: 10px;\\n        }\\n        .custom-form button:hover {\\n            background-color: #00BFB8;\\n        }\\n        .custom-form .checkbox-group {\\n            display: flex;\\n            flex-wrap: wrap;\\n            gap: 10px; /* Space between checkboxes */\\n        }\\n        .custom-form .checkbox-group label {\\n            display: flex;\\n            align-items: center;\\n            width: 23%; /* Four columns */\\n            margin-bottom: 15px;margin-top: 10px;\\n            font-weight: normal;\\n            white-space: nowrap;\\n        }\\n        .custom-form .checkbox-group input {\\n            margin-right: 5px; /* Space between checkbox and text */\\n            border-radius: 0px; /* Remove border radius from checkbox */\\n        }\\n\\n        /* Media queries for responsiveness */\\n        @media (max-width: 810px) {\\n            .custom-form .form-row {\\n                flex-direction: column; /* Change to column layout */\\n            }\\n            .custom-form .checkbox-group {\\n                display: grid;\\n                grid-template-columns: 1fr 1fr; /* Two columns layout */\\n                gap: 10px; /* Space between grid items */\\n            }\\n            .custom-form .checkbox-group label {\\n                width: auto; /* Full width within grid items */\\n            }\\n        }\\n\\n        @media (max-width: 480px) {\\n            .custom-form .checkbox-group {\\n                grid-template-columns: 1fr 1fr; /* Two columns layout on very small screens */\\n            }\\n        }\\n\\n        /* Centering the submit button container */\\n        .submit-button-container {\\n            text-align: center;\\n            margin-top: 20px; /* Adjust space above the button if needed */\\n        }\\n        /* Small gray text */\\n        .small-gray-text {\\n            color: gray;\\n            font-size: 12px;\\n            margin-top: 10px;\\n            margin-bottom: 10px;\\n        }\\n    </style>\\n    <div class=\"custom-form\">\\n        <form action=\"https://submit-form.com/C4n9SMY3w\">\\n            <input name=\"_feedback.success.title\" type=\"hidden\" value=\"\u5DF2\u6536\u5230\u60A8\u7684\u5167\u5BB9\uFF0C\u6703\u5118\u5FEB\u8207\u60A8\u53D6\u5F97\u806F\u7E6B\u3002\">\\n\\n            <div class=\"form-row\">\\n                <div class=\"form-group\">\\n                    <label for=\"name1\">Name</label>\\n                    <input id=\"name1\" name=\"name1\" required=\"\" type=\"text\" placeholder=\"\u59D3\u540D\">\\n                </div>\\n                <div class=\"form-group\">\\n                    <label for=\"phone\">TEL/Mobile</label>\\n                    <input id=\"phone\" name=\"phone\" required=\"\" type=\"tel\" placeholder=\"TEL/Mobile\">\\n                </div>\\n            </div>\\n\\n            <div class=\"form-row\">\\n                <div class=\"form-group\">\\n                    <label for=\"email\">Email</label>\\n                    <input id=\"email\" name=\"email\" required=\"\" type=\"email\" placeholder=\"Email\">\\n                </div>\\n                <div class=\"form-group\">\\n                    <label for=\"line_id\">Line ID</label>\\n                    <input id=\"line_id\" name=\"line_id\" required=\"\" type=\"text\" placeholder=\"Line ID\">\\n                </div>\\n            </div>\\n\\n            <div class=\"form-row\">\\n                <div class=\"form-group\">\\n                    <label for=\"Address\">Company Name/Title</label>\\n                    <input id=\"Address\" name=\"Address\" required=\"\" type=\"text\" placeholder=\"\u516C\u53F8\u540D\u7A31/\u8077\u7A31\">\\n                    \\n                </div>\\n                <div class=\"form-group\">\\n                    <label for=\"company_intro\">Company Introduction</label>\\n                    <input id=\"company_intro\" name=\"company_intro\" required=\"\" type=\"text\" placeholder=\"\u516C\u53F8\u7C21\u4ECB\">\\n                    <p class=\"small-gray-text\">(\u70BA\u63D0\u5347\u670D\u52D9\u54C1\u8CEA\uFF0C\u5C07\u65BC\u63A5\u6D3D\u524D\u5148\u884C\u4E86\u89E3\uFF0C\u8ACB\u64C7\u4E00\u5354\u52A9\u63D0\u4F9B\uFF1A\u5B98\u65B9\u7DB2\u7AD9\u3001\u670D\u52D9\u7C21\u5831\u3001\u76F8\u95DC\u6587\u5B57\u8AAA\u660E...\u7B49\uFF09</p>\\n                </div>\\n            </div>\\n            \\n            <div class=\"form-group\">\\n                <label>\u60A8\u60F3\u77AD\u89E3\u7684\u9805\u76EE\uFF08\u53EF\u8907\u9078\uFF09</label>\\n                \\n                <div class=\"checkbox-group\">\\n                    <label>\\n                        <input type=\"checkbox\" name=\"ticket_select\" value=\"\u54C1\u724C\u8A2D\u8A08\u670D\u52D9\"> \u54C1\u724C\u8A2D\u8A08\u670D\u52D9\\n                    </label>\\n                    <label>\\n                        <input type=\"checkbox\" name=\"ticket_select\" value=\"\u793E\u7FA4\u5A92\u9AD4\u670D\u52D9\"> \u793E\u7FA4\u5A92\u9AD4\u670D\u52D9\\n                    </label>\\n                    <label>\\n                        <input type=\"checkbox\" name=\"ticket_select\" value=\"\u6578\u64DA\u5206\u6790\u670D\u52D9\"> \u6578\u64DA\u5206\u6790\u670D\u52D9\\n                    </label>\\n                    <label>\\n                        <input type=\"checkbox\" name=\"ticket_select\" value=\"\u7DB2\u7AD9\u5EFA\u7F6E\u670D\u52D9\"> \u7DB2\u7AD9\u5EFA\u7F6E\u670D\u52D9\\n                    </label>\\n                    <label>\\n                        <input type=\"checkbox\" name=\"ticket_select\" value=\"\u6703\u54E1\u7CFB\u7D71\u670D\u52D9\"> \u6703\u54E1\u7CFB\u7D71\u670D\u52D9\\n                    </label>\\n                    <label>\\n                        <input type=\"checkbox\" name=\"ticket_select\" value=\"\u6D3B\u52D5\u898F\u5283\u670D\u52D9\"> \u6D3B\u52D5\u898F\u5283\u670D\u52D9\\n                    </label>\\n                </div>\\n            </div>\\n\\n            <div class=\"form-group\">\\n                <label for=\"comments\">Comments</label>\\n                <textarea id=\"comments\" name=\"comments\" placeholder=\"\u5408\u4F5C\u5099\u8A3B\u8207\u5176\u4ED6\u9700\u6C42\"></textarea>\\n            </div>\\n <input\\n    type=\"checkbox\"\\n    name=\"_honeypot\"\\n    style=\"display:none\"\\n    tabindex=\"-1\"\\n    autocomplete=\"off\"\\n  />\\n            <div class=\"submit-button-container\">\\n                <button type=\"submit\">Submit</button>\\n            </div>\\n        </form>\\n    </div>',id:\"z9RexGc5J\",layoutId:\"z9RexGc5J\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1elkzt6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a30p9l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s61fuovOe:{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1optyif\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s61fuovOe:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dao2u9\",\"data-styles-preset\":\"BDQQWjbso\",style:{\"--framer-text-color\":\"var(--token-8fecaf17-87d0-40af-896b-8c9485027d2f, rgb(0, 191, 184))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(100% 75% at 39.800000000000004% 50%, var(--token-8fecaf17-87d0-40af-896b-8c9485027d2f, rgb(0, 191, 184)) 0%, rgba(169, 207, 205, 1) 65.44228603603604%)\"},children:\"CONTACT US\"})})}),className:\"framer-18n36ik\",fonts:[\"Inter\"],id:elementId3,ref:ref5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kprei9KZK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fdjiqi\",\"data-styles-preset\":\"OfABLaUVH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u8B93\u6211\u5011\u6210\u70BA\u60A8\u5275\u610F\u65C5\u7A0B\u7684\u5925\u4F34\uFF0C\u7121\u8AD6\u662F\u7A81\u7834\u73FE\u72C0\u7684\u9EDE\u5B50\u9084\u662F\u985B\u8986\u5E02\u5834\u7684\u8A08\u5283\uFF0CINFINITE \u90FD\u6E96\u5099\u597D\u8207\u60A8\u4E00\u8D77\u5BE6\u73FE\u5922\u60F3\u3002\u7ACB\u5373\u806F\u7E6B\u6211\u5011\uFF0C\u9EDE\u71C3\u60A8\u7684\u9748\u611F\u706B\u82B1\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u53EF\u80FD\u7684\u5408\u4F5C\u65C5\u7A0B\u3002\"})})},oPSA55ThX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fdjiqi\",\"data-styles-preset\":\"OfABLaUVH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u8B93\u6211\u5011\u6210\u70BA\u60A8\u5275\u610F\u65C5\u7A0B\u7684\u5925\u4F34\uFF0C\u7121\u8AD6\u662F\u7A81\u7834\u73FE\u72C0\u7684\u9EDE\u5B50\u9084\u662F\u985B\u8986\u5E02\u5834\u7684\u8A08\u5283\uFF0CINFINITE \u90FD\u6E96\u5099\u597D\u8207\u60A8\u4E00\u8D77\u5BE6\u73FE\u5922\u60F3\u3002\u7ACB\u5373\u806F\u7E6B\u6211\u5011\uFF0C\u9EDE\u71C3\u60A8\u7684\u9748\u611F\u706B\u82B1\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u53EF\u80FD\u7684\u5408\u4F5C\u65C5\u7A0B\u3002\"})})},s61fuovOe:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fdjiqi\",\"data-styles-preset\":\"OfABLaUVH\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u8B93\u6211\u5011\u6210\u70BA\u60A8\u5275\u610F\u65C5\u7A0B\u7684\u5925\u4F34\uFF0C\u7121\u8AD6\u662F\u7A81\u7834\u73FE\u72C0\u7684\u9EDE\u5B50\u9084\u662F\u985B\u8986\u5E02\u5834\u7684\u8A08\u5283\uFF0CINFINITE \u90FD\u6E96\u5099\u597D\u8207\u60A8\u4E00\u8D77\u5BE6\u73FE\u5922\u60F3\u3002\u7ACB\u5373\u806F\u7E6B\u6211\u5011\uFF0C\u9EDE\u71C3\u60A8\u7684\u9748\u611F\u706B\u82B1\uFF0C\u958B\u555F\u4E00\u6BB5\u5145\u6EFF\u7121\u9650\u53EF\u80FD\u7684\u5408\u4F5C\u65C5\u7A0B\u3002\"})}),className:\"framer-15gbyj4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4eji6z\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-mwrg13\",\"data-framer-name\":\"img\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m6liq\",\"data-framer-name\":\"Overlay\",style:{rotate:180}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8dm5pr hidden-piro3b\",\"data-framer-name\":\"Overlay\",style:{rotate:180}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rvrw6r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s61fuovOe:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:6,dotsInset:10,dotSize:4,dotsOpacity:.5,dotsPadding:13,dotsRadius:50,showProgressDots:true}}},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:2e3,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"WBUAKxncf\",intervalControl:5,itemAmount:1,layoutId:\"WBUAKxncf\",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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2053.5,intrinsicWidth:3651,pixelHeight:4107,pixelWidth:7302,sizes:\"3651.889px\",src:\"https://framerusercontent.com/images/ktT17Of4w8lbzNtyPUaTzQDsEE.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ktT17Of4w8lbzNtyPUaTzQDsEE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ktT17Of4w8lbzNtyPUaTzQDsEE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ktT17Of4w8lbzNtyPUaTzQDsEE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ktT17Of4w8lbzNtyPUaTzQDsEE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ktT17Of4w8lbzNtyPUaTzQDsEE.jpg 7302w\"},className:\"framer-18k602l\",\"data-framer-name\":\"S6106\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2054,intrinsicWidth:3651.5,pixelHeight:4108,pixelWidth:7303,sizes:\"3651.5px\",src:\"https://framerusercontent.com/images/uXkPYNzigwVsxhQiiUlDOuc5s4.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/uXkPYNzigwVsxhQiiUlDOuc5s4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uXkPYNzigwVsxhQiiUlDOuc5s4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uXkPYNzigwVsxhQiiUlDOuc5s4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uXkPYNzigwVsxhQiiUlDOuc5s4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uXkPYNzigwVsxhQiiUlDOuc5s4.jpg 7303w\"},className:\"framer-1wd28r8\",\"data-framer-name\":\"S6402\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2236,intrinsicWidth:3354,pixelHeight:4472,pixelWidth:6708,sizes:\"3354px\",src:\"https://framerusercontent.com/images/trc4vhs8rXMYORDMEQNrXKU3SMM.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/trc4vhs8rXMYORDMEQNrXKU3SMM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trc4vhs8rXMYORDMEQNrXKU3SMM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/trc4vhs8rXMYORDMEQNrXKU3SMM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/trc4vhs8rXMYORDMEQNrXKU3SMM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/trc4vhs8rXMYORDMEQNrXKU3SMM.jpg 6708w\"},className:\"framer-6k21d3\",\"data-framer-name\":\"S6618\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2236,intrinsicWidth:3354,pixelHeight:4472,pixelWidth:6708,sizes:\"3354px\",src:\"https://framerusercontent.com/images/vpbncXC4hIFRcfNI1nPbg8ceqg.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/vpbncXC4hIFRcfNI1nPbg8ceqg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vpbncXC4hIFRcfNI1nPbg8ceqg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vpbncXC4hIFRcfNI1nPbg8ceqg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vpbncXC4hIFRcfNI1nPbg8ceqg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/vpbncXC4hIFRcfNI1nPbg8ceqg.jpg 6708w\"},className:\"framer-6p9dzi\",\"data-framer-name\":\"S6595\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2054,intrinsicWidth:3651.5,pixelHeight:4108,pixelWidth:7303,sizes:\"3653.2778px\",src:\"https://framerusercontent.com/images/JmfNnYSikcMEk1Y1WTZcY2ZRdBc.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/JmfNnYSikcMEk1Y1WTZcY2ZRdBc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JmfNnYSikcMEk1Y1WTZcY2ZRdBc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JmfNnYSikcMEk1Y1WTZcY2ZRdBc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JmfNnYSikcMEk1Y1WTZcY2ZRdBc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JmfNnYSikcMEk1Y1WTZcY2ZRdBc.jpg 7303w\"},className:\"framer-138nmep\",\"data-framer-name\":\"S6319\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:88,delay:0,mass:3.6,stiffness:177,type:\"spring\"},width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kprei9KZK:{y:(componentViewport?.y||0)+0+1361.5},oPSA55ThX:{y:(componentViewport?.y||0)+0+1311.5},s61fuovOe:{y:(componentViewport?.y||0)+0+1121.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:531,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1767,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g2kmn6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kprei9KZK:{variant:\"DuYOvu98d\"},oPSA55ThX:{variant:\"cqrmSj477\"},s61fuovOe:{variant:\"cqrmSj477\"}},children:/*#__PURE__*/_jsx(LayoutFooter,{height:\"100%\",id:\"G2pDqxxqG\",layoutId:\"G2pDqxxqG\",style:{width:\"100%\"},variant:\"fKFWyOQgl\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dwauX.framer-km5mq2, .framer-dwauX .framer-km5mq2 { display: block; }\",\".framer-dwauX.framer-11q1a77 { 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: 1280px; }\",\".framer-dwauX .framer-h2otp0-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 6; }\",\".framer-dwauX .framer-18tc4n8 { align-content: center; align-items: center; aspect-ratio: 2.265486725663717 / 1; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: var(--framer-aspect-ratio-supported, 565px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dwauX .framer-1kgcm2b { bottom: 0px; flex: none; height: 1px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; width: 20px; z-index: 1; }\",\".framer-dwauX .framer-yiyd9x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; z-index: 2; }\",\".framer-dwauX .framer-1uqfcdk, .framer-dwauX .framer-1bylwlw, .framer-dwauX .framer-18n36ik { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dwauX .framer-14gsw8x { flex: none; height: 54px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dwauX .framer-mcvcbc { flex: none; height: 5px; left: calc(50.00000000000002% - 481px / 2); overflow: hidden; position: absolute; top: 50px; width: 481px; z-index: 1; }\",\".framer-dwauX .framer-28q12e { flex: none; height: 150%; left: calc(50.00000000000002% - 150% / 2); overflow: hidden; position: absolute; top: calc(49.90689013035384% - 150% / 2); width: 150%; z-index: 1; }\",\".framer-dwauX .framer-fq8gv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 90%; }\",\".framer-dwauX .framer-1eo33m3-container, .framer-dwauX .framer-1g2kmn6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dwauX .framer-1elkzt6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dwauX .framer-a30p9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; left: 1px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-dwauX .framer-1optyif { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 87px 0px 87px 0px; position: relative; width: 80%; }\",\".framer-dwauX .framer-15gbyj4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-dwauX .framer-4eji6z { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 55px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dwauX .framer-mwrg13 { aspect-ratio: 1.9631901840490797 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 652px); overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-dwauX .framer-1m6liq { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; background-color: rgba(0, 0, 0, 0.6); flex: none; height: 40%; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-dwauX .framer-8dm5pr { -webkit-mask: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; background-color: rgba(0, 0, 0, 0.6); bottom: -2px; flex: none; height: 27%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-dwauX .framer-rvrw6r-container { aspect-ratio: 1.9631901840490797 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 652px); left: 50%; position: absolute; transform: translateX(-50%); width: 100%; }\",\".framer-dwauX .framer-18k602l { aspect-ratio: 1.7779401022644266 / 1; height: var(--framer-aspect-ratio-supported, 2054px); overflow: visible; position: relative; width: 3651px; }\",\".framer-dwauX .framer-1wd28r8 { aspect-ratio: 1.7777507302823758 / 1; height: var(--framer-aspect-ratio-supported, 2054px); overflow: visible; position: relative; width: 3652px; }\",\".framer-dwauX .framer-6k21d3, .framer-dwauX .framer-6p9dzi { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 2236px); overflow: visible; position: relative; width: 3354px; }\",\".framer-dwauX .framer-138nmep { aspect-ratio: 1.7777507302823758 / 1; height: var(--framer-aspect-ratio-supported, 2055px); overflow: visible; position: relative; width: 3652px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dwauX.framer-11q1a77, .framer-dwauX .framer-18tc4n8, .framer-dwauX .framer-yiyd9x, .framer-dwauX .framer-fq8gv4, .framer-dwauX .framer-1elkzt6, .framer-dwauX .framer-a30p9l, .framer-dwauX .framer-1optyif, .framer-dwauX .framer-4eji6z { gap: 0px; } .framer-dwauX.framer-11q1a77 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dwauX.framer-11q1a77 > :first-child, .framer-dwauX .framer-18tc4n8 > :first-child, .framer-dwauX .framer-yiyd9x > :first-child, .framer-dwauX .framer-1elkzt6 > :first-child, .framer-dwauX .framer-a30p9l > :first-child, .framer-dwauX .framer-1optyif > :first-child, .framer-dwauX .framer-4eji6z > :first-child { margin-top: 0px; } .framer-dwauX.framer-11q1a77 > :last-child, .framer-dwauX .framer-18tc4n8 > :last-child, .framer-dwauX .framer-yiyd9x > :last-child, .framer-dwauX .framer-1elkzt6 > :last-child, .framer-dwauX .framer-a30p9l > :last-child, .framer-dwauX .framer-1optyif > :last-child, .framer-dwauX .framer-4eji6z > :last-child { margin-bottom: 0px; } .framer-dwauX .framer-18tc4n8 > *, .framer-dwauX .framer-yiyd9x > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-dwauX .framer-fq8gv4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dwauX .framer-fq8gv4 > :first-child { margin-left: 0px; } .framer-dwauX .framer-fq8gv4 > :last-child { margin-right: 0px; } .framer-dwauX .framer-1elkzt6 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-dwauX .framer-a30p9l > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-dwauX .framer-1optyif > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dwauX .framer-4eji6z > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1024px) and (max-width: 1279px) { .framer-dwauX.framer-11q1a77 { width: 1024px; } .framer-dwauX .framer-18tc4n8 { gap: 13px; height: var(--framer-aspect-ratio-supported, 452px); } .framer-dwauX .framer-yiyd9x { gap: 9px; } .framer-dwauX .framer-14gsw8x { height: 63px; width: 315px; } .framer-dwauX .framer-28q12e { top: calc(50.00000000000002% - 150% / 2); } .framer-dwauX .framer-mwrg13 { height: var(--framer-aspect-ratio-supported, 522px); } .framer-dwauX .framer-rvrw6r-container { height: var(--framer-aspect-ratio-supported, 521px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dwauX .framer-18tc4n8, .framer-dwauX .framer-yiyd9x { gap: 0px; } .framer-dwauX .framer-18tc4n8 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-dwauX .framer-18tc4n8 > :first-child, .framer-dwauX .framer-yiyd9x > :first-child { margin-top: 0px; } .framer-dwauX .framer-18tc4n8 > :last-child, .framer-dwauX .framer-yiyd9x > :last-child { margin-bottom: 0px; } .framer-dwauX .framer-yiyd9x > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1023px) { .framer-dwauX.framer-11q1a77 { width: 810px; } .framer-dwauX .framer-h2otp0-container, .framer-dwauX .framer-1optyif { order: 0; } .framer-dwauX .framer-18tc4n8 { aspect-ratio: unset; gap: 14px; height: 358px; order: 1; } .framer-dwauX .framer-yiyd9x { gap: 13px; } .framer-dwauX .framer-14gsw8x { height: 49px; width: 291px; } .framer-dwauX .framer-28q12e { height: 150%; left: calc(46.79012345679014% - 150% / 2); top: -89px; } .framer-dwauX .framer-fq8gv4 { order: 2; } .framer-dwauX .framer-1elkzt6 { align-content: center; align-items: center; gap: 8px; order: 3; } .framer-dwauX .framer-4eji6z { align-content: center; align-items: center; gap: 23px; } .framer-dwauX .framer-mwrg13 { aspect-ratio: unset; height: 454px; } .framer-dwauX .framer-1m6liq { height: 40%; top: 1px; } .framer-dwauX .framer-rvrw6r-container { aspect-ratio: unset; bottom: -1px; height: unset; left: calc(50.00000000000002% - 100% / 2); top: 0px; transform: unset; } .framer-dwauX .framer-1g2kmn6-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dwauX .framer-18tc4n8, .framer-dwauX .framer-yiyd9x, .framer-dwauX .framer-1elkzt6, .framer-dwauX .framer-4eji6z { gap: 0px; } .framer-dwauX .framer-18tc4n8 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-dwauX .framer-18tc4n8 > :first-child, .framer-dwauX .framer-yiyd9x > :first-child, .framer-dwauX .framer-1elkzt6 > :first-child, .framer-dwauX .framer-4eji6z > :first-child { margin-top: 0px; } .framer-dwauX .framer-18tc4n8 > :last-child, .framer-dwauX .framer-yiyd9x > :last-child, .framer-dwauX .framer-1elkzt6 > :last-child, .framer-dwauX .framer-4eji6z > :last-child { margin-bottom: 0px; } .framer-dwauX .framer-yiyd9x > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-dwauX .framer-1elkzt6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-dwauX .framer-4eji6z > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } }}\",\"@media (max-width: 647px) { .framer-dwauX.framer-11q1a77 { width: 390px; } .framer-dwauX .framer-18tc4n8 { aspect-ratio: unset; gap: 12px; height: 272px; padding: 100px 0px 100px 0px; } .framer-dwauX .framer-1kgcm2b { bottom: unset; top: calc(49.81684981684984% - 1px / 2); } .framer-dwauX .framer-yiyd9x { gap: 10px; } .framer-dwauX .framer-14gsw8x { height: 34px; width: 200px; } .framer-dwauX .framer-28q12e { height: 150%; left: calc(52.307692307692335% - 150% / 2); top: -68px; } .framer-dwauX .framer-fq8gv4 { padding: 50px 0px 50px 0px; } .framer-dwauX .framer-1elkzt6 { align-content: center; align-items: center; gap: 7px; } .framer-dwauX .framer-1optyif { padding: 25px 0px 0px 0px; width: 85%; } .framer-dwauX .framer-15gbyj4 { width: 100%; } .framer-dwauX .framer-4eji6z { align-content: center; align-items: center; gap: 19px; } .framer-dwauX .framer-mwrg13 { aspect-ratio: 1.1142857142857143 / 1; height: var(--framer-aspect-ratio-supported, 179px); } .framer-dwauX .framer-1m6liq { background-color: rgba(0, 0, 0, 0.8); height: 76%; top: 0px; } .framer-dwauX .framer-rvrw6r-container { aspect-ratio: unset; bottom: -1px; height: unset; left: calc(50.00000000000002% - 100% / 2); top: 0px; transform: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dwauX .framer-18tc4n8, .framer-dwauX .framer-yiyd9x, .framer-dwauX .framer-1elkzt6, .framer-dwauX .framer-4eji6z { gap: 0px; } .framer-dwauX .framer-18tc4n8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-dwauX .framer-18tc4n8 > :first-child, .framer-dwauX .framer-yiyd9x > :first-child, .framer-dwauX .framer-1elkzt6 > :first-child, .framer-dwauX .framer-4eji6z > :first-child { margin-top: 0px; } .framer-dwauX .framer-18tc4n8 > :last-child, .framer-dwauX .framer-yiyd9x > :last-child, .framer-dwauX .framer-1elkzt6 > :last-child, .framer-dwauX .framer-4eji6z > :last-child { margin-bottom: 0px; } .framer-dwauX .framer-yiyd9x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dwauX .framer-1elkzt6 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-dwauX .framer-4eji6z > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } }}\",\"@media (min-width: 648px) and (max-width: 809px) { .framer-dwauX.framer-11q1a77 { width: 648px; } .framer-dwauX .framer-h2otp0-container, .framer-dwauX .framer-1optyif { order: 0; } .framer-dwauX .framer-18tc4n8 { aspect-ratio: unset; gap: 14px; height: 358px; order: 1; } .framer-dwauX .framer-yiyd9x { gap: 13px; } .framer-dwauX .framer-14gsw8x { height: 49px; width: 291px; } .framer-dwauX .framer-28q12e { height: 150%; left: calc(46.79012345679014% - 150% / 2); top: -89px; } .framer-dwauX .framer-fq8gv4 { order: 2; padding: 50px 0px 50px 0px; } .framer-dwauX .framer-1elkzt6 { align-content: center; align-items: center; gap: 8px; order: 3; } .framer-dwauX .framer-4eji6z { align-content: center; align-items: center; gap: 23px; } .framer-dwauX .framer-mwrg13 { aspect-ratio: unset; height: 454px; } .framer-dwauX .framer-1m6liq { height: 40%; top: 1px; } .framer-dwauX .framer-rvrw6r-container { aspect-ratio: unset; bottom: -1px; height: unset; left: calc(50.00000000000002% - 100% / 2); top: 0px; transform: unset; } .framer-dwauX .framer-1g2kmn6-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dwauX .framer-18tc4n8, .framer-dwauX .framer-yiyd9x, .framer-dwauX .framer-1elkzt6, .framer-dwauX .framer-4eji6z { gap: 0px; } .framer-dwauX .framer-18tc4n8 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-dwauX .framer-18tc4n8 > :first-child, .framer-dwauX .framer-yiyd9x > :first-child, .framer-dwauX .framer-1elkzt6 > :first-child, .framer-dwauX .framer-4eji6z > :first-child { margin-top: 0px; } .framer-dwauX .framer-18tc4n8 > :last-child, .framer-dwauX .framer-yiyd9x > :last-child, .framer-dwauX .framer-1elkzt6 > :last-child, .framer-dwauX .framer-4eji6z > :last-child { margin-bottom: 0px; } .framer-dwauX .framer-yiyd9x > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-dwauX .framer-1elkzt6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-dwauX .framer-4eji6z > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2434\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cfWSbywLf\":{\"layout\":[\"fixed\",\"auto\"]},\"Kprei9KZK\":{\"layout\":[\"fixed\",\"auto\"]},\"s61fuovOe\":{\"layout\":[\"fixed\",\"auto\"]},\"oPSA55ThX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const Framert_bAu4fz3=withCSS(Component,css,\"framer-dwauX\");export default Framert_bAu4fz3;Framert_bAu4fz3.displayName=\"Page\";Framert_bAu4fz3.defaultProps={height:2434,width:1280};addFonts(Framert_bAu4fz3,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmWggvWl0Qn.woff2\",weight:\"300\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmWggvWl0Qn.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationCopy10Fonts,...EmbedFonts,...SlideshowFonts,...LayoutFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert_bAu4fz3\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1280\",\"framerIntrinsicHeight\":\"2434\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cfWSbywLf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kprei9KZK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s61fuovOe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oPSA55ThX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "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", "NavigationCopy10Fonts", "getFonts", "biBgYIlHP_default", "NavigationCopy10WithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "ImageWithFX", "withFX", "MotionSectionWithOptimizedAppearEffect", "motion", "EmbedFonts", "Embed", "RichTextWithFX", "MotionDivWithFX", "SlideshowFonts", "Slideshow", "LayoutFooterFonts", "XASE2wUZ6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "animation9", "animation10", "animation11", "transition6", "animation12", "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", "ref3", "elementId1", "elementId2", "ref4", "elementId3", "ref5", "isDisplayed", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "css", "Framert_bAu4fz3", "withCSS", "t_bAu4fz3_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
