{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/WsCGGR1KaqrFkrYwJFoN/BTUn6vs7iNfY2deLRFAI/componentPresets.js", "ssg:https://framerusercontent.com/modules/solsimcepkyb3xNnewbi/fOvdXGCR4YhWBolcRu1n/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/wkOstuXN8BDJnD6gl9hA/sESLgvC12uBfg8x5LUdL/Yhf9cgR8F.js", "ssg:https://framerusercontent.com/modules/4ygIz858tHY2NFeWT5VZ/C4yzLiTEIwRxWPQ37CRg/ypr5U1nZY.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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 fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};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\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// 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(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,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}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}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}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "export const props={s2MAsY_fP:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:!1,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:!1,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15},uV3gvC9kc:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:!1,isRed:!0,topLeftRadius:0,topRightRadius:0}};export const fonts={s2MAsY_fP:[{family:\"Fragment Mono\",moduleAsset:{localModuleIdentifier:\"local-module:componentPresets/componentPresets:default\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf\",weight:\"400\"}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-186Ib .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-186Ib .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c) /* {\"name\":\"Text\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c) /* {\"name\":\"Text\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c); --framer-link-text-decoration: none; }'];export const className=\"framer-186Ib\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Alexandria-600\"]);export const fonts=[{family:\"Alexandria\",moduleAsset:{localModuleIdentifier:\"local-module:css/Yhf9cgR8F:default\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\",weight:\"600\"}];export const css=['.framer-3PNPS .framer-styles-preset-uzfo5m:not(.rich-text-wrapper), .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper p, .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Alexandria\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 1024px) { .framer-3PNPS .framer-styles-preset-uzfo5m:not(.rich-text-wrapper), .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper p, .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Alexandria\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1023px) and (min-width: 768px) { .framer-3PNPS .framer-styles-preset-uzfo5m:not(.rich-text-wrapper), .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper p, .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Alexandria\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-3PNPS .framer-styles-preset-uzfo5m:not(.rich-text-wrapper), .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper p, .framer-3PNPS .framer-styles-preset-uzfo5m.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Alexandria\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, #0c0c0c); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-3PNPS\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (139b156)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";import Email from\"#framer/local/canvasComponent/JkIa0rZB5/JkIa0rZB5.js\";import Navbar from\"#framer/local/canvasComponent/WMyhQa86O/WMyhQa86O.js\";import Projects from\"#framer/local/collection/Xf0KPYFfG/Xf0KPYFfG.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/dejVAS7mb/dejVAS7mb.js\";import*as sharedStyle from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle1 from\"#framer/local/css/lnHCiJPBg/lnHCiJPBg.js\";import*as sharedStyle6 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle2 from\"#framer/local/css/sUiHZyqtX/sUiHZyqtX.js\";import*as sharedStyle4 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle3 from\"#framer/local/css/Yhf9cgR8F/Yhf9cgR8F.js\";import metadataProvider from\"#framer/local/webPageMetadata/ypr5U1nZY/ypr5U1nZY.js\";const NavbarFonts=getFonts(Navbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VimeoFonts=getFonts(Vimeo);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const Embed1Fonts=getFonts(Embed1);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const EmailFonts=getFonts(Email);const FeatherFonts=getFonts(Feather);const ClipboardFonts=getFonts(Clipboard);const HeroFonts=getFonts(Hero);const FormSparkFonts=getFonts(FormSpark);const LogoFonts=getFonts(Logo);const breakpoints={hiUHVS6hD:\"(min-width: 768px) and (max-width: 1023px)\",l19vFykf6:\"(min-width: 1024px) and (max-width: 1439px)\",P9zjydlhA:\"(min-width: 1440px)\",vlwKh5V04:\"(max-width: 559px)\",WwjTJHM80:\"(min-width: 560px) and (max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-egnup\";const variantClassNames={hiUHVS6hD:\"framer-v-xyhf08\",l19vFykf6:\"framer-v-t4oeak\",P9zjydlhA:\"framer-v-13tch4r\",vlwKh5V04:\"framer-v-jsrvg1\",WwjTJHM80:\"framer-v-18nddkr\"};const transition1={damping:100,delay:.4,mass:1,stiffness:300,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:60};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition2={damping:100,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:60};const transition3={damping:100,delay:.6,mass:1,stiffness:300,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:0,y:60};const transition4={damping:100,delay:.8,mass:1,stiffness:300,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:100,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-640,y:0};const transition7={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-640,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-1152,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-1152,y:0};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-896,y:0};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-896,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition8={damping:80,delay:.6,mass:1,stiffness:350,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:10};const metadata=metadataProvider();const humanReadableVariantMap={L:\"l19vFykf6\",M:\"hiUHVS6hD\",Phone:\"vlwKh5V04\",S:\"WwjTJHM80\",XL:\"P9zjydlhA\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"P9zjydlhA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"ypr5U1nZY\",data:Projects,type:\"Collection\"},select:[{collection:\"ypr5U1nZY\",name:\"kMC0LmK8H\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"iVnnwL8BW\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"U_QjzLxyD\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"ENnf3PKB4\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"qxQIG6wRi\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"mEJnTwcl_\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"GKBNJIkDp\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"pyrhsmeO3\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"N6DTJMnup\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"A92RUzztK\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"lZeMKBBz4\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"PIz2c77uh\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"UJkX7tWLq\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"dJgxO8eTb\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"lWWloELs0\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"y603atK_h\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"Ri8TT70ff\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"MQPn11Yhh\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"AzHJJ0S4M\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"eug4sEdqi\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"RSG_3h9sj\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"m2QCb0FMO\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"feMjppSOd\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"iO73LUU_Q\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"IHiDaqNQ2\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"HNU9mKu0b\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"WJ1iOqJ8h\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"kRf8qOElh\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"od61HYB_R\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"R384fv6Ys\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"TU1qTtJRG\",type:\"Identifier\"},{collection:\"ypr5U1nZY\",name:\"jrcBoMuLv\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ypr5U1nZY\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9,_getFromCurrentRouteData10,_getFromCurrentRouteData11,_getFromCurrentRouteData12,_getFromCurrentRouteData13,_getFromCurrentRouteData14,_getFromCurrentRouteData15,_getFromCurrentRouteData16;const{style,className,layoutId,variant,iVnnwL8BW=(_getFromCurrentRouteData=getFromCurrentRouteData(\"iVnnwL8BW\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",U_QjzLxyD=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"U_QjzLxyD\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",ENnf3PKB4=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"ENnf3PKB4\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",qxQIG6wRi=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"qxQIG6wRi\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",mEJnTwcl_=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"mEJnTwcl_\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",GKBNJIkDp=getFromCurrentRouteData(\"GKBNJIkDp\"),Ri8TT70ff=getFromCurrentRouteData(\"Ri8TT70ff\"),MQPn11Yhh=getFromCurrentRouteData(\"MQPn11Yhh\"),feMjppSOd=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"feMjppSOd\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",iO73LUU_Q=getFromCurrentRouteData(\"iO73LUU_Q\"),IHiDaqNQ2=getFromCurrentRouteData(\"IHiDaqNQ2\"),dJgxO8eTb=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"dJgxO8eTb\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",lWWloELs0=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"lWWloELs0\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:\"\",y603atK_h=getFromCurrentRouteData(\"y603atK_h\"),HNU9mKu0b=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"HNU9mKu0b\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:\"\",kRf8qOElh=getFromCurrentRouteData(\"kRf8qOElh\"),WJ1iOqJ8h=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"WJ1iOqJ8h\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:\"\",od61HYB_R=(_getFromCurrentRouteData10=getFromCurrentRouteData(\"od61HYB_R\"))!==null&&_getFromCurrentRouteData10!==void 0?_getFromCurrentRouteData10:\"\",R384fv6Ys=getFromCurrentRouteData(\"R384fv6Ys\"),RSG_3h9sj=getFromCurrentRouteData(\"RSG_3h9sj\"),eug4sEdqi=getFromCurrentRouteData(\"eug4sEdqi\"),m2QCb0FMO=getFromCurrentRouteData(\"m2QCb0FMO\"),jrcBoMuLv=(_getFromCurrentRouteData11=getFromCurrentRouteData(\"jrcBoMuLv\"))!==null&&_getFromCurrentRouteData11!==void 0?_getFromCurrentRouteData11:\"\",pyrhsmeO3=getFromCurrentRouteData(\"pyrhsmeO3\"),N6DTJMnup=(_getFromCurrentRouteData12=getFromCurrentRouteData(\"N6DTJMnup\"))!==null&&_getFromCurrentRouteData12!==void 0?_getFromCurrentRouteData12:\"\",A92RUzztK=(_getFromCurrentRouteData13=getFromCurrentRouteData(\"A92RUzztK\"))!==null&&_getFromCurrentRouteData13!==void 0?_getFromCurrentRouteData13:\"\",lZeMKBBz4=(_getFromCurrentRouteData14=getFromCurrentRouteData(\"lZeMKBBz4\"))!==null&&_getFromCurrentRouteData14!==void 0?_getFromCurrentRouteData14:\"\",PIz2c77uh=(_getFromCurrentRouteData15=getFromCurrentRouteData(\"PIz2c77uh\"))!==null&&_getFromCurrentRouteData15!==void 0?_getFromCurrentRouteData15:\"\",TU1qTtJRG=getFromCurrentRouteData(\"TU1qTtJRG\"),UJkX7tWLq=(_getFromCurrentRouteData16=getFromCurrentRouteData(\"UJkX7tWLq\"))!==null&&_getFromCurrentRouteData16!==void 0?_getFromCurrentRouteData16:\"\",AzHJJ0S4M=getFromCurrentRouteData(\"AzHJJ0S4M\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-egnup`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-egnup`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onClicktxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const visible=isSet(mEJnTwcl_);const visible1=isSet(GKBNJIkDp);const visible2=isSet(Ri8TT70ff);const visible3=isSet(feMjppSOd);const isDisplayed=()=>{if(!isBrowser())return true;if([\"WwjTJHM80\",\"vlwKh5V04\"].includes(baseVariant))return false;return true;};const visible4=isSet(IHiDaqNQ2);const visible5=isSet(dJgxO8eTb);const visible6=isSet(lWWloELs0);const isDisplayed1=value=>{if(!isBrowser())return true;if(baseVariant===\"WwjTJHM80\")return value;if(baseVariant===\"vlwKh5V04\")return true;return false;};const isDisplayed2=value=>{if(!isBrowser())return true;if([\"WwjTJHM80\",\"vlwKh5V04\"].includes(baseVariant))return false;return value;};const visible7=isSet(RSG_3h9sj);const visible8=isSet(jrcBoMuLv);const visible9=isSet(pyrhsmeO3);const visible10=isSet(N6DTJMnup);const visible11=isSet(A92RUzztK);const visible12=isSet(lZeMKBBz4);const isDisplayed3=value=>{if(!isBrowser())return true;if(baseVariant===\"WwjTJHM80\")return true;return value;};const visible13=isSet(PIz2c77uh);const visible14=isSet(TU1qTtJRG);const visible15=isSet(UJkX7tWLq);const visible16=isSet(AzHJJ0S4M);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"WwjTJHM80\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"P9zjydlhA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13tch4r\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jh9ayv-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{variant:\"LAfIiRaPN\"},l19vFykf6:{variant:\"wq_7dqHcB\"},vlwKh5V04:{variant:\"tT6Sywe3_\"},WwjTJHM80:{variant:\"tT6Sywe3_\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"tnYZNBLtN\",layoutId:\"tnYZNBLtN\",style:{width:\"100%\"},variant:\"Jd9susyMM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-o5xfju\",\"data-framer-name\":\"Project Details\",name:\"Project Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wf4faj\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gqkuj\",\"data-framer-name\":\"Section\",name:\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdjzed\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ziixzy\",\"data-framer-appear-id\":\"ziixzy\",\"data-framer-name\":\"Left\",initial:animation1,name:\"Left\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Flux Technology\"})}),className:\"framer-1piedtk\",\"data-framer-name\":\"Project Title\",fonts:[\"Inter\"],name:\"Project Title\",text:iVnnwL8BW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ilm82g\",\"data-styles-preset\":\"lnHCiJPBg\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"During my apprenticeship at m box bewegtbild, I worked on this technical visualizer for the SmartHome Company, Flux Technology \"})}),className:\"framer-1qsmee3\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",text:U_QjzLxyD,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ex7sc3\",\"data-framer-appear-id\":\"ex7sc3\",\"data-framer-name\":\"Right\",initial:animation1,name:\"Right\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dmws6k\",\"data-framer-name\":\"Client\",name:\"Client\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11pv05n\",\"data-styles-preset\":\"sUiHZyqtX\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Client:\"})}),className:\"framer-1oonexb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uzfo5m\",\"data-styles-preset\":\"Yhf9cgR8F\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"m box bewegtbild\"})}),className:\"framer-266ikh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",text:ENnf3PKB4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vzjkcw\",\"data-framer-name\":\"Role\",name:\"Role\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11pv05n\",\"data-styles-preset\":\"sUiHZyqtX\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Role:\"})}),className:\"framer-1wqy844\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uzfo5m\",\"data-styles-preset\":\"Yhf9cgR8F\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"3D Generalist\"})}),className:\"framer-sagi16\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",text:qxQIG6wRi,verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgjm7q\",\"data-framer-name\":\"Year\",name:\"Year\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11pv05n\",\"data-styles-preset\":\"sUiHZyqtX\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Year:\"})}),className:\"framer-1d2dxnc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uzfo5m\",\"data-styles-preset\":\"Yhf9cgR8F\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"2021\"})}),className:\"framer-1jm98l2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",text:mEJnTwcl_,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19kr8o4\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(-183.19999999999993),sizes:\"max(min(max(100vw, 1px), 1280px) - 128px, 1px)\",...toResponsiveImage(GKBNJIkDp),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(-63.99999999999994),sizes:\"max(min(100vw, 1280px) - 48px, 1px)\",...toResponsiveImage(GKBNJIkDp),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(-139.49999999999994),sizes:\"max(min(100vw, 1280px) - 48px, 1px)\",...toResponsiveImage(GKBNJIkDp),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(-95.19999999999993),sizes:\"max(min(max(100vw, 1px), 1280px) - 128px, 1px)\",...toResponsiveImage(GKBNJIkDp),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-18k0x69\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vhpod\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(826.8000000000002),sizes:\"max((min(max(100vw, 1px), 1280px) - 168px) / 2, 1px)\",...toResponsiveImage(Ri8TT70ff),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(904),sizes:\"calc(min(100vw, 1280px) - 48px)\",...toResponsiveImage(Ri8TT70ff),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(828.5),sizes:\"calc(min(100vw, 1280px) - 48px)\",...toResponsiveImage(Ri8TT70ff),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(784.8000000000002),sizes:\"max((min(max(100vw, 1px), 1280px) - 168px) / 2, 1px)\",...toResponsiveImage(Ri8TT70ff),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1sw3obl\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(826.8000000000002),sizes:\"max((min(max(100vw, 1px), 1280px) - 168px) / 2, 1px)\",...toResponsiveImage(MQPn11Yhh),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1122),sizes:\"calc(min(100vw, 1280px) - 48px)\",...toResponsiveImage(MQPn11Yhh),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1122),sizes:\"calc(min(100vw, 1280px) - 48px)\",...toResponsiveImage(MQPn11Yhh),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(784.8000000000002),sizes:\"max((min(max(100vw, 1px), 1280px) - 168px) / 2, 1px)\",...toResponsiveImage(MQPn11Yhh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-39jou0\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qh1zp6\",\"data-framer-name\":\"Section Vimeo Side\",name:\"Section Vimeo Side\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hq1bud-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"SFssT2qAn\",isMixedBorderRadius:false,layoutId:\"SFssT2qAn\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:feMjppSOd,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(619.8000000000001),pixelHeight:1920,pixelWidth:1080,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.2717)\",...toResponsiveImage(iO73LUU_Q),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(721.8000000000001),pixelHeight:1920,pixelWidth:1080,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.2717)\",...toResponsiveImage(iO73LUU_Q),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ymsk5m hidden-18nddkr hidden-jsrvg1\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(522.8000000000001),sizes:\"max(((min(max(100vw, 1px), 1280px) - 128px) * 0.0832 - 73px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)}},vlwKh5V04:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(609),sizes:\"max(min(100vw, 1280px) - 48px, 1px)\",...toResponsiveImage(IHiDaqNQ2)}},WwjTJHM80:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(609),sizes:\"max((min(100vw, 1280px) - 48px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(624.8000000000001),sizes:\"max(((min(max(100vw, 1px), 1280px) - 128px) * 0.0832 - 81px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)},className:\"framer-1gkvlg3\"})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2b01x\",\"data-framer-name\":\"Section Vimeo Side\",name:\"Section Vimeo Side\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-grxuqs-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:dJgxO8eTb,id:\"spfG3cpFW\",layoutId:\"spfG3cpFW\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed1(visible6)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-1qrgn5l-container\",\"hidden-13tch4r\",\"hidden-t4oeak\",\"hidden-xyhf08\",!visible6&&\"hidden-18nddkr\"),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vlwKh5V04:{html:lWWloELs0},WwjTJHM80:{html:lWWloELs0}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:dJgxO8eTb,id:\"DYaqKJVC_\",layoutId:\"DYaqKJVC_\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),isDisplayed2(visible5)&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(1190.8000000000002),sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.44)\",...toResponsiveImage(y603atK_h),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(1380.3000000000002),sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.44)\",...toResponsiveImage(y603atK_h),...{positionX:\"center\",positionY:\"center\"}},className:cx(\"framer-eojiaf\",\"hidden-18nddkr\",\"hidden-jsrvg1\",!visible5&&\"hidden-13tch4r\")})})]}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11rpbsy\",\"data-framer-name\":\"Vimeo Single\",name:\"Vimeo Single\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rw3mtn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vlwKh5V04:{backgroundColor:\"rgba(255, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"cOq6PYONc\",isMixedBorderRadius:false,layoutId:\"cOq6PYONc\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:HNU9mKu0b,width:\"100%\"})})})})}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtnd2i\",\"data-framer-name\":\"Section Vimeo Side 02\",name:\"Section Vimeo Side 02\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10utz4q hidden-18nddkr hidden-jsrvg1\"}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(2693.8),pixelHeight:1920,pixelWidth:1080,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.2717)\",...toResponsiveImage(kRf8qOElh),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(2984.8),pixelHeight:1920,pixelWidth:1080,sizes:\"calc((min(max(100vw, 1px), 1280px) - 148px) * 0.2717)\",...toResponsiveImage(kRf8qOElh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xe2uxv hidden-18nddkr hidden-jsrvg1\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p0ira5-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"qnyjpCD_V\",isMixedBorderRadius:false,layoutId:\"qnyjpCD_V\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:WJ1iOqJ8h,width:\"100%\"})})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2596.8),sizes:\"max(((min(max(100vw, 1px), 1280px) - 128px) * 0.0383 - 11px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)}},vlwKh5V04:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2092),sizes:\"max(min(100vw, 1280px) - 48px, 1px)\",...toResponsiveImage(IHiDaqNQ2)}},WwjTJHM80:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2432),sizes:\"max((min(100vw, 1280px) - 48px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2887.8),sizes:\"max(((min(max(100vw, 1px), 1280px) - 148px) / 12 - 55px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)},className:\"framer-170rkpa\"})})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8gmog1\",\"data-framer-name\":\"Section Vimeo Side\",name:\"Section Vimeo Side\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lqp5ss-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"ieIEaGLDF\",isMixedBorderRadius:false,layoutId:\"ieIEaGLDF\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:od61HYB_R,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(3361.8),pixelHeight:1920,pixelWidth:1080,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.3)\",...toResponsiveImage(R384fv6Ys),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition(3666.8),pixelHeight:1920,pixelWidth:1080,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.3)\",...toResponsiveImage(R384fv6Ys),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rijf7r hidden-18nddkr hidden-jsrvg1\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3264.8),sizes:\"max(((min(max(100vw, 1px), 1280px) - 128px) / 4 - 73px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)}},vlwKh5V04:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2399),sizes:\"max((min(100vw, 1280px) - 48px) / NaN, 1px)\",...toResponsiveImage(IHiDaqNQ2)}},WwjTJHM80:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3079),sizes:\"max((min(100vw, 1280px) - 48px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3569.8),sizes:\"max(((min(max(100vw, 1px), 1280px) - 128px) / 4 - 81px) / 0, 1px)\",...toResponsiveImage(IHiDaqNQ2)},className:\"framer-1seafq5\"})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hcbleu\",\"data-framer-name\":\"Triple Image\",name:\"Triple Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3932.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(max(100vw, 1px), 1280px) - 164px) / 3, 1px)\",...toResponsiveImage(eug4sEdqi),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(2706),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(100vw, 1280px) - 64px) / 3, 1px)\",...toResponsiveImage(eug4sEdqi),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3726),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(100vw, 1280px) - 64px) / 3, 1px)\",...toResponsiveImage(eug4sEdqi),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(4251.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(max(100vw, 1px), 1280px) - 198px) / 3, 1px)\",...toResponsiveImage(eug4sEdqi),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-4f5q2p\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3932.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(max(100vw, 1px), 1280px) - 164px) / 3, 1px)\",...toResponsiveImage(RSG_3h9sj),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(2706),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(100vw, 1280px) - 64px) / 3, 1px)\",...toResponsiveImage(RSG_3h9sj),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3726),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(100vw, 1280px) - 64px) / 3, 1px)\",...toResponsiveImage(RSG_3h9sj),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(4251.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(max(100vw, 1px), 1280px) - 198px) / 3, 1px)\",...toResponsiveImage(RSG_3h9sj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tmverj\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3932.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(max(100vw, 1px), 1280px) - 164px) / 3, 1px)\",...toResponsiveImage(m2QCb0FMO),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(2706),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(100vw, 1280px) - 64px) / 3, 1px)\",...toResponsiveImage(m2QCb0FMO),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3726),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(100vw, 1280px) - 64px) / 3, 1px)\",...toResponsiveImage(m2QCb0FMO),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(4251.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(max(100vw, 1px), 1280px) - 198px) / 3, 1px)\",...toResponsiveImage(m2QCb0FMO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-px4r1k\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n71o8r\",\"data-framer-name\":\"Section\",name:\"Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pwlc7q\",\"data-framer-name\":\"Paragraph\",name:\"Paragraph\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"uV3gvC9kc\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"s2MAsY_fP\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:jrcBoMuLv,className:\"framer-1mrg3h\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1wml6uu\",h3:\"framer-styles-preset-1mi4hg1\",p:\"framer-styles-preset-ilm82g\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1halykm\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3917.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max(min(max(100vw, 1px), 1280px) - 128px, 1px)\",...toResponsiveImage(pyrhsmeO3),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(2573),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max(min(100vw, 1280px) - 48px, 1px)\",...toResponsiveImage(pyrhsmeO3),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(3634),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max(min(100vw, 1280px) - 48px, 1px)\",...toResponsiveImage(pyrhsmeO3),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(4340.8),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max(min(max(100vw, 1px), 1280px) - 128px, 1px)\",...toResponsiveImage(pyrhsmeO3),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1etchmp\",\"data-framer-name\":\"Image\",name:\"Image\"})})})]}),visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zbdh5r\",\"data-framer-name\":\"Embed Vid\",name:\"Embed Vid\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wsplw7-container\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:N6DTJMnup,id:\"v04ArE3Ef\",layoutId:\"v04ArE3Ef\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tk5smv\",\"data-framer-name\":\"Embed Vid\",name:\"Embed Vid\",children:[visible11&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1cmv7xg-container\",\"data-framer-appear-id\":\"1cmv7xg\",\"data-framer-name\":\"Embed Vertical\",initial:animation5,name:\"Embed Vertical\",optimized:true,children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:A92RUzztK,id:\"geqVdO7GK\",layoutId:\"geqVdO7GK\",name:\"Embed Vertical\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed3(visible12)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:cx(\"framer-kcos5a-container\",!visible12&&\"hidden-13tch4r\"),\"data-framer-appear-id\":\"kcos5a\",\"data-framer-name\":\"Embed Vertical\",initial:animation5,name:\"Embed Vertical\",optimized:true,children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:lZeMKBBz4,id:\"gb5yVZIfn\",layoutId:\"gb5yVZIfn\",name:\"Embed Vertical\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed3(visible13)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:cx(\"framer-okmkxu-container\",!visible13&&\"hidden-13tch4r\"),\"data-framer-appear-id\":\"okmkxu\",\"data-framer-name\":\"Embed Vertical\",initial:animation5,name:\"Embed Vertical\",optimized:true,children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:PIz2c77uh,id:\"LqZTZY4qP\",layoutId:\"LqZTZY4qP\",name:\"Embed Vertical\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),visible14&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-se9894\",\"data-framer-name\":\"Panorama Image\",name:\"Panorama Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5139.8),sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 1.1)\",...toResponsiveImage(TU1qTtJRG)}},vlwKh5V04:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3721.5),sizes:\"calc((min(100vw, 1280px) - 48px) * 1.1)\",...toResponsiveImage(TU1qTtJRG)}},WwjTJHM80:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5242.5),sizes:\"calc((min(100vw, 1280px) - 48px) * 1.1)\",...toResponsiveImage(TU1qTtJRG)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6200.3),sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 1.1)\",...toResponsiveImage(TU1qTtJRG)},className:\"framer-1tm4l73\"})})}),isDisplayed2(visible15)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-14ipdpu\",\"hidden-18nddkr\",\"hidden-jsrvg1\",!visible15&&\"hidden-13tch4r\"),children:visible15&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-121wcrq-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:UJkX7tWLq,id:\"j0FbqTftM\",layoutId:\"j0FbqTftM\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),visible16&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fwfxls\",\"data-framer-name\":\"GIF\",name:\"GIF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:350,intrinsicWidth:620,loading:getLoadingLazyAtYPosition(6936.3),pixelHeight:350,pixelWidth:620,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.7344)\",...toResponsiveImage(AzHJJ0S4M),...{positionX:\"center\",positionY:\"center\"}}},vlwKh5V04:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:350,intrinsicWidth:620,loading:getLoadingLazyAtYPosition(4106.875),pixelHeight:350,pixelWidth:620,sizes:\"calc(min(100vw, 1280px) - 48px)\",...toResponsiveImage(AzHJJ0S4M),...{positionX:\"center\",positionY:\"center\"}}},WwjTJHM80:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:350,intrinsicWidth:620,loading:getLoadingLazyAtYPosition(5750),pixelHeight:350,pixelWidth:620,sizes:\"calc(min(100vw, 1280px) - 48px)\",...toResponsiveImage(AzHJJ0S4M),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:350,intrinsicWidth:620,loading:getLoadingLazyAtYPosition(7980.175),pixelHeight:350,pixelWidth:620,sizes:\"calc((min(max(100vw, 1px), 1280px) - 128px) * 0.6563)\",...toResponsiveImage(AzHJJ0S4M),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-3crxbl\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19oi51v\",\"data-framer-name\":\"FOOTER new\",name:\"FOOTER new\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m1r2n9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yuuuei-container\",children:/*#__PURE__*/_jsx(Email,{DYivg4A8e:true,height:\"100%\",id:\"uJWXYz_mk\",layoutId:\"uJWXYz_mk\",QAc9dllaf:\"Copy my Email?\",wBB2sdzOE:\"mailto:adamek.nils@gmail.com?subject=Hi there\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7mlw1-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\",height:\"100%\",iconSearch:\"arrow down\",iconSelection:\"arrow-right\",id:\"AhQDd_Cwi\",layoutId:\"AhQDd_Cwi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-fzt2az-container\",id:\"fzt2az\",ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vlwKh5V04:{font:{fontFamily:'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgb(255, 255, 255)\",content:\"adamek.nils@gmail.com\",fill:\"rgb(34, 34, 34)\",font:{fontFamily:'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',fontSize:\"22px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(0, 136, 255)\",color:\"rgb(255, 255, 255)\",scale:1.25,transition:{damping:21,delay:0,mass:1,stiffness:769,type:\"spring\"}},id:\"hUdje7H_W\",isMixedBorderRadius:false,label:\"adamek.nils@gmail.com\",layoutId:\"hUdje7H_W\",onClick:onClicktxyyif({overlay}),padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,topLeftRadius:50,topRightRadius:50,width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"fzt2az\",offsetX:-104,offsetY:0,onDismiss:overlay.hide,placement:\"right\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:\"framer-1y0ng45\",\"data-border\":true,exit:animation8,initial:animation10,ref:ref3,role:\"dialog\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tmfo2v-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckOutline\",id:\"oDjRwN981\",layoutId:\"oDjRwN981\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xcb5qf-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ClipboardCopyOutline\",id:\"MBAJPaGcD\",layoutId:\"MBAJPaGcD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-51t3m1 hidden-13tch4r hidden-t4oeak hidden-xyhf08 hidden-jsrvg1\",\"data-framer-name\":\"Line\",name:\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qkvjyw\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Contact\"})}),className:\"framer-ld33ex\",fonts:[\"GF;Alexandria-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m72zod\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ac7kqf-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(34, 34, 34)\",fontWeight:600,label:\"Send\"},email:{placeholder:\"Email\",value:\"\"},font:true,fontFamily:\"Inter\",fontSize:16,fontWeight:500,formId:\"x0A2ZhRMG\",gap:15,height:\"100%\",id:\"ykMveQ3yY\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(242, 242, 242)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"ykMveQ3yY\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k5h1fv\",\"data-framer-name\":\"Copyrights\",name:\"Copyrights\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hiUHVS6hD:{__framer__enter:animation11,__framer__exit:animation12},l19vFykf6:{__framer__enter:animation15,__framer__exit:animation16},vlwKh5V04:{__framer__enter:animation11,__framer__exit:animation12},WwjTJHM80:{__framer__enter:animation11,__framer__exit:animation12}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11aymkj\",\"data-framer-name\":\"Line\",name:\"Line\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hgpk05\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5ric3\",children:[/*#__PURE__*/_jsx(Link,{href:\"www.linkedin.com/in/nilsadamek\",nodeId:\"rtH2MHenZ\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-qu0uy5 framer-v60npx\",\"data-framer-name\":\"Link\",name:\"Link\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qag69\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7fzr0l-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, rgb(21, 21, 21))\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"QixFpGrW8\",layoutId:\"QixFpGrW8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gp2nuf-container\",children:/*#__PURE__*/_jsx(Logo,{company:\"LinkedIn\",height:\"100%\",id:\"Wl2gedOLn\",isSearch:true,layoutId:\"Wl2gedOLn\",radius:100,srcFile:\"https://framerusercontent.com/assets/CU6vjo4SHva1uXoA8hF1oY6HGI0.png\",srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11pv05n\",\"data-styles-preset\":\"sUiHZyqtX\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Linkedin\"})}),className:\"framer-vdfpnb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/adamekstudio/\",nodeId:\"CdMwKFiGn\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-s98su6 framer-v60npx\",\"data-framer-name\":\"Link\",name:\"Link\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sjsqlk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qxgezy-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, rgb(21, 21, 21))\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"gQgvk1pAW\",layoutId:\"gQgvk1pAW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t0g5gs-container\",children:/*#__PURE__*/_jsx(Logo,{company:\"Instagram\",height:\"100%\",id:\"mcpNRx8BP\",isSearch:true,layoutId:\"mcpNRx8BP\",radius:100,srcFile:\"https://framerusercontent.com/assets/CU6vjo4SHva1uXoA8hF1oY6HGI0.png\",srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11pv05n\",\"data-styles-preset\":\"sUiHZyqtX\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Instagram\"})}),className:\"framer-378b33\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/nilsadamek1\",nodeId:\"AA7q4x754\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-c0edqp framer-v60npx\",\"data-framer-name\":\"Link\",name:\"Link\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvfuyp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o0cbur-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-b1a490f6-c22e-46ef-a8d1-9a873858cd6e, rgb(21, 21, 21))\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"u6ryikKCo\",layoutId:\"u6ryikKCo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t9rk1x-container\",children:/*#__PURE__*/_jsx(Logo,{company:\"Behance\",height:\"100%\",id:\"dUolbvWqx\",isSearch:true,layoutId:\"dUolbvWqx\",radius:100,srcFile:\"https://framerusercontent.com/assets/CU6vjo4SHva1uXoA8hF1oY6HGI0.png\",srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11pv05n\",\"data-styles-preset\":\"sUiHZyqtX\",style:{\"--framer-text-color\":\"var(--token-26bf751f-b7e8-40b2-b0df-6214cdcc5b44, rgb(12, 12, 12))\"},children:\"Behance\"})}),className:\"framer-b3zlr6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-egnup { background: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, rgb(21, 21, 21)); }`,\".framer-egnup.framer-v60npx, .framer-egnup .framer-v60npx { display: block; }\",\".framer-egnup.framer-13tch4r { align-content: center; align-items: center; background-color: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, #151515); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-egnup .framer-jh9ayv-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-egnup .framer-o5xfju { align-content: center; align-items: center; background-color: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 230px 0px 20px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-egnup .framer-1wf4faj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 0px 64px 0px 64px; position: relative; width: 1px; }\",\".framer-egnup .framer-5gqkuj, .framer-egnup .framer-zbdh5r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-rdjzed { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-ziixzy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-egnup .framer-1piedtk { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-egnup .framer-1qsmee3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-egnup .framer-ex7sc3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20%; }\",\".framer-egnup .framer-dmws6k, .framer-egnup .framer-vzjkcw, .framer-egnup .framer-wgjm7q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-egnup .framer-1oonexb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-egnup .framer-266ikh, .framer-egnup .framer-1wqy844, .framer-egnup .framer-sagi16, .framer-egnup .framer-1d2dxnc, .framer-egnup .framer-1jm98l2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-egnup .framer-19kr8o4 { align-content: center; align-items: center; aspect-ratio: 1.309090909090909 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 880px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-18k0x69, .framer-egnup .framer-1sw3obl, .framer-egnup .framer-39jou0, .framer-egnup .framer-1gkvlg3, .framer-egnup .framer-170rkpa, .framer-egnup .framer-1seafq5, .framer-egnup .framer-4f5q2p, .framer-egnup .framer-tmverj, .framer-egnup .framer-px4r1k, .framer-egnup .framer-1etchmp { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-egnup .framer-18vhpod { align-content: center; align-items: center; aspect-ratio: 2.742857142857143 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 420px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-qh1zp6 { align-content: center; align-items: center; aspect-ratio: 1.8823529411764706 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 81px; height: var(--framer-aspect-ratio-supported, 612px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-1hq1bud-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 418px); position: relative; width: 65%; }\",\".framer-egnup .framer-ymsk5m { aspect-ratio: 0.7488038277511961 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 418px); position: relative; width: 27%; }\",\".framer-egnup .framer-m2b01x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-grxuqs-container { aspect-ratio: 0.5523329129886507 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 796px); position: relative; width: 38%; }\",\".framer-egnup .framer-1qrgn5l-container { aspect-ratio: 0.5458515283842795 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 366px); position: relative; width: 49%; }\",\".framer-egnup .framer-eojiaf { aspect-ratio: 0.9814241486068112 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 516px); position: relative; width: 44%; }\",\".framer-egnup .framer-11rpbsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-1rw3mtn-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); position: relative; width: 85%; }\",\".framer-egnup .framer-1qtnd2i { align-content: center; align-items: center; aspect-ratio: 1.8823529411764706 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 55px; height: var(--framer-aspect-ratio-supported, 612px); justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 100%; }\",\".framer-egnup .framer-10utz4q { background-color: #7586b9; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-egnup .framer-1xe2uxv { aspect-ratio: 0.7488038277511961 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 411px); position: relative; width: 27%; }\",\".framer-egnup .framer-1p0ira5-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 411px); position: relative; width: 64%; }\",\".framer-egnup .framer-8gmog1 { align-content: center; align-items: center; aspect-ratio: 1.8823529411764706 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 81px; height: var(--framer-aspect-ratio-supported, 612px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-1lqp5ss-container { aspect-ratio: 0.8464052287581699 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 613px); position: relative; width: 45%; }\",\".framer-egnup .framer-rijf7r { aspect-ratio: 0.7488038277511961 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 461px); position: relative; width: 30%; }\",\".framer-egnup .framer-hcbleu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: 225px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-1n71o8r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-pwlc7q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-egnup .framer-1mrg3h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-egnup .framer-1halykm { align-content: center; align-items: center; aspect-ratio: 1.6457142857142857 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 700px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-wsplw7-container { aspect-ratio: 1.689149560117302 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 682px); position: relative; width: 100%; }\",\".framer-egnup .framer-tk5smv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: 630px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101%; }\",\".framer-egnup .framer-1cmv7xg-container { aspect-ratio: 0.6585820895522388 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 530px); position: relative; width: 30%; z-index: 1; }\",\".framer-egnup .framer-kcos5a-container { aspect-ratio: 0.6581196581196581 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 536px); position: relative; width: 30%; z-index: 1; }\",\".framer-egnup .framer-okmkxu-container { aspect-ratio: 0.6581196581196581 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 534px); position: relative; width: 30%; z-index: 1; }\",\".framer-egnup .framer-se9894 { align-content: center; align-items: center; aspect-ratio: 2.8430493273542603 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 446px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 110%; }\",\".framer-egnup .framer-1tm4l73 { aspect-ratio: 3.3813333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 375px); position: relative; width: 100%; }\",\".framer-egnup .framer-14ipdpu { align-content: center; align-items: center; aspect-ratio: 0.9193934557063048 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 1190px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-egnup .framer-121wcrq-container { aspect-ratio: 0.5369747899159664 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 640px); }\",\".framer-egnup .framer-fwfxls { align-content: center; align-items: center; aspect-ratio: 2.3801652892561984 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 484px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-3crxbl { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 426px); position: relative; width: 66%; }\",\".framer-egnup .framer-19oi51v { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-1m1r2n9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 610px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-egnup .framer-1yuuuei-container, .framer-egnup .framer-fzt2az-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-egnup .framer-7mlw1-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-egnup .framer-1y0ng45 { --border-bottom-width: 7px; --border-color: #0088ff; --border-left-width: 7px; --border-right-width: 7px; --border-style: solid; --border-top-width: 7px; background-color: #ffffff; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 66px; overflow: hidden; position: relative; width: 113px; will-change: var(--framer-will-change-override, transform); }\",\".framer-egnup .framer-tmfo2v-container { bottom: 0px; flex: none; left: 50px; position: absolute; right: 8px; top: 2px; }\",\".framer-egnup .framer-1xcb5qf-container { flex: none; height: 44px; left: -55px; position: absolute; right: -15px; top: calc(50.00000000000002% - 44px / 2); }\",\".framer-egnup .framer-51t3m1, .framer-egnup .framer-11aymkj { background-color: var(--token-6e124ea3-1fdc-450d-8753-e81d1e9f2436, rgba(21, 21, 21, 0.16)); flex: none; height: 1px; position: relative; width: 100%; z-index: 1; }\",\".framer-egnup .framer-qkvjyw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 60%; }\",\".framer-egnup .framer-ld33ex { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-egnup .framer-m72zod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-ac7kqf-container { flex: 1 0 0px; height: 290px; position: relative; width: 1px; }\",\".framer-egnup .framer-k5h1fv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-1hgpk05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-egnup .framer-f5ric3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: 25px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-egnup .framer-qu0uy5, .framer-egnup .framer-s98su6, .framer-egnup .framer-c0edqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-egnup .framer-11qag69, .framer-egnup .framer-1sjsqlk, .framer-egnup .framer-1lvfuyp { flex: none; height: 21px; overflow: visible; position: relative; width: 20px; }\",\".framer-egnup .framer-7fzr0l-container, .framer-egnup .framer-qxgezy-container, .framer-egnup .framer-1o0cbur-container { flex: none; height: 20px; left: 0px; position: absolute; right: 0px; top: calc(47.61904761904764% - 20px / 2); }\",\".framer-egnup .framer-gp2nuf-container, .framer-egnup .framer-t0g5gs-container, .framer-egnup .framer-1t9rk1x-container { flex: none; height: 20px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-egnup .framer-vdfpnb, .framer-egnup .framer-378b33, .framer-egnup .framer-b3zlr6 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-egnup.framer-13tch4r, .framer-egnup .framer-o5xfju, .framer-egnup .framer-1wf4faj, .framer-egnup .framer-5gqkuj, .framer-egnup .framer-ziixzy, .framer-egnup .framer-ex7sc3, .framer-egnup .framer-dmws6k, .framer-egnup .framer-vzjkcw, .framer-egnup .framer-wgjm7q, .framer-egnup .framer-19kr8o4, .framer-egnup .framer-18vhpod, .framer-egnup .framer-qh1zp6, .framer-egnup .framer-m2b01x, .framer-egnup .framer-11rpbsy, .framer-egnup .framer-1qtnd2i, .framer-egnup .framer-8gmog1, .framer-egnup .framer-hcbleu, .framer-egnup .framer-1n71o8r, .framer-egnup .framer-pwlc7q, .framer-egnup .framer-1halykm, .framer-egnup .framer-zbdh5r, .framer-egnup .framer-tk5smv, .framer-egnup .framer-se9894, .framer-egnup .framer-14ipdpu, .framer-egnup .framer-fwfxls, .framer-egnup .framer-19oi51v, .framer-egnup .framer-1m1r2n9, .framer-egnup .framer-qkvjyw, .framer-egnup .framer-m72zod, .framer-egnup .framer-k5h1fv, .framer-egnup .framer-1hgpk05, .framer-egnup .framer-f5ric3, .framer-egnup .framer-qu0uy5, .framer-egnup .framer-s98su6, .framer-egnup .framer-c0edqp { gap: 0px; } .framer-egnup.framer-13tch4r > *, .framer-egnup .framer-5gqkuj > *, .framer-egnup .framer-zbdh5r > *, .framer-egnup .framer-se9894 > *, .framer-egnup .framer-14ipdpu > *, .framer-egnup .framer-fwfxls > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-egnup.framer-13tch4r > :first-child, .framer-egnup .framer-1wf4faj > :first-child, .framer-egnup .framer-5gqkuj > :first-child, .framer-egnup .framer-ziixzy > :first-child, .framer-egnup .framer-ex7sc3 > :first-child, .framer-egnup .framer-dmws6k > :first-child, .framer-egnup .framer-vzjkcw > :first-child, .framer-egnup .framer-wgjm7q > :first-child, .framer-egnup .framer-11rpbsy > :first-child, .framer-egnup .framer-1n71o8r > :first-child, .framer-egnup .framer-pwlc7q > :first-child, .framer-egnup .framer-zbdh5r > :first-child, .framer-egnup .framer-se9894 > :first-child, .framer-egnup .framer-14ipdpu > :first-child, .framer-egnup .framer-fwfxls > :first-child, .framer-egnup .framer-1m1r2n9 > :first-child, .framer-egnup .framer-qkvjyw > :first-child, .framer-egnup .framer-k5h1fv > :first-child { margin-top: 0px; } .framer-egnup.framer-13tch4r > :last-child, .framer-egnup .framer-1wf4faj > :last-child, .framer-egnup .framer-5gqkuj > :last-child, .framer-egnup .framer-ziixzy > :last-child, .framer-egnup .framer-ex7sc3 > :last-child, .framer-egnup .framer-dmws6k > :last-child, .framer-egnup .framer-vzjkcw > :last-child, .framer-egnup .framer-wgjm7q > :last-child, .framer-egnup .framer-11rpbsy > :last-child, .framer-egnup .framer-1n71o8r > :last-child, .framer-egnup .framer-pwlc7q > :last-child, .framer-egnup .framer-zbdh5r > :last-child, .framer-egnup .framer-se9894 > :last-child, .framer-egnup .framer-14ipdpu > :last-child, .framer-egnup .framer-fwfxls > :last-child, .framer-egnup .framer-1m1r2n9 > :last-child, .framer-egnup .framer-qkvjyw > :last-child, .framer-egnup .framer-k5h1fv > :last-child { margin-bottom: 0px; } .framer-egnup .framer-o5xfju > *, .framer-egnup .framer-19kr8o4 > *, .framer-egnup .framer-1halykm > *, .framer-egnup .framer-1hgpk05 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-egnup .framer-o5xfju > :first-child, .framer-egnup .framer-19kr8o4 > :first-child, .framer-egnup .framer-18vhpod > :first-child, .framer-egnup .framer-qh1zp6 > :first-child, .framer-egnup .framer-m2b01x > :first-child, .framer-egnup .framer-1qtnd2i > :first-child, .framer-egnup .framer-8gmog1 > :first-child, .framer-egnup .framer-hcbleu > :first-child, .framer-egnup .framer-1halykm > :first-child, .framer-egnup .framer-tk5smv > :first-child, .framer-egnup .framer-19oi51v > :first-child, .framer-egnup .framer-m72zod > :first-child, .framer-egnup .framer-1hgpk05 > :first-child, .framer-egnup .framer-f5ric3 > :first-child, .framer-egnup .framer-qu0uy5 > :first-child, .framer-egnup .framer-s98su6 > :first-child, .framer-egnup .framer-c0edqp > :first-child { margin-left: 0px; } .framer-egnup .framer-o5xfju > :last-child, .framer-egnup .framer-19kr8o4 > :last-child, .framer-egnup .framer-18vhpod > :last-child, .framer-egnup .framer-qh1zp6 > :last-child, .framer-egnup .framer-m2b01x > :last-child, .framer-egnup .framer-1qtnd2i > :last-child, .framer-egnup .framer-8gmog1 > :last-child, .framer-egnup .framer-hcbleu > :last-child, .framer-egnup .framer-1halykm > :last-child, .framer-egnup .framer-tk5smv > :last-child, .framer-egnup .framer-19oi51v > :last-child, .framer-egnup .framer-m72zod > :last-child, .framer-egnup .framer-1hgpk05 > :last-child, .framer-egnup .framer-f5ric3 > :last-child, .framer-egnup .framer-qu0uy5 > :last-child, .framer-egnup .framer-s98su6 > :last-child, .framer-egnup .framer-c0edqp > :last-child { margin-right: 0px; } .framer-egnup .framer-1wf4faj > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-egnup .framer-ziixzy > *, .framer-egnup .framer-ex7sc3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-egnup .framer-dmws6k > *, .framer-egnup .framer-vzjkcw > *, .framer-egnup .framer-wgjm7q > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-egnup .framer-18vhpod > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-egnup .framer-qh1zp6 > *, .framer-egnup .framer-8gmog1 > * { margin: 0px; margin-left: calc(81px / 2); margin-right: calc(81px / 2); } .framer-egnup .framer-m2b01x > * { margin: 0px; margin-left: calc(57px / 2); margin-right: calc(57px / 2); } .framer-egnup .framer-11rpbsy > * { margin: 0px; margin-bottom: calc(81px / 2); margin-top: calc(81px / 2); } .framer-egnup .framer-1qtnd2i > * { margin: 0px; margin-left: calc(55px / 2); margin-right: calc(55px / 2); } .framer-egnup .framer-hcbleu > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-egnup .framer-1n71o8r > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-egnup .framer-pwlc7q > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-egnup .framer-tk5smv > * { margin: 0px; margin-left: calc(39px / 2); margin-right: calc(39px / 2); } .framer-egnup .framer-19oi51v > *, .framer-egnup .framer-m72zod > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-egnup .framer-1m1r2n9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-egnup .framer-qkvjyw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-egnup .framer-k5h1fv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-egnup .framer-f5ric3 > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-egnup .framer-qu0uy5 > *, .framer-egnup .framer-s98su6 > *, .framer-egnup .framer-c0edqp > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-egnup[data-border=\"true\"]::after, .framer-egnup [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: 1024px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-egnup { background: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, rgb(21, 21, 21)); } .framer-egnup.framer-13tch4r { width: 1024px; } .framer-egnup .framer-19kr8o4 { height: var(--framer-aspect-ratio-supported, 685px); } .framer-egnup .framer-18vhpod { height: var(--framer-aspect-ratio-supported, 326px); } .framer-egnup .framer-qh1zp6, .framer-egnup .framer-1qtnd2i, .framer-egnup .framer-8gmog1, .framer-egnup .framer-1lqp5ss-container { height: var(--framer-aspect-ratio-supported, 476px); } .framer-egnup .framer-1hq1bud-container, .framer-egnup .framer-ymsk5m { height: var(--framer-aspect-ratio-supported, 325px); } .framer-egnup .framer-grxuqs-container { height: var(--framer-aspect-ratio-supported, 619px); } .framer-egnup .framer-eojiaf { height: var(--framer-aspect-ratio-supported, 402px); } .framer-egnup .framer-1rw3mtn-container { height: var(--framer-aspect-ratio-supported, 429px); } .framer-egnup .framer-1xe2uxv, .framer-egnup .framer-1p0ira5-container { height: var(--framer-aspect-ratio-supported, 318px); } .framer-egnup .framer-rijf7r { height: var(--framer-aspect-ratio-supported, 359px); } .framer-egnup .framer-1halykm { height: var(--framer-aspect-ratio-supported, 544px); } .framer-egnup .framer-wsplw7-container { height: var(--framer-aspect-ratio-supported, 538px); } .framer-egnup .framer-1cmv7xg-container { height: var(--framer-aspect-ratio-supported, 412px); } .framer-egnup .framer-kcos5a-container { height: var(--framer-aspect-ratio-supported, 417px); } .framer-egnup .framer-okmkxu-container { height: var(--framer-aspect-ratio-supported, 416px); } .framer-egnup .framer-se9894 { height: var(--framer-aspect-ratio-supported, 346px); } .framer-egnup .framer-1tm4l73 { height: var(--framer-aspect-ratio-supported, 292px); } .framer-egnup .framer-14ipdpu { height: var(--framer-aspect-ratio-supported, 926px); } .framer-egnup .framer-121wcrq-container { width: var(--framer-aspect-ratio-supported, 498px); } .framer-egnup .framer-fwfxls { height: var(--framer-aspect-ratio-supported, 376px); } .framer-egnup .framer-3crxbl { height: var(--framer-aspect-ratio-supported, 330px); } .framer-egnup .framer-1m1r2n9 { height: 148px; }}`,`@media (min-width: 768px) and (max-width: 1023px) { .${metadata.bodyClassName}-framer-egnup { background: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, rgb(21, 21, 21)); } .framer-egnup.framer-13tch4r { width: 768px; } .framer-egnup .framer-o5xfju { gap: 10px; padding: 142px 0px 42px 0px; } .framer-egnup .framer-1wf4faj { gap: 56px; } .framer-egnup .framer-5gqkuj { gap: 130px; } .framer-egnup .framer-19kr8o4 { height: var(--framer-aspect-ratio-supported, 489px); } .framer-egnup .framer-18vhpod { height: var(--framer-aspect-ratio-supported, 233px); } .framer-egnup .framer-qh1zp6, .framer-egnup .framer-8gmog1 { gap: 73px; height: var(--framer-aspect-ratio-supported, 340px); } .framer-egnup .framer-1hq1bud-container, .framer-egnup .framer-ymsk5m, .framer-egnup .framer-1xe2uxv { height: var(--framer-aspect-ratio-supported, 232px); } .framer-egnup .framer-grxuqs-container { aspect-ratio: 0.547808764940239 / 1; height: var(--framer-aspect-ratio-supported, 505px); width: 43%; } .framer-egnup .framer-eojiaf { height: var(--framer-aspect-ratio-supported, 287px); } .framer-egnup .framer-1rw3mtn-container { height: var(--framer-aspect-ratio-supported, 306px); } .framer-egnup .framer-1qtnd2i { gap: 11px; height: var(--framer-aspect-ratio-supported, 340px); padding: 0px; } .framer-egnup .framer-1p0ira5-container { height: var(--framer-aspect-ratio-supported, 248px); width: 69%; } .framer-egnup .framer-1lqp5ss-container { height: var(--framer-aspect-ratio-supported, 340px); } .framer-egnup .framer-rijf7r { height: var(--framer-aspect-ratio-supported, 256px); } .framer-egnup .framer-hcbleu { gap: 18px; height: 143px; } .framer-egnup .framer-1n71o8r { gap: 80px; } .framer-egnup .framer-1halykm { height: var(--framer-aspect-ratio-supported, 389px); } .framer-egnup .framer-wsplw7-container { height: var(--framer-aspect-ratio-supported, 394px); } .framer-egnup .framer-tk5smv { height: min-content; min-height: 630px; padding: 31px 10px 31px 10px; } .framer-egnup .framer-1cmv7xg-container { height: var(--framer-aspect-ratio-supported, 285px); } .framer-egnup .framer-kcos5a-container { height: var(--framer-aspect-ratio-supported, 289px); } .framer-egnup .framer-okmkxu-container { height: var(--framer-aspect-ratio-supported, 288px); } .framer-egnup .framer-se9894 { aspect-ratio: unset; height: min-content; } .framer-egnup .framer-1tm4l73 { height: var(--framer-aspect-ratio-supported, 208px); } .framer-egnup .framer-14ipdpu { height: var(--framer-aspect-ratio-supported, 661px); } .framer-egnup .framer-121wcrq-container { width: var(--framer-aspect-ratio-supported, 356px); } .framer-egnup .framer-fwfxls { gap: 80px; height: var(--framer-aspect-ratio-supported, 269px); } .framer-egnup .framer-3crxbl { height: var(--framer-aspect-ratio-supported, 265px); width: 73%; } .framer-egnup .framer-19oi51v { flex-direction: column; } .framer-egnup .framer-1m1r2n9 { flex: none; height: 158px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-egnup .framer-o5xfju, .framer-egnup .framer-1wf4faj, .framer-egnup .framer-5gqkuj, .framer-egnup .framer-qh1zp6, .framer-egnup .framer-1qtnd2i, .framer-egnup .framer-8gmog1, .framer-egnup .framer-hcbleu, .framer-egnup .framer-1n71o8r, .framer-egnup .framer-fwfxls, .framer-egnup .framer-19oi51v { gap: 0px; } .framer-egnup .framer-o5xfju > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-egnup .framer-o5xfju > :first-child, .framer-egnup .framer-qh1zp6 > :first-child, .framer-egnup .framer-1qtnd2i > :first-child, .framer-egnup .framer-8gmog1 > :first-child, .framer-egnup .framer-hcbleu > :first-child { margin-left: 0px; } .framer-egnup .framer-o5xfju > :last-child, .framer-egnup .framer-qh1zp6 > :last-child, .framer-egnup .framer-1qtnd2i > :last-child, .framer-egnup .framer-8gmog1 > :last-child, .framer-egnup .framer-hcbleu > :last-child { margin-right: 0px; } .framer-egnup .framer-1wf4faj > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-egnup .framer-1wf4faj > :first-child, .framer-egnup .framer-5gqkuj > :first-child, .framer-egnup .framer-1n71o8r > :first-child, .framer-egnup .framer-fwfxls > :first-child, .framer-egnup .framer-19oi51v > :first-child { margin-top: 0px; } .framer-egnup .framer-1wf4faj > :last-child, .framer-egnup .framer-5gqkuj > :last-child, .framer-egnup .framer-1n71o8r > :last-child, .framer-egnup .framer-fwfxls > :last-child, .framer-egnup .framer-19oi51v > :last-child { margin-bottom: 0px; } .framer-egnup .framer-5gqkuj > * { margin: 0px; margin-bottom: calc(130px / 2); margin-top: calc(130px / 2); } .framer-egnup .framer-qh1zp6 > *, .framer-egnup .framer-8gmog1 > * { margin: 0px; margin-left: calc(73px / 2); margin-right: calc(73px / 2); } .framer-egnup .framer-1qtnd2i > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-egnup .framer-hcbleu > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-egnup .framer-1n71o8r > *, .framer-egnup .framer-fwfxls > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-egnup .framer-19oi51v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (min-width: 560px) and (max-width: 767px) { .${metadata.bodyClassName}-framer-egnup { background: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, rgb(21, 21, 21)); } .framer-egnup.framer-13tch4r { width: 560px; } .framer-egnup .framer-o5xfju { flex-direction: column; padding: 140px 0px 85px 0px; } .framer-egnup .framer-1wf4faj { flex: none; gap: 35px; padding: 0px 24px 0px 24px; width: 100%; } .framer-egnup .framer-5gqkuj { gap: 88px; } .framer-egnup .framer-rdjzed { flex-direction: column; gap: 48px; justify-content: center; } .framer-egnup .framer-ziixzy, .framer-egnup .framer-pwlc7q { width: 100%; } .framer-egnup .framer-ex7sc3 { align-content: center; align-items: center; flex-direction: row; gap: unset; justify-content: space-between; width: 100%; } .framer-egnup .framer-19kr8o4 { height: var(--framer-aspect-ratio-supported, 391px); } .framer-egnup .framer-18vhpod { aspect-ratio: 0.9360146252285192 / 1; flex-direction: column; height: var(--framer-aspect-ratio-supported, 547px); } .framer-egnup .framer-1sw3obl, .framer-egnup .framer-39jou0 { height: 1px; width: 100%; } .framer-egnup .framer-qh1zp6 { gap: 58px; height: var(--framer-aspect-ratio-supported, 272px); justify-content: center; } .framer-egnup .framer-1hq1bud-container, .framer-egnup .framer-1p0ira5-container { aspect-ratio: 1.779591836734694 / 1; height: var(--framer-aspect-ratio-supported, 244px); width: 85%; } .framer-egnup .framer-m2b01x { gap: 13px; } .framer-egnup .framer-grxuqs-container { aspect-ratio: 0.5458515283842795 / 1; height: var(--framer-aspect-ratio-supported, 425px); width: 45%; } .framer-egnup .framer-1qrgn5l-container { height: var(--framer-aspect-ratio-supported, 425px); width: 45%; } .framer-egnup .framer-1rw3mtn-container { height: var(--framer-aspect-ratio-supported, 245px); } .framer-egnup .framer-1qtnd2i { gap: 58px; height: var(--framer-aspect-ratio-supported, 272px); justify-content: center; padding: 0px; } .framer-egnup .framer-8gmog1 { gap: 58px; height: var(--framer-aspect-ratio-supported, 272px); } .framer-egnup .framer-1lqp5ss-container { aspect-ratio: 1.875 / 1; height: var(--framer-aspect-ratio-supported, 272px); width: 100%; } .framer-egnup .framer-hcbleu { gap: 8px; height: 103px; } .framer-egnup .framer-1n71o8r { gap: 48px; } .framer-egnup .framer-1halykm { height: var(--framer-aspect-ratio-supported, 311px); } .framer-egnup .framer-wsplw7-container { height: var(--framer-aspect-ratio-supported, 322px); } .framer-egnup .framer-tk5smv { gap: 4px; height: 460px; } .framer-egnup .framer-1cmv7xg-container { aspect-ratio: 1.608695652173913 / 1; height: var(--framer-aspect-ratio-supported, 119px); order: 2; width: 37%; } .framer-egnup .framer-kcos5a-container { aspect-ratio: 0.2395543175487465 / 1; height: var(--framer-aspect-ratio-supported, 799px); order: 1; width: 37%; } .framer-egnup .framer-okmkxu-container { aspect-ratio: 0.7101449275362319 / 1; height: var(--framer-aspect-ratio-supported, 269px); order: 0; width: 37%; } .framer-egnup .framer-se9894 { height: var(--framer-aspect-ratio-supported, 198px); } .framer-egnup .framer-1tm4l73 { height: var(--framer-aspect-ratio-supported, 167px); } .framer-egnup .framer-fwfxls { aspect-ratio: 1.2736318407960199 / 1; gap: 48px; height: var(--framer-aspect-ratio-supported, 402px); } .framer-egnup .framer-3crxbl { height: var(--framer-aspect-ratio-supported, 288px); width: 100%; } .framer-egnup .framer-19oi51v { flex-direction: column; } .framer-egnup .framer-1m1r2n9 { flex: none; height: 205px; width: 100%; } .framer-egnup .framer-7mlw1-container { height: 30px; width: 30px; } .framer-egnup .framer-qkvjyw { padding: 13px 40px 13px 40px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-egnup .framer-o5xfju, .framer-egnup .framer-1wf4faj, .framer-egnup .framer-5gqkuj, .framer-egnup .framer-rdjzed, .framer-egnup .framer-ex7sc3, .framer-egnup .framer-18vhpod, .framer-egnup .framer-qh1zp6, .framer-egnup .framer-m2b01x, .framer-egnup .framer-1qtnd2i, .framer-egnup .framer-8gmog1, .framer-egnup .framer-hcbleu, .framer-egnup .framer-1n71o8r, .framer-egnup .framer-tk5smv, .framer-egnup .framer-fwfxls, .framer-egnup .framer-19oi51v { gap: 0px; } .framer-egnup .framer-o5xfju > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-egnup .framer-o5xfju > :first-child, .framer-egnup .framer-1wf4faj > :first-child, .framer-egnup .framer-5gqkuj > :first-child, .framer-egnup .framer-rdjzed > :first-child, .framer-egnup .framer-18vhpod > :first-child, .framer-egnup .framer-1n71o8r > :first-child, .framer-egnup .framer-fwfxls > :first-child, .framer-egnup .framer-19oi51v > :first-child { margin-top: 0px; } .framer-egnup .framer-o5xfju > :last-child, .framer-egnup .framer-1wf4faj > :last-child, .framer-egnup .framer-5gqkuj > :last-child, .framer-egnup .framer-rdjzed > :last-child, .framer-egnup .framer-18vhpod > :last-child, .framer-egnup .framer-1n71o8r > :last-child, .framer-egnup .framer-fwfxls > :last-child, .framer-egnup .framer-19oi51v > :last-child { margin-bottom: 0px; } .framer-egnup .framer-1wf4faj > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-egnup .framer-5gqkuj > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-egnup .framer-rdjzed > *, .framer-egnup .framer-1n71o8r > *, .framer-egnup .framer-fwfxls > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-egnup .framer-ex7sc3 > *, .framer-egnup .framer-ex7sc3 > :first-child, .framer-egnup .framer-ex7sc3 > :last-child { margin: 0px; } .framer-egnup .framer-18vhpod > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-egnup .framer-qh1zp6 > *, .framer-egnup .framer-1qtnd2i > *, .framer-egnup .framer-8gmog1 > * { margin: 0px; margin-left: calc(58px / 2); margin-right: calc(58px / 2); } .framer-egnup .framer-qh1zp6 > :first-child, .framer-egnup .framer-m2b01x > :first-child, .framer-egnup .framer-1qtnd2i > :first-child, .framer-egnup .framer-8gmog1 > :first-child, .framer-egnup .framer-hcbleu > :first-child, .framer-egnup .framer-tk5smv > :first-child { margin-left: 0px; } .framer-egnup .framer-qh1zp6 > :last-child, .framer-egnup .framer-m2b01x > :last-child, .framer-egnup .framer-1qtnd2i > :last-child, .framer-egnup .framer-8gmog1 > :last-child, .framer-egnup .framer-hcbleu > :last-child, .framer-egnup .framer-tk5smv > :last-child { margin-right: 0px; } .framer-egnup .framer-m2b01x > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-egnup .framer-hcbleu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-egnup .framer-tk5smv > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-egnup .framer-19oi51v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 559px) { .${metadata.bodyClassName}-framer-egnup { background: var(--token-2c9bbe01-55c3-44f6-ba82-886cdd324f29, rgb(21, 21, 21)); } .framer-egnup.framer-13tch4r { width: 390px; } .framer-egnup .framer-o5xfju { flex-direction: column; padding: 140px 0px 85px 0px; } .framer-egnup .framer-1wf4faj { flex: none; gap: 35px; padding: 0px 24px 0px 24px; width: 100%; } .framer-egnup .framer-5gqkuj { gap: 88px; } .framer-egnup .framer-rdjzed { flex-direction: column; gap: 48px; justify-content: center; } .framer-egnup .framer-ziixzy, .framer-egnup .framer-pwlc7q { width: 100%; } .framer-egnup .framer-ex7sc3 { align-content: center; align-items: center; flex-direction: row; gap: unset; justify-content: space-between; width: 100%; } .framer-egnup .framer-19kr8o4 { height: var(--framer-aspect-ratio-supported, 153px); } .framer-egnup .framer-18vhpod { aspect-ratio: 0.8636363636363636 / 1; flex-direction: column; height: var(--framer-aspect-ratio-supported, 396px); } .framer-egnup .framer-1sw3obl, .framer-egnup .framer-39jou0 { height: 1px; width: 100%; } .framer-egnup .framer-qh1zp6 { aspect-ratio: unset; height: 272px; justify-content: center; } .framer-egnup .framer-1hq1bud-container, .framer-egnup .framer-1p0ira5-container { aspect-ratio: 1.78125 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 192px); width: 1px; } .framer-egnup .framer-m2b01x { gap: 30px; } .framer-egnup .framer-grxuqs-container { aspect-ratio: 0.5546558704453441 / 1; height: var(--framer-aspect-ratio-supported, 250px); width: 40%; } .framer-egnup .framer-1qrgn5l-container { height: var(--framer-aspect-ratio-supported, 254px); width: 40%; } .framer-egnup .framer-1rw3mtn-container, .framer-egnup .framer-3crxbl { height: var(--framer-aspect-ratio-supported, 192px); width: 100%; } .framer-egnup .framer-1qtnd2i { aspect-ratio: unset; height: 272px; justify-content: center; padding: 0px; } .framer-egnup .framer-8gmog1 { aspect-ratio: unset; height: 272px; } .framer-egnup .framer-1lqp5ss-container { aspect-ratio: 1.2573529411764706 / 1; height: var(--framer-aspect-ratio-supported, 272px); width: 100%; } .framer-egnup .framer-hcbleu { gap: 8px; height: 62px; } .framer-egnup .framer-1n71o8r { gap: 48px; } .framer-egnup .framer-1halykm { height: var(--framer-aspect-ratio-supported, 122px); } .framer-egnup .framer-wsplw7-container { height: var(--framer-aspect-ratio-supported, 227px); } .framer-egnup .framer-tk5smv { flex-direction: column; gap: 12px; height: min-content; min-height: 630px; } .framer-egnup .framer-1cmv7xg-container, .framer-egnup .framer-kcos5a-container, .framer-egnup .framer-okmkxu-container { height: var(--framer-aspect-ratio-supported, 307px); width: 50%; } .framer-egnup .framer-se9894 { height: var(--framer-aspect-ratio-supported, 70px); } .framer-egnup .framer-1tm4l73 { height: var(--framer-aspect-ratio-supported, 59px); } .framer-egnup .framer-fwfxls { aspect-ratio: 1.1213114754098361 / 1; gap: 48px; height: var(--framer-aspect-ratio-supported, 305px); } .framer-egnup .framer-19oi51v { flex-direction: column; } .framer-egnup .framer-1m1r2n9 { flex: none; height: min-content; padding: 40px 0px 30px 0px; width: 100%; } .framer-egnup .framer-qkvjyw { padding: 0px 40px 20px 40px; width: 100%; } .framer-egnup .framer-k5h1fv { gap: 19px; padding: 0px 20px 40px 20px; z-index: 1; } .framer-egnup .framer-1hgpk05 { flex-direction: column; justify-content: flex-start; width: 361px; } .framer-egnup .framer-f5ric3 { gap: 17px; height: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-egnup .framer-o5xfju, .framer-egnup .framer-1wf4faj, .framer-egnup .framer-5gqkuj, .framer-egnup .framer-rdjzed, .framer-egnup .framer-ex7sc3, .framer-egnup .framer-18vhpod, .framer-egnup .framer-m2b01x, .framer-egnup .framer-hcbleu, .framer-egnup .framer-1n71o8r, .framer-egnup .framer-tk5smv, .framer-egnup .framer-fwfxls, .framer-egnup .framer-19oi51v, .framer-egnup .framer-k5h1fv, .framer-egnup .framer-1hgpk05, .framer-egnup .framer-f5ric3 { gap: 0px; } .framer-egnup .framer-o5xfju > *, .framer-egnup .framer-1hgpk05 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-egnup .framer-o5xfju > :first-child, .framer-egnup .framer-1wf4faj > :first-child, .framer-egnup .framer-5gqkuj > :first-child, .framer-egnup .framer-rdjzed > :first-child, .framer-egnup .framer-18vhpod > :first-child, .framer-egnup .framer-1n71o8r > :first-child, .framer-egnup .framer-tk5smv > :first-child, .framer-egnup .framer-fwfxls > :first-child, .framer-egnup .framer-19oi51v > :first-child, .framer-egnup .framer-k5h1fv > :first-child, .framer-egnup .framer-1hgpk05 > :first-child { margin-top: 0px; } .framer-egnup .framer-o5xfju > :last-child, .framer-egnup .framer-1wf4faj > :last-child, .framer-egnup .framer-5gqkuj > :last-child, .framer-egnup .framer-rdjzed > :last-child, .framer-egnup .framer-18vhpod > :last-child, .framer-egnup .framer-1n71o8r > :last-child, .framer-egnup .framer-tk5smv > :last-child, .framer-egnup .framer-fwfxls > :last-child, .framer-egnup .framer-19oi51v > :last-child, .framer-egnup .framer-k5h1fv > :last-child, .framer-egnup .framer-1hgpk05 > :last-child { margin-bottom: 0px; } .framer-egnup .framer-1wf4faj > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-egnup .framer-5gqkuj > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-egnup .framer-rdjzed > *, .framer-egnup .framer-1n71o8r > *, .framer-egnup .framer-fwfxls > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-egnup .framer-ex7sc3 > *, .framer-egnup .framer-ex7sc3 > :first-child, .framer-egnup .framer-ex7sc3 > :last-child { margin: 0px; } .framer-egnup .framer-18vhpod > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-egnup .framer-m2b01x > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-egnup .framer-m2b01x > :first-child, .framer-egnup .framer-hcbleu > :first-child, .framer-egnup .framer-f5ric3 > :first-child { margin-left: 0px; } .framer-egnup .framer-m2b01x > :last-child, .framer-egnup .framer-hcbleu > :last-child, .framer-egnup .framer-f5ric3 > :last-child { margin-right: 0px; } .framer-egnup .framer-hcbleu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-egnup .framer-tk5smv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-egnup .framer-19oi51v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-egnup .framer-k5h1fv > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-egnup .framer-f5ric3 > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3894\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l19vFykf6\":{\"layout\":[\"fixed\",\"auto\"]},\"hiUHVS6hD\":{\"layout\":[\"fixed\",\"auto\"]},\"WwjTJHM80\":{\"layout\":[\"fixed\",\"auto\"]},\"vlwKh5V04\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerypr5U1nZY=withCSS(Component,css,\"framer-egnup\");export default Framerypr5U1nZY;Framerypr5U1nZY.displayName=\"Projects\";Framerypr5U1nZY.defaultProps={height:3894,width:1440};addFonts(Framerypr5U1nZY,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbCHJ8BRq0b.woff2\",weight:\"400\"},{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabCHJ8BRq0b.woff2\",weight:\"700\"}]},...NavbarFonts,...VimeoFonts,...EmbedFonts,...Embed1Fonts,...EmailFonts,...FeatherFonts,...ClipboardFonts,...HeroFonts,...FormSparkFonts,...LogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"s2MAsY_fP\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"s2MAsY_fP\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"uV3gvC9kc\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"uV3gvC9kc\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerypr5U1nZY\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l19vFykf6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hiUHVS6hD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WwjTJHM80\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vlwKh5V04\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3894\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "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", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "NavbarFonts", "getFonts", "WMyhQa86O_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "VimeoFonts", "Vimeo_default", "EmbedFonts", "Embed", "MotionDivWithFX", "withFX", "Embed1Fonts", "ContainerWithOptimizedAppearEffect", "Container", "EmailFonts", "JkIa0rZB5_default", "FeatherFonts", "Icon", "ClipboardFonts", "Clipboard", "HeroFonts", "FormSparkFonts", "FormSpark_default", "LogoFonts", "Logo", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "isSet", "value", "toResponsiveImage", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "animation9", "animation10", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation11", "transition7", "animation12", "animation13", "animation14", "animation15", "animation16", "animation17", "transition8", "animation18", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "Xf0KPYFfG_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "_getFromCurrentRouteData10", "_getFromCurrentRouteData11", "_getFromCurrentRouteData12", "_getFromCurrentRouteData13", "_getFromCurrentRouteData14", "_getFromCurrentRouteData15", "_getFromCurrentRouteData16", "style", "className", "layoutId", "variant", "iVnnwL8BW", "U_QjzLxyD", "ENnf3PKB4", "qxQIG6wRi", "mEJnTwcl_", "GKBNJIkDp", "Ri8TT70ff", "MQPn11Yhh", "feMjppSOd", "iO73LUU_Q", "IHiDaqNQ2", "dJgxO8eTb", "lWWloELs0", "y603atK_h", "HNU9mKu0b", "kRf8qOElh", "WJ1iOqJ8h", "od61HYB_R", "R384fv6Ys", "RSG_3h9sj", "eug4sEdqi", "m2QCb0FMO", "jrcBoMuLv", "pyrhsmeO3", "N6DTJMnup", "A92RUzztK", "lZeMKBBz4", "PIz2c77uh", "TU1qTtJRG", "UJkX7tWLq", "AzHJJ0S4M", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClicktxyyif", "overlay", "loadMore", "args", "ref1", "pe", "visible1", "visible2", "visible3", "isDisplayed", "visible4", "visible5", "visible6", "isDisplayed1", "isDisplayed2", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "isDisplayed3", "visible13", "visible14", "visible15", "visible16", "ref2", "ref3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "l", "AnimatePresence", "Floating", "Link", "css", "Framerypr5U1nZY", "withCSS", "ypr5U1nZY_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
