{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/iKzLfPCQr3Qp6TkZCM9B/BWo0v3DMl6errUmKdAAm/bEiodWSQ3.js", "ssg:https://framerusercontent.com/modules/yuXSythtupsYMakz7Rcv/5RJABr2GKvQUcTR2ptIc/gPGO6kcD6.js", "ssg:https://framerusercontent.com/modules/8ONH2xmXFDAbFuw1qmsG/ZllLRcJEbR1snNpOoKRa/AyvdPymem.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,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{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);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</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>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// 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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (ea53337)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-mRTPf .framer-styles-preset-1u4289p:not(.rich-text-wrapper), .framer-mRTPf .framer-styles-preset-1u4289p.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, #c721f9); --framer-link-text-decoration: underline; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-mRTPf\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-600\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}];export const css=['.framer-f8huq .framer-styles-preset-1f33ov3:not(.rich-text-wrapper), .framer-f8huq .framer-styles-preset-1f33ov3.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.5px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d1fa08ee-c247-459b-aaf3-d2091e9cede1, #111827); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1399px) and (min-width: 810px) { .framer-f8huq .framer-styles-preset-1f33ov3:not(.rich-text-wrapper), .framer-f8huq .framer-styles-preset-1f33ov3.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.5px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d1fa08ee-c247-459b-aaf3-d2091e9cede1, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-f8huq .framer-styles-preset-1f33ov3:not(.rich-text-wrapper), .framer-f8huq .framer-styles-preset-1f33ov3.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.5px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d1fa08ee-c247-459b-aaf3-d2091e9cede1, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-f8huq\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import NavigationBarCopy from\"#framer/local/canvasComponent/DcGlPMtEC/DcGlPMtEC.js\";import Footer from\"#framer/local/canvasComponent/Rgfe4eDav/Rgfe4eDav.js\";import*as sharedStyle3 from\"#framer/local/css/bEiodWSQ3/bEiodWSQ3.js\";import*as sharedStyle1 from\"#framer/local/css/GoYypVzwN/GoYypVzwN.js\";import*as sharedStyle2 from\"#framer/local/css/gPGO6kcD6/gPGO6kcD6.js\";import*as sharedStyle from\"#framer/local/css/OiemQ21xd/OiemQ21xd.js\";import metadataProvider from\"#framer/local/webPageMetadata/AyvdPymem/AyvdPymem.js\";const NavigationBarCopyFonts=getFonts(NavigationBarCopy);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={k1LCFsb2i:\"(max-width: 809px)\",v4qdZ0_es:\"(min-width: 810px) and (max-width: 1199px)\",wpwk_YZ2W:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-U0TAG\";const variantClassNames={k1LCFsb2i:\"framer-v-doaodk\",v4qdZ0_es:\"framer-v-16rus1b\",wpwk_YZ2W:\"framer-v-1wv960m\"};const transition1={delay:.2,duration:.8,ease:[.44,0,.21,1],type:\"tween\"};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:20};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation2={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.2,duration:.5,ease:[.44,0,.2,.99],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={delay:.3,duration:.7,ease:[.44,0,0,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition6};const transition7={delay:0,duration:2,ease:[.12,.23,.5,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:410,y:0};const transition8={delay:0,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-520};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"wpwk_YZ2W\",Phone:\"k1LCFsb2i\",Tablet:\"v4qdZ0_es\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wpwk_YZ2W\"};};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,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wpwk_YZ2W\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1wv960m\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{width:\"100vw\"},v4qdZ0_es:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"100.0833vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jm8sb1-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{variant:\"F_RtqkXV4\"},v4qdZ0_es:{variant:\"rmlXBVzuu\"}},children:/*#__PURE__*/_jsx(NavigationBarCopy,{height:\"100%\",id:\"UaRApORv1\",layoutId:\"UaRApORv1\",style:{width:\"100%\"},variant:\"PuMkl3xwr\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-z2xo3v\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{background:{alt:\"Graphic element with blue to violet gradient shape\",fit:\"fill\",intrinsicHeight:382,intrinsicWidth:722,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1162.8-581),pixelHeight:764,pixelWidth:1444,positionX:\"right\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg 1444w\"}},v4qdZ0_es:{background:{alt:\"Graphic element with blue to violet gradient shape\",fit:\"fill\",intrinsicHeight:382,intrinsicWidth:722,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1241.8-750.5),pixelHeight:764,pixelWidth:1444,positionX:\"right\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg 1444w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"Graphic element with blue to violet gradient shape\",fit:\"fill\",intrinsicHeight:382,intrinsicWidth:722,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+883.8-635),pixelHeight:764,pixelWidth:1444,positionX:\"right\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yhSJIuiAYzapkOhQaS1e2ki0z0.jpg 1444w\"},className:\"framer-ks6ri2\",\"data-framer-appear-id\":\"ks6ri2\",\"data-framer-name\":\"hero_gradient\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{background:{alt:\"A pattern made of dots placed behind the main visual\",fit:\"fill\",intrinsicHeight:833,intrinsicWidth:1026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+472.5),pixelHeight:1666,pixelWidth:2052,sizes:`calc(${componentViewport?.width||\"100vw\"} + 267px)`,src:\"https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg 2052w\"},transformTemplate:undefined},v4qdZ0_es:{background:{alt:\"A pattern made of dots placed behind the main visual\",fit:\"fill\",intrinsicHeight:833,intrinsicWidth:1026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+373.781005859375),pixelHeight:1666,pixelWidth:2052,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1px)`,src:\"https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg 2052w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"A pattern made of dots placed behind the main visual\",fit:\"fill\",intrinsicHeight:833,intrinsicWidth:1026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90.30878815911205),pixelHeight:1666,pixelWidth:2052,sizes:\"867px\",src:\"https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hRNPHFLXnYpztCrf9w3NgXJEBbg.jpg 2052w\"},className:\"framer-wahymf\",\"data-framer-appear-id\":\"wahymf\",\"data-framer-name\":\"pattern_dotted\",initial:animation1,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bnkxli\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6tggdh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfq8o8\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbxgyb\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb2a45e3-ced1-499b-b75c-b84a2923ba48, rgb(249, 126, 24))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(199, 33, 249))\"},children:\"AI-Powered \"}),/*#__PURE__*/_jsx(\"br\",{}),\"Information Deck\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(199, 33, 249))\"},children:[\"AI-Powered \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bb2a45e3-ced1-499b-b75c-b84a2923ba48, rgb(249, 126, 24))\"},children:\"Information\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bb2a45e3-ced1-499b-b75c-b84a2923ba48, rgb(249, 126, 24))\"},children:\" Deck\"})]})}),className:\"framer-1qnhsj3\",\"data-framer-appear-id\":\"1qnhsj3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-regular\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"center\"},children:[\"by exploreing, collecting and organizing\",/*#__PURE__*/_jsx(\"br\",{}),\"web searches and AI replies in one deck.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",children:[\"by exploreing, collecting and organizing\",/*#__PURE__*/_jsx(\"br\",{}),\"web searches and AI replies in one deck.\"]})}),className:\"framer-1319oui\",\"data-framer-appear-id\":\"1319oui\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-93vyfr\",\"data-styles-preset\":\"GoYypVzwN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Now, DiveDeck is a standalone solution to serving as an AI framework that powers following projects. \"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-93vyfr\",\"data-styles-preset\":\"GoYypVzwN\",children:\"Now, DiveDeck is a standalone solution to serving as an AI framework that powers following projects. \"})}),className:\"framer-10j86k8\",\"data-framer-appear-id\":\"10j86k8\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Projects powered by DiveDeck:\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Projects powered by DiveDeck:\"})}),className:\"framer-qvju4u\",\"data-framer-appear-id\":\"qvju4u\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-93vyfr\",\"data-styles-preset\":\"GoYypVzwN\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://fyndeck.com?ref=DiveDeck\",nodeId:\"S1TfFDK82\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1u4289p\",\"data-styles-preset\":\"bEiodWSQ3\",children:\"\u2728 Fyndeck -  Create clear & focused slides in minutes \"})})})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-93vyfr\",\"data-styles-preset\":\"GoYypVzwN\",children:/*#__PURE__*/_jsx(Link,{href:\"https://fyndeck.com?ref=DiveDeck\",nodeId:\"S1TfFDK82\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1u4289p\",\"data-styles-preset\":\"bEiodWSQ3\",children:\"\u2728 Fyndeck -  Create clear & focused slides in minutes \"})})})}),className:\"framer-1cxvxeh\",\"data-framer-appear-id\":\"1cxvxeh\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1bdmdcb\",\"data-framer-appear-id\":\"1bdmdcb\",\"data-framer-name\":\"Actions\",initial:animation7,optimized:true,style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1d1qvt6\",\"data-framer-appear-id\":\"1d1qvt6\",\"data-framer-name\":\"Visual-contaienr\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{background:{alt:\"DiveDeck Demo\",fit:\"fit\",intrinsicHeight:1284,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+72+0+0+0+73+735.8+0+0),pixelHeight:1768,pixelWidth:3831,positionX:\"left\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp\",srcSet:\"https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp 3831w\"}},v4qdZ0_es:{background:{alt:\"DiveDeck Demo\",fit:\"fit\",intrinsicHeight:1284,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+72+0+0+0+73+663.8+0+0),pixelHeight:1768,pixelWidth:3831,positionX:\"left\",positionY:\"top\",sizes:\"720px\",src:\"https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp\",srcSet:\"https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp 3831w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"DiveDeck Demo\",fit:\"fit\",intrinsicHeight:1284,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+72+0+0+0+173.39999999999998+0+0),pixelHeight:1768,pixelWidth:3831,positionX:\"left\",positionY:\"top\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp\",srcSet:\"https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4Iur5pbe8xkqI3BhWDLNasCrMQ.webp 3831w\"},className:\"framer-1y180qd\",\"data-border\":true,\"data-framer-name\":\"hero_main_visual\",whileTap:animation10})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation11,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1evbxhu\",\"data-framer-name\":\"Shimmer Top\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{__framer__loop:animation13}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yj0nx5\",\"data-framer-name\":\"Shimmer Left\"})})]})]})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1qb5cbe\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jut6f6\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.futurepedia.io/tool/divedeck-ai\",nodeId:\"tt5mGl3eb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1162.8+60+214+0),pixelHeight:132,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0kX77RSNZkL2zqreuPnXe9hlhUs.png\"}},v4qdZ0_es:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1241.8+40+234+0),pixelHeight:132,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0kX77RSNZkL2zqreuPnXe9hlhUs.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+883.8+40+-33.5+0),pixelHeight:132,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0kX77RSNZkL2zqreuPnXe9hlhUs.png\"},className:\"framer-1pcod1g framer-1v7ozh6\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ycu9u5-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"https://www.producthunt.com/posts/divedeck-ai?embed=true&utm_source=badge-top-post-topic-badge&utm_medium=badge&utm_souce=badge-divedeck&#0045;ai\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-topic-badge.svg?post_id=444661&theme=light&period=weekly&topic_id=204\" alt=\"DiveDeck&#0046;AI - A&#0032;multi&#0045;layered&#0032;content&#0032;deck&#0032;builder | Product Hunt\" style=\"width: 250px; height: 54px;\" width=\"250\" height=\"54\" /></a>',id:\"hiyX3gLnn\",layoutId:\"hiyX3gLnn\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{y:(componentViewport?.y||0)+0+1762.8},v4qdZ0_es:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.979)`,y:(componentViewport?.y||0)+0+1841.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+948.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mf4tt0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k1LCFsb2i:{variant:\"Q1R79Gw5d\"},v4qdZ0_es:{variant:\"MWhMgERyy\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pVMKUVhjo\",layoutId:\"pVMKUVhjo\",style:{width:\"100%\"},variant:\"koTcktd6v\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7354084b-2f3d-4256-9942-cf21fcb19d60, rgb(249, 250, 251)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U0TAG.framer-1v7ozh6, .framer-U0TAG .framer-1v7ozh6 { display: block; }\",\".framer-U0TAG.framer-1wv960m { align-content: center; align-items: center; background-color: var(--token-7354084b-2f3d-4256-9942-cf21fcb19d60, #f9fafb); 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-U0TAG .framer-jm8sb1-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-U0TAG .framer-z2xo3v { align-content: center; align-items: center; background-color: #f4f6fb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-U0TAG .framer-ks6ri2 { aspect-ratio: 1.8900523560209423 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 635px); left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 0; }\",\".framer-U0TAG .framer-wahymf { aspect-ratio: 1.2316926770708283 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 704px); mix-blend-mode: darken; opacity: 0.6; overflow: visible; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: 867px; z-index: 0; }\",\".framer-U0TAG .framer-1bnkxli { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-U0TAG .framer-6tggdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 73px 0px 73px 0px; position: relative; width: 100%; }\",\".framer-U0TAG .framer-vfq8o8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 22px 0px 22px 0px; position: relative; width: 1px; }\",\".framer-U0TAG .framer-mbxgyb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U0TAG .framer-1qnhsj3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-U0TAG .framer-1319oui, .framer-U0TAG .framer-10j86k8, .framer-U0TAG .framer-qvju4u, .framer-U0TAG .framer-1cxvxeh { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-U0TAG .framer-1bdmdcb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-height: 48px; min-width: 177px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-U0TAG .framer-1d1qvt6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-U0TAG .framer-1y180qd { --border-bottom-width: 1px; --border-color: var(--token-08cb0f10-6dc5-4949-913f-dbd7168f1cf0, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 425px; overflow: visible; position: relative; width: 1200px; }\",\".framer-U0TAG .framer-1evbxhu { background: linear-gradient(270deg, #8b5cf6 0%, rgba(255, 255, 255, 0) 85.00000000000001%); box-shadow: 0px 0.6021873017743928px 0px -0.9166666666666666px rgba(137, 91, 245, 0.46), 0px 2.288533303243457px 0px -1.8333333333333333px rgba(137, 91, 245, 0.44805), 0px 10px 0px -2.75px rgba(137, 91, 245, 0.3825); flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100px; z-index: 1; }\",\".framer-U0TAG .framer-yj0nx5 { background: linear-gradient(0deg, rgba(137, 91, 245, 0) 0%, rgb(139, 92, 246) 100%); bottom: 20px; flex: none; height: 100px; left: 0px; overflow: hidden; position: absolute; width: 2px; z-index: 1; }\",\".framer-U0TAG .framer-1qb5cbe { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 65px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-U0TAG .framer-1jut6f6 { 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: 690px; }\",\".framer-U0TAG .framer-1pcod1g { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 52px; position: relative; text-decoration: none; width: 164px; }\",\".framer-U0TAG .framer-1ycu9u5-container { flex: none; height: 49px; position: relative; width: 250px; }\",\".framer-U0TAG .framer-mf4tt0-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U0TAG.framer-1wv960m, .framer-U0TAG .framer-z2xo3v, .framer-U0TAG .framer-1bnkxli, .framer-U0TAG .framer-6tggdh, .framer-U0TAG .framer-vfq8o8, .framer-U0TAG .framer-mbxgyb, .framer-U0TAG .framer-1bdmdcb, .framer-U0TAG .framer-1d1qvt6, .framer-U0TAG .framer-1qb5cbe, .framer-U0TAG .framer-1jut6f6 { gap: 0px; } .framer-U0TAG.framer-1wv960m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-U0TAG.framer-1wv960m > :first-child, .framer-U0TAG .framer-z2xo3v > :first-child, .framer-U0TAG .framer-1bnkxli > :first-child, .framer-U0TAG .framer-vfq8o8 > :first-child, .framer-U0TAG .framer-mbxgyb > :first-child, .framer-U0TAG .framer-1d1qvt6 > :first-child, .framer-U0TAG .framer-1qb5cbe > :first-child { margin-top: 0px; } .framer-U0TAG.framer-1wv960m > :last-child, .framer-U0TAG .framer-z2xo3v > :last-child, .framer-U0TAG .framer-1bnkxli > :last-child, .framer-U0TAG .framer-vfq8o8 > :last-child, .framer-U0TAG .framer-mbxgyb > :last-child, .framer-U0TAG .framer-1d1qvt6 > :last-child, .framer-U0TAG .framer-1qb5cbe > :last-child { margin-bottom: 0px; } .framer-U0TAG .framer-z2xo3v > *, .framer-U0TAG .framer-1bnkxli > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-U0TAG .framer-6tggdh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-U0TAG .framer-6tggdh > :first-child, .framer-U0TAG .framer-1bdmdcb > :first-child, .framer-U0TAG .framer-1jut6f6 > :first-child { margin-left: 0px; } .framer-U0TAG .framer-6tggdh > :last-child, .framer-U0TAG .framer-1bdmdcb > :last-child, .framer-U0TAG .framer-1jut6f6 > :last-child { margin-right: 0px; } .framer-U0TAG .framer-vfq8o8 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-U0TAG .framer-mbxgyb > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-U0TAG .framer-1bdmdcb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-U0TAG .framer-1d1qvt6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-U0TAG .framer-1qb5cbe > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-U0TAG .framer-1jut6f6 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-U0TAG[data-border=\"true\"]::after, .framer-U0TAG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-U0TAG.framer-1wv960m { width: 810px; } .framer-U0TAG .framer-jm8sb1-container { width: 100%; } .framer-U0TAG .framer-ks6ri2 { bottom: -38px; height: var(--framer-aspect-ratio-supported, 429px); order: 1; } .framer-U0TAG .framer-wahymf { height: var(--framer-aspect-ratio-supported, 658px); left: 0px; order: 0; top: 374px; transform: unset; width: unset; } .framer-U0TAG .framer-1bnkxli { max-width: unset; order: 2; padding: 0px 40px 0px 40px; } .framer-U0TAG .framer-6tggdh { flex-direction: column; gap: 6px; } .framer-U0TAG .framer-vfq8o8 { flex: none; max-width: 840px; padding: 38px 0px 38px 0px; width: 100%; } .framer-U0TAG .framer-mbxgyb { width: 80%; } .framer-U0TAG .framer-1bdmdcb { min-width: unset; width: 100%; } .framer-U0TAG .framer-1d1qvt6 { flex: none; width: 100%; } .framer-U0TAG .framer-1y180qd { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: 320px; width: 720px; } .framer-U0TAG .framer-1qb5cbe { height: 600px; } .framer-U0TAG .framer-1jut6f6 { width: min-content; } .framer-U0TAG .framer-mf4tt0-container { width: 98%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U0TAG .framer-6tggdh { gap: 0px; } .framer-U0TAG .framer-6tggdh > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-U0TAG .framer-6tggdh > :first-child { margin-top: 0px; } .framer-U0TAG .framer-6tggdh > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-U0TAG.framer-1wv960m { width: 390px; } .framer-U0TAG .framer-jm8sb1-container { width: 100%; } .framer-U0TAG .framer-z2xo3v { gap: 100px; } .framer-U0TAG .framer-ks6ri2 { bottom: 119px; height: var(--framer-aspect-ratio-supported, 206px); } .framer-U0TAG .framer-wahymf { height: var(--framer-aspect-ratio-supported, 533px); left: -138px; right: -129px; top: 473px; transform: unset; width: unset; } .framer-U0TAG .framer-1bnkxli { max-width: unset; padding: 0px 20px 0px 20px; } .framer-U0TAG .framer-6tggdh { flex-direction: column; } .framer-U0TAG .framer-vfq8o8, .framer-U0TAG .framer-1d1qvt6 { flex: none; width: 100%; } .framer-U0TAG .framer-mbxgyb { align-content: center; align-items: center; padding: 35px 0px 35px 0px; } .framer-U0TAG .framer-1bdmdcb { flex-direction: column; min-width: unset; width: 100%; } .framer-U0TAG .framer-1y180qd { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: 169px; order: 0; width: 300px; } .framer-U0TAG .framer-1evbxhu { order: 1; } .framer-U0TAG .framer-yj0nx5 { order: 2; } .framer-U0TAG .framer-1qb5cbe { height: 600px; padding: 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U0TAG .framer-z2xo3v, .framer-U0TAG .framer-6tggdh, .framer-U0TAG .framer-1bdmdcb { gap: 0px; } .framer-U0TAG .framer-z2xo3v > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-U0TAG .framer-z2xo3v > :first-child, .framer-U0TAG .framer-6tggdh > :first-child, .framer-U0TAG .framer-1bdmdcb > :first-child { margin-top: 0px; } .framer-U0TAG .framer-z2xo3v > :last-child, .framer-U0TAG .framer-6tggdh > :last-child, .framer-U0TAG .framer-1bdmdcb > :last-child { margin-bottom: 0px; } .framer-U0TAG .framer-6tggdh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-U0TAG .framer-1bdmdcb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 877\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v4qdZ0_es\":{\"layout\":[\"fixed\",\"auto\"]},\"k1LCFsb2i\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FramerAyvdPymem=withCSS(Component,css,\"framer-U0TAG\");export default FramerAyvdPymem;FramerAyvdPymem.displayName=\"Home\";FramerAyvdPymem.defaultProps={height:877,width:1200};addFonts(FramerAyvdPymem,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{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\"}]},...NavigationBarCopyFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAyvdPymem\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"877\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v4qdZ0_es\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k1LCFsb2i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerLayoutTemplateCompatible\":\"true\"}},\"__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", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationBarCopyFonts", "getFonts", "DcGlPMtEC_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "EmbedFonts", "Embed", "FooterFonts", "Rgfe4eDav_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "animation9", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "animation13", "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", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "DcGlPMtEC_default", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "x", "RichTextWithOptimizedAppearEffect", "Link", "MotionDivWithOptimizedAppearEffect", "Image2", "MotionDivWithFX", "Embed", "Rgfe4eDav_default", "css", "FramerAyvdPymem", "withCSS", "AyvdPymem_default", "addFonts", "NavigationBarCopyFonts", "EmbedFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
